#include "wx/settings.h"
#include "wx/colour.h"
#include "wx/font.h"
+#include "wx/gdicmn.h"
#include "wx/module.h"
// ----------------------------------------------------------------------------
-wxColour wxSystemSettings::GetSystemColour(int WXUNUSED(index))
+wxColour wxSystemSettingsNative::GetColour(wxSystemColour WXUNUSED(index))
{
- // FIXME_MGL
+ // not implemented, the mean is in wxUniversal
return wxColour(0,0,0);
}
-wxFont wxSystemSettings::GetSystemFont(int index)
+wxFont wxSystemSettingsNative::GetFont(wxSystemFont index)
{
switch (index)
{
}
}
-int wxSystemSettings::GetSystemMetric(int index)
+int wxSystemSettingsNative::GetMetric(wxSystemMetric index)
{
int val;
return 15;
break;
default:
- wxCHECK_MSG(index, 0, wxT("wxSystemSettings::GetSystemMetric not fully implemented"));
+ wxCHECK_MSG(index, 0, wxT("wxSystemSettings::GetMetric not fully implemented"));
return 0;
}
}
-bool wxSystemSettings::GetCapability(int index)
+bool wxSystemSettingsNative::HasFeature(wxSystemFeature index)
{
switch (index)
{