aboutsummaryrefslogtreecommitdiff
path: root/src/gui.h
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-12-23 16:49:33 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-12-23 16:49:33 +0100
commitc49b48df010c97553aec80491c8fb505e21bcbf1 (patch)
treeebd2d97591c08f1b10fc49670a63dde43786ef6c /src/gui.h
parent42ca3ee005118f656f29190120c68f99692ab1be (diff)
Improve db tab
Diffstat (limited to 'src/gui.h')
-rw-r--r--src/gui.h28
1 files changed, 26 insertions, 2 deletions
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 <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();
+
+};
+