Improve UI

This commit is contained in:
Loic Guegan 2022-12-26 16:46:05 +01:00
parent 5a4ec5d1e8
commit 8a9b920a5e
4 changed files with 4 additions and 1 deletions

View file

@ -109,6 +109,7 @@ void BaseGameTab::Reset(std::shared_ptr<GameBase> base){
deleted.clear();
// Load all games (for now :)
SHOW_DIALOG_BUSY("Loading database...");
this->base=base;
if (base != NULL) {
while (base->NextGame()) {

View file

@ -79,6 +79,7 @@ void BaseImportTab::OnLoad(wxCommandEvent &event){
// Load all games (for now :)
selected_base->Reset();
SHOW_DIALOG_BUSY("Loading database...");
while (selected_base->NextGame()) {
glm->AddGame(
selected_base->GetTag("White"),

View file

@ -25,7 +25,6 @@ BaseTab::BaseTab(wxFrame *parent, std::string base_file)
// Bindings
this->Bind(OPEN_GAME_EVENT, &BaseTab::OnOpenGame, this, wxID_ANY);
this->Bind(wxEVT_BUTTON, &BaseTab::OnSave, this, ID_SAVE_BUTTON);
}

View file

@ -12,6 +12,7 @@
#include <wx/config.h>
#include <wx/filefn.h> // Check file exists etc
#include <wx/log.h>
#include <wx/busyinfo.h>
#define MAINWIN ((MainWindow *)wxGetApp().GetTopWindow())
@ -22,6 +23,7 @@
dial->ShowModal(); \
}
#define SHOW_DIALOG_INFO(message) {wxMessageBox( wxT(message) );}
#define SHOW_DIALOG_BUSY(message) {wxBusyInfo wait(message);}
#define REQUIRE_FILE(file) \
{ \
if (!wxFileExists(file)) { \