From c49b48df010c97553aec80491c8fb505e21bcbf1 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Fri, 23 Dec 2022 16:49:33 +0100 Subject: Improve db tab --- src/gui.h | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) (limited to 'src/gui.h') diff --git a/src/gui.h b/src/gui.h index dc4a14b..fb2e3e2 100644 --- a/src/gui.h +++ b/src/gui.h @@ -36,8 +36,9 @@ #include #include #include -#include #include +#include +#include /////////////////////////////////////////////////////////////////////////// @@ -232,7 +233,7 @@ class TabBase : public wxPanel private: protected: - wxAuiNotebook* notebook; + wxNotebook* notebook; public: @@ -323,3 +324,26 @@ class TabBase_TabGames : public wxPanel }; +/////////////////////////////////////////////////////////////////////////////// +/// Class TabBase_TabImport +/////////////////////////////////////////////////////////////////////////////// +class TabBase_TabImport : public wxPanel +{ + private: + + protected: + wxStaticText* from_game_label; + wxComboBox* m_comboBox1; + wxButton* import_from_game_button; + wxStaticLine* m_staticline4; + wxStaticText* from_db_label; + wxListCtrl* game_list; + + public: + + TabBase_TabImport( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 500,200 ), long style = wxTAB_TRAVERSAL, const wxString& name = wxEmptyString ); + + ~TabBase_TabImport(); + +}; + -- cgit v1.2.3