]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gdicmn.h
Replaced typedef with #define for VC++ 1.5, to prevent 'no constructor' error
[wxWidgets.git] / include / wx / gdicmn.h
index 0f98d1ffa451fe3dc8e89bcdb3c9d53788e307a4..5cc489ac20eaab28dd337a730b0ceab6fcb6b395 100644 (file)
@@ -48,7 +48,7 @@ class WXDLLEXPORT wxString;
 // ---------------------------------------------------------------------------
 
 // Bitmap flags
-enum
+enum wxBitmapType
 {
     wxBITMAP_TYPE_INVALID,          // should be == 0 for compatibility!
     wxBITMAP_TYPE_BMP,
@@ -123,6 +123,8 @@ enum wxStockCursor
     wxCURSOR_BASED_ARROW_DOWN,
 #endif // X11
 
+    wxCURSOR_ARROWWAIT,
+
     wxCURSOR_MAX
 };
 
@@ -507,6 +509,10 @@ extern wxSize WXDLLEXPORT wxGetDisplaySize();
 extern void WXDLLEXPORT wxDisplaySizeMM(int *width, int *height);
 extern wxSize WXDLLEXPORT wxGetDisplaySizeMM();
 
+// Get position and size of the display workarea
+extern void WXDLLEXPORT wxClientDisplayRect(int *x, int *y, int *width, int *height);
+extern wxRect WXDLLEXPORT wxGetClientDisplayRect();
+
 // set global cursor
 extern void WXDLLEXPORT wxSetCursor(const wxCursor& cursor);