From 273610cb0f848fd99f9b9769f0d60b6e2df590ed Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Sat, 24 Dec 2022 10:26:05 +0100 Subject: Update tab manager --- src/ochess.hpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/ochess.hpp') diff --git a/src/ochess.hpp b/src/ochess.hpp index 9f09a88..805de31 100644 --- a/src/ochess.hpp +++ b/src/ochess.hpp @@ -53,10 +53,18 @@ class GameBase; * */ class TabInfos { + static long tab_count; public: typedef enum Type { GAME, BASE, ENGINE, NONE } Type; Type type; - TabInfos(Type type_) : type(type_) {} + /// @brief Each tab has an associated unique id + long id; + /// @brief Specify to which tab id this tab is linked (e.g: database to linked to game tab) + long linked_id; + /// @brief Set to true if this tab is attach to another one (c.f linked_id) + bool is_linked; + TabInfos(Type type_) : type(type_), id(tab_count), is_linked(false) { tab_count++; } + void Link(TabInfos *tab); virtual void ApplyPreferences() = 0; virtual std::shared_ptr GetGame() = 0; virtual std::shared_ptr GetBase() = 0; -- cgit v1.2.3