Update GUI

This commit is contained in:
Loic Guegan 2022-12-23 14:21:33 +01:00
parent 6291b54904
commit 42ca3ee005
5 changed files with 645 additions and 519 deletions

View file

@ -3,7 +3,7 @@
#include <wx/filename.h>
BaseTab::BaseTab(wxFrame *parent, std::string base_file)
: TabBase(parent), base_file(base_file), TabInfos(TabInfos::BASE),
: TabBase_TabGames(parent), base_file(base_file), TabInfos(TabInfos::BASE),
base(NULL) {
game_list->InsertColumn(0, L"id", wxLIST_FORMAT_LEFT, 50);

View file

@ -7,7 +7,7 @@
wxDECLARE_EVENT(NEW_GAME_EVENT, wxCommandEvent);
wxDECLARE_EVENT(REFRESH_TAB_TITLE, wxCommandEvent);
class BaseTab : public TabBase, public TabInfos {
class BaseTab : public TabBase_TabGames, public TabInfos {
std::shared_ptr<GameBase> base;
std::vector<std::uint32_t> deleted;
std::vector<std::shared_ptr<Game>> edited;