]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/aui/framemanager.h
Switch wxBufferedDC to use a wxBitmap* internally, so it doesn't
[wxWidgets.git] / include / wx / aui / framemanager.h
index f3b8d6b3a78b87a892e0b15b4e9ca898281edf68..cf6d9094c7fbbd1e89fea1220c6d4e70fada7e05 100644 (file)
@@ -85,9 +85,27 @@ enum wxPaneDockArtGradients
 
 enum wxPaneButtonState
 {
-    wxAUI_BUTTON_STATE_NORMAL = 0,
-    wxAUI_BUTTON_STATE_HOVER = 1,
-    wxAUI_BUTTON_STATE_PRESSED = 2
+    wxAUI_BUTTON_STATE_NORMAL   = 0,
+    wxAUI_BUTTON_STATE_HOVER    = 1 << 1,
+    wxAUI_BUTTON_STATE_PRESSED  = 1 << 2,
+    wxAUI_BUTTON_STATE_DISABLED = 1 << 3,
+    wxAUI_BUTTON_STATE_HIDDEN   = 1 << 4
+};
+
+enum wxAuiButtonId
+{
+    wxAUI_BUTTON_CLOSE = 101,
+    wxAUI_BUTTON_MAXIMIZE = 102,
+    wxAUI_BUTTON_MINIMIZE = 103,
+    wxAUI_BUTTON_PIN = 104,
+    wxAUI_BUTTON_OPTIONS = 105,
+    wxAUI_BUTTON_LEFT = 106,
+    wxAUI_BUTTON_RIGHT = 107,
+    wxAUI_BUTTON_UP = 108,
+    wxAUI_BUTTON_DOWN = 109,
+    wxAUI_BUTTON_CUSTOM1 = 201,
+    wxAUI_BUTTON_CUSTOM2 = 202,
+    wxAUI_BUTTON_CUSTOM3 = 203
 };
 
 enum wxPaneInsertLevel
@@ -99,6 +117,7 @@ enum wxPaneInsertLevel
 
 
 
+
 // forwards and array declarations
 class wxDockUIPart;
 class wxPaneButton;