X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/32b8ec418aee4e38877d4cb79e2984c766dcc358..15678bec37c6e3cb8a67a8b041579af595d4ccf3:/include/wx/mgl/settings.h diff --git a/include/wx/mgl/settings.h b/include/wx/mgl/settings.h index 78204b3f07..ac1d270413 100644 --- a/include/wx/mgl/settings.h +++ b/include/wx/mgl/settings.h @@ -1,9 +1,8 @@ ///////////////////////////////////////////////////////////////////////////// // Name: settings.h -// Purpose: -// Author: Robert Roebling +// Author: Vaclav Slavik // Id: $Id$ -// Copyright: (c) 1998 Robert Roebling +// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -24,19 +23,22 @@ class wxSystemSettings: public wxObject { public: - inline wxSystemSettings() {} + wxSystemSettings() {} - inline static void Init() {} + static void Init() {} static void Done() {} // Get a system colour - static wxColour GetSystemColour(int index) {} + static wxColour GetSystemColour(int index); // Get a system font - static wxFont GetSystemFont(int index) {} + static wxFont GetSystemFont(int index); // Get a system metric, e.g. scrollbar size - static int GetSystemMetric(int index) {} + 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 FALSE; } }; #endif