aboutsummaryrefslogtreecommitdiff
path: root/src/gui.h
diff options
context:
space:
mode:
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();
+
+};
+