]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/settings.h
changed/centralized window creation code to allow wxTLW work in wxUniv
[wxWidgets.git] / include / wx / gtk1 / settings.h
index 2774b17709ce30ae52215219be03ec0b15c257df..901678da4145a47823e72966749c5aa40a04b385 100644 (file)
@@ -7,7 +7,6 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-
 #ifndef __GTKSETTINGSH__
 #define __GTKSETTINGSH__
 
 #include "wx/pen.h"
 #include "wx/font.h"
 
-class WXDLLEXPORT wxSystemSettings: public wxObject
+class wxSystemSettings: public wxObject
 {
 public:
-    inline wxSystemSettings(void) {}
+    inline wxSystemSettings() {}
 
     inline static void Init() {}
     static void Done();
@@ -36,6 +35,9 @@ public:
 
     // Get a system metric, e.g. scrollbar size
     static int         GetSystemMetric(int index);
+
+    // Return true if the port can draw frame titlebar (i.e. doesn't need wxUniv for it)
+    static bool        HasFrameDecorations() { return TRUE; }
 };
 
 #endif