aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-12-24 10:26:05 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-12-24 10:26:05 +0100
commit273610cb0f848fd99f9b9769f0d60b6e2df590ed (patch)
treee11d9887c9263a935f6ae83b1cf73e5e78236eda
parent3b7cc1c847f4bc8ec900b01a2bcee0cb90d4bd39 (diff)
Update tab manager
-rw-r--r--src/base_tab/BaseTab.cpp6
-rw-r--r--src/ochess.cpp6
-rw-r--r--src/ochess.hpp10
3 files changed, 18 insertions, 4 deletions
diff --git a/src/base_tab/BaseTab.cpp b/src/base_tab/BaseTab.cpp
index 2895e27..a76ba38 100644
--- a/src/base_tab/BaseTab.cpp
+++ b/src/base_tab/BaseTab.cpp
@@ -7,13 +7,13 @@ BaseTab::BaseTab(wxFrame *parent, std::string base_file)
// Games tab
games_tab=new BaseGameTab((wxFrame *)notebook,base_file);
- notebook->AddPage(games_tab, "Games",true); // true for selecting the tab
+ notebook->AddPage(games_tab, "Games list",true); // true for selecting the tab
// Import tab
import_tab=new BaseImportTab((wxFrame *)notebook);
- notebook->AddPage(import_tab, "Import");
+ notebook->AddPage(import_tab, "Import games");
// Manage tab
manage_tab=new BaseManageTab((wxFrame *)notebook);
- notebook->AddPage(manage_tab, "Manage");
+ notebook->AddPage(manage_tab, "Manage database");
RefreshLabel();
}
diff --git a/src/ochess.cpp b/src/ochess.cpp
index 3510568..82d88be 100644
--- a/src/ochess.cpp
+++ b/src/ochess.cpp
@@ -16,3 +16,9 @@ void Abort(std::string msg) {
dial->ShowModal();
wxLogFatalError(wxString(msg));
}
+
+long TabInfos::tab_count=0;
+void TabInfos::Link(TabInfos *tab){
+ this->is_linked=true;
+ this->linked_id=tab->id;
+} \ No newline at end of file
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<Game> GetGame() = 0;
virtual std::shared_ptr<GameBase> GetBase() = 0;