Improve UI

This commit is contained in:
Loic Guegan 2022-12-30 15:58:13 +01:00
parent 27ac369fb6
commit 2045a1250a
6 changed files with 26 additions and 19 deletions

View file

@ -26,6 +26,7 @@ GameTab::GameTab(wxFrame *parent, std::shared_ptr<Game> game)
board_panel->Notify(false, false);
editor_panel->Notify();
board_panel->Bind(wxEVT_TOOL,&GameTab::OnToolClick,this);
Bind(REFRESH_TAB_TITLE, &GameTab::OnRefreshTabTitle, this, wxID_ANY);
Bind(GAME_CHANGE, &GameTab::OnGameChange, this, wxID_ANY);
splitter->Bind(wxEVT_KEY_DOWN, [p=this,bp=board_panel,ed=editor_panel](wxKeyEvent &e){
@ -46,6 +47,22 @@ GameTab::GameTab(wxFrame *parent, std::shared_ptr<Game> game)
});
}
void GameTab::OnToolClick(wxCommandEvent &event){
short id=event.GetId();
if(id==0){
if(!related_file.size()>0){
wxFileDialog
newFileDialog(this, _("Save Game"), "", "",
"PGN files (*.pgn)|*.pgn", wxFD_SAVE|wxFD_OVERWRITE_PROMPT);
if (newFileDialog.ShowModal() == wxID_CANCEL)
return;
// Create and open new db
related_file = newFileDialog.GetPath().ToStdString();
}
SaveGame(related_file,game);
}
}
void GameTab::OnGameChange(wxCommandEvent &event) {
board_panel->Notify(false,false);
editor_panel->Notify();

View file

@ -17,6 +17,7 @@ class GameTab : public wxPanel, public TabInfos {
GameTabRightPanel *editor_panel;
GameTabLeftPanel *board_panel;
std::shared_ptr<Game> game;
std::string related_file;
void RefreshLabel();
void OnRefreshTabTitle(wxCommandEvent &event);
@ -27,4 +28,6 @@ public:
void ApplyPreferences();
std::shared_ptr<Game> GetGame() { return (std::shared_ptr<Game>(game)); }
std::shared_ptr<GameBase> GetBase() { return (std::shared_ptr<GameBase>(NULL)); };
void OnToolClick(wxCommandEvent &event);
void OnLink(){board_panel->DisableSaveTool();};
};

View file

@ -5,7 +5,7 @@ GameTabLeftPanel::GameTabLeftPanel(wxFrame *parent, std::shared_ptr<Game> game)
: TabGameLeftPanel(parent), game(game), repeat(false) {
// Configure toolbal
game_toolbar->AddTool(0, wxT("Exit application"),
game_toolbar->AddTool(0, wxT("Save As"),
wxArtProvider::GetBitmap(wxART_FILE_SAVE, wxART_TOOLBAR));
// Add board
@ -26,24 +26,9 @@ GameTabLeftPanel::GameTabLeftPanel(wxFrame *parent, std::shared_ptr<Game> game)
Bind(wxEVT_BUTTON, &GameTabLeftPanel::OnZoomOut, this, ZOOM_OUT_BTN);
Bind(wxEVT_KEY_DOWN, [p=this](wxKeyEvent &e){e.ResumePropagation(1);e.Skip();});
Bind(wxEVT_KEY_UP, [p=this](wxKeyEvent &e){e.ResumePropagation(1);e.Skip();});
game_toolbar->Bind(wxEVT_TOOL,&GameTabLeftPanel::OnToolClick,this);
}
void GameTabLeftPanel::OnToolClick(wxCommandEvent &event){
short id=event.GetId();
if(id==0){
if(!related_file.size()>0){
wxFileDialog
newFileDialog(this, _("Save Game"), "", "",
"PGN files (*.pgn)|*.pgn", wxFD_SAVE|wxFD_OVERWRITE_PROMPT);
if (newFileDialog.ShowModal() == wxID_CANCEL)
return;
// Create and open new db
related_file = newFileDialog.GetPath().ToStdString();
}
SaveGame(related_file,game);
}
}
void GameTabLeftPanel::PreviousMove(bool isKeyDown) {
if(isKeyDown){

View file

@ -15,7 +15,6 @@ class GameTabLeftPanel : public TabGameLeftPanel {
void NotifyEditor();
std::string last_absolute_move;
bool repeat;
std::string related_file;
public:
GameTabLeftPanel(wxFrame *parent, std::shared_ptr<Game> game);
@ -29,5 +28,5 @@ public:
void OnSwap(wxCommandEvent &event);
void OnRefreshBoard(wxCommandEvent &event);
void ApplyPreferences();
void OnToolClick(wxCommandEvent &event);
void DisableSaveTool(){game_toolbar->EnableTool(0,false);};
};

View file

@ -39,4 +39,5 @@ long TabInfos::tab_count=0;
void TabInfos::Link(TabInfos *tab){
this->is_linked=true;
this->linked_id=tab->id;
this->OnLink();
}

View file

@ -56,6 +56,8 @@ public:
TabInfos(Type type_) : type(type_), id(tab_count), is_linked(false) { tab_count++; }
void Link(TabInfos *tab);
virtual void Refresh(){};
/// @brief Call when tab is linked to another one
virtual void OnLink(){};
virtual void ApplyPreferences() {};
virtual std::shared_ptr<Game> GetGame() = 0;
virtual std::shared_ptr<GameBase> GetBase() = 0;