]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/settings.cpp
give focus to show top level windows
[wxWidgets.git] / src / mgl / settings.cpp
index 19427c69a50385d85e857b94935e9e012b69332c..bca51ecd13963999e0feb9066029612a0548341d 100644 (file)
@@ -1,9 +1,8 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        settings.cpp
-// Purpose:
-// Author:      Robert Roebling
+// Name:        settings.h
+// Author:      Vaclav Slavik
 // Id:          $Id$
-// Copyright:   (c) 1998 Robert Roebling
+// Copyright:   (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #endif
 
 #include "wx/settings.h"
+#include "wx/colour.h"
+#include "wx/font.h"
 
+wxColour wxSystemSettings::GetSystemColour(int WXUNUSED(index))
+{
+    // FIXME_MGL
+    return wxColour(0,0,0);
+}
+
+wxFont wxSystemSettings::GetSystemFont(int WXUNUSED(index))
+{
+    // FIXME_MGL
+    return wxFont(9, wxSWISS, wxNORMAL, wxNORMAL);
+}
+
+int wxSystemSettings::GetSystemMetric(int WXUNUSED(index))
+{
+    // FIXME_MGL
+    return 1;
+}