diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-12-23 16:49:33 +0100 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-12-23 16:49:33 +0100 |
| commit | c49b48df010c97553aec80491c8fb505e21bcbf1 (patch) | |
| tree | ebd2d97591c08f1b10fc49670a63dde43786ef6c /src/gui.h | |
| parent | 42ca3ee005118f656f29190120c68f99692ab1be (diff) | |
Improve db tab
Diffstat (limited to 'src/gui.h')
| -rw-r--r-- | src/gui.h | 28 |
1 files changed, 26 insertions, 2 deletions
@@ -36,8 +36,9 @@ #include <wx/clrpicker.h> #include <wx/checkbox.h> #include <wx/splitter.h> -#include <wx/bmpbuttn.h> #include <wx/notebook.h> +#include <wx/bmpbuttn.h> +#include <wx/combobox.h> /////////////////////////////////////////////////////////////////////////// @@ -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(); + +}; + |
