mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-06 10:06:29 +02:00
Improve code and doc
This commit is contained in:
parent
6c7f492e5a
commit
fabc20e187
6 changed files with 19 additions and 10 deletions
|
@ -32,6 +32,7 @@ class MainWindow : public MainFrame {
|
||||||
void OnPageChange(wxAuiNotebookEvent &event);
|
void OnPageChange(wxAuiNotebookEvent &event);
|
||||||
void OnRefreshTabTitle(wxCommandEvent &event);
|
void OnRefreshTabTitle(wxCommandEvent &event);
|
||||||
void OpenSettings();
|
void OpenSettings();
|
||||||
|
/// @brief Setting up a new chess engine (select executable and open engine tab)
|
||||||
void NewEngine();
|
void NewEngine();
|
||||||
void OnCloseTabEvent(wxCommandEvent &event);
|
void OnCloseTabEvent(wxCommandEvent &event);
|
||||||
void OnRefreshEngineList(wxCommandEvent &event);
|
void OnRefreshEngineList(wxCommandEvent &event);
|
||||||
|
@ -44,5 +45,6 @@ class MainWindow : public MainFrame {
|
||||||
public:
|
public:
|
||||||
MainWindow();
|
MainWindow();
|
||||||
TabInfos* NewGame(std::shared_ptr<Game> game);
|
TabInfos* NewGame(std::shared_ptr<Game> game);
|
||||||
|
/// @brief Apply preferences to MainWindow and all the opened tabs
|
||||||
void ApplyPreferences();
|
void ApplyPreferences();
|
||||||
};
|
};
|
|
@ -11,7 +11,8 @@
|
||||||
*/
|
*/
|
||||||
class BaseGameTab : public TabBase_TabGames {
|
class BaseGameTab : public TabBase_TabGames {
|
||||||
std::shared_ptr<GameBase> base;
|
std::shared_ptr<GameBase> base;
|
||||||
|
void OnDelete(wxCommandEvent &event);
|
||||||
|
void OnApplyFilter(wxCommandEvent &event);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
std::shared_ptr<GameListManager> glm;
|
std::shared_ptr<GameListManager> glm;
|
||||||
|
@ -23,8 +24,6 @@ public:
|
||||||
BaseGameTab(wxFrame *parent, std::shared_ptr<GameBase> base);
|
BaseGameTab(wxFrame *parent, std::shared_ptr<GameBase> base);
|
||||||
|
|
||||||
void Reset(std::shared_ptr<GameBase> base);
|
void Reset(std::shared_ptr<GameBase> base);
|
||||||
void OnDelete(wxCommandEvent &event);
|
|
||||||
void OnApplyFilter(wxCommandEvent &event);
|
|
||||||
std::vector<std::shared_ptr<Game>> GetEditedGames();
|
std::vector<std::shared_ptr<Game>> GetEditedGames();
|
||||||
std::vector<std::uint32_t> GetDeletedGameIds() {return(deleted);};
|
std::vector<std::uint32_t> GetDeletedGameIds() {return(deleted);};
|
||||||
std::shared_ptr<Game> OpenGame(long gameid, long item);
|
std::shared_ptr<Game> OpenGame(long gameid, long item);
|
||||||
|
|
|
@ -24,14 +24,15 @@ class BaseImportTab : public TabBase_TabImport {
|
||||||
std::shared_ptr<GameBase> selected_base;
|
std::shared_ptr<GameBase> selected_base;
|
||||||
|
|
||||||
void RefreshPendingImports();
|
void RefreshPendingImports();
|
||||||
|
void OnLoad(wxCommandEvent &event);
|
||||||
|
void OnImportGame(wxCommandEvent &event);
|
||||||
|
void OnImportSelection(wxCommandEvent &event);
|
||||||
|
void OnImportDatabase(wxCommandEvent &event);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
int import_ndb, import_ngames,import_nselect;
|
int import_ndb, import_ngames,import_nselect;
|
||||||
BaseImportTab(wxFrame *parent, std::shared_ptr<GameBase> db, TabInfos *main_tab);
|
BaseImportTab(wxFrame *parent, std::shared_ptr<GameBase> db, TabInfos *main_tab);
|
||||||
void RefreshImportLists();
|
void RefreshImportLists();
|
||||||
void OnLoad(wxCommandEvent &event);
|
|
||||||
void OnImportGame(wxCommandEvent &event);
|
|
||||||
void OnImportSelection(wxCommandEvent &event);
|
|
||||||
void OnImportDatabase(wxCommandEvent &event);
|
|
||||||
void Reset(std::shared_ptr<GameBase> base);
|
void Reset(std::shared_ptr<GameBase> base);
|
||||||
std::vector<std::shared_ptr<Game>> GetGameToImport();
|
std::vector<std::shared_ptr<Game>> GetGameToImport();
|
||||||
std::vector<std::string> GetDatabaseToImport() {return databases_to_import;};
|
std::vector<std::string> GetDatabaseToImport() {return databases_to_import;};
|
||||||
|
|
|
@ -48,4 +48,10 @@ std::shared_ptr<GameBase> OpenDatabase(const std::string &dbpath, bool createIfN
|
||||||
* @return std::shared_ptr<Game>
|
* @return std::shared_ptr<Game>
|
||||||
*/
|
*/
|
||||||
std::shared_ptr<Game> OpenGameX(const std::string &dbpath, long id);
|
std::shared_ptr<Game> OpenGameX(const std::string &dbpath, long id);
|
||||||
|
/**
|
||||||
|
* @brief Save a given game in a database file (append to existing games in the db)
|
||||||
|
*
|
||||||
|
* @param dbpath path of the dadabase
|
||||||
|
* @param g shared pointer to a game
|
||||||
|
*/
|
||||||
void SaveGame(const std::string &dbpath, std::shared_ptr<Game> g);
|
void SaveGame(const std::string &dbpath, std::shared_ptr<Game> g);
|
|
@ -17,6 +17,9 @@ class EngineTab : public TabEngine, public TabInfos {
|
||||||
void InitConfiguration();
|
void InitConfiguration();
|
||||||
void LoadConfiguration();
|
void LoadConfiguration();
|
||||||
void RefreshItemList();
|
void RefreshItemList();
|
||||||
|
void OnSave(wxCommandEvent &event);
|
||||||
|
void OnDelete(wxCommandEvent &event);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
EngineTab(wxWindow *parent, uciadapter::UCI *engine,
|
EngineTab(wxWindow *parent, uciadapter::UCI *engine,
|
||||||
std::string engine_path);
|
std::string engine_path);
|
||||||
|
@ -26,6 +29,4 @@ public:
|
||||||
std::shared_ptr<Game> GetGame() { return nullptr; }
|
std::shared_ptr<Game> GetGame() { return nullptr; }
|
||||||
std::shared_ptr<GameBase> GetBase() { return nullptr; }
|
std::shared_ptr<GameBase> GetBase() { return nullptr; }
|
||||||
std::uint32_t GetEngineId() { return engine_id; };
|
std::uint32_t GetEngineId() { return engine_id; };
|
||||||
void OnSave(wxCommandEvent &event);
|
|
||||||
void OnDelete(wxCommandEvent &event);
|
|
||||||
};
|
};
|
|
@ -28,12 +28,12 @@ class GameTab : public wxPanel, public TabInfos {
|
||||||
void RefreshLabel();
|
void RefreshLabel();
|
||||||
void RefreshTabTitle();
|
void RefreshTabTitle();
|
||||||
void OnGameChange(wxCommandEvent &event);
|
void OnGameChange(wxCommandEvent &event);
|
||||||
|
void OnToolClick(wxCommandEvent &event);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
GameTab(wxFrame *parent, std::shared_ptr<Game> game);
|
GameTab(wxFrame *parent, std::shared_ptr<Game> game);
|
||||||
void ApplyPreferences();
|
void ApplyPreferences();
|
||||||
std::shared_ptr<Game> GetGame() { return (std::shared_ptr<Game>(game)); }
|
std::shared_ptr<Game> GetGame() { return (std::shared_ptr<Game>(game)); }
|
||||||
std::shared_ptr<GameBase> GetBase() { return nullptr; };
|
std::shared_ptr<GameBase> GetBase() { return nullptr; };
|
||||||
void OnToolClick(wxCommandEvent &event);
|
|
||||||
void OnLink(){board_panel->SetSaveToolEnable(false);};
|
void OnLink(){board_panel->SetSaveToolEnable(false);};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue