aboutsummaryrefslogtreecommitdiff
path: root/src/gui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui.h')
-rw-r--r--src/gui.h35
1 files changed, 31 insertions, 4 deletions
diff --git a/src/gui.h b/src/gui.h
index 76d9614..6c52418 100644
--- a/src/gui.h
+++ b/src/gui.h
@@ -36,6 +36,7 @@
#include <wx/clrpicker.h>
#include <wx/checkbox.h>
#include <wx/splitter.h>
+#include <wx/bmpbuttn.h>
#include <wx/notebook.h>
///////////////////////////////////////////////////////////////////////////
@@ -49,10 +50,14 @@
#define ID_EXPORT_BUTTON 1006
#define ID_IMPORT_BUTTON 1007
#define ID_DELETE_BUTTON 1008
-#define COMMENT_INPUT_BOX 1009
-#define UPDATE_BTN 1010
-#define DELETE_BTN 1011
-#define LIVE_ANALYSIS_GAME_BUTTON 1012
+#define SWAP_BTN 1009
+#define ZOOM_IN_BTN 1010
+#define ZOOM_OUT_BTN 1011
+#define COPY_FEN_BTN 1012
+#define COMMENT_INPUT_BOX 1013
+#define UPDATE_BTN 1014
+#define DELETE_BTN 1015
+#define LIVE_ANALYSIS_GAME_BUTTON 1016
///////////////////////////////////////////////////////////////////////////////
/// Class MainFrame
@@ -244,6 +249,28 @@ class TabBase : public wxPanel
};
///////////////////////////////////////////////////////////////////////////////
+/// Class TabGameLeftPanel
+///////////////////////////////////////////////////////////////////////////////
+class TabGameLeftPanel : public wxPanel
+{
+ private:
+
+ protected:
+ wxBoxSizer* main_sizer;
+ wxBitmapButton* swap_button;
+ wxBitmapButton* zoomin_button;
+ wxBitmapButton* zoomout_button;
+ wxButton* copy_fen_button;
+
+ public:
+
+ TabGameLeftPanel( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 500,300 ), long style = wxTAB_TRAVERSAL, const wxString& name = wxEmptyString );
+
+ ~TabGameLeftPanel();
+
+};
+
+///////////////////////////////////////////////////////////////////////////////
/// Class TabGameRightPanel
///////////////////////////////////////////////////////////////////////////////
class TabGameRightPanel : public wxPanel