// 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();
// 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