1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/palmos/settings.cpp
3 // Purpose: wxSystemSettingsNative implementation for Palm OS
4 // Author: William Osborne - minimal working wxPalmOS port
5 // Modified by: Wlodzimierz ABX Skiba - native implementation
8 // Copyright: (c) William Osborne, Wlodzimierz Skiba
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/gdicmn.h"
32 #include "wx/settings.h"
33 #include "wx/module.h"
34 #include "wx/fontutil.h"
36 // ============================================================================
38 // ============================================================================
40 // ----------------------------------------------------------------------------
41 // wxSystemSettingsNative
42 // ----------------------------------------------------------------------------
44 // ----------------------------------------------------------------------------
46 // ----------------------------------------------------------------------------
48 wxColour
wxSystemSettingsNative::GetColour(wxSystemColour index
)
50 // point to unused entry to mark lack of assignment
51 UIColorTableEntries which
= UILastColorTableEntry
;
55 case wxSYS_COLOUR_BACKGROUND
:
56 case wxSYS_COLOUR_WINDOW
:
59 case wxSYS_COLOUR_WINDOWFRAME
:
60 case wxSYS_COLOUR_ACTIVECAPTION
:
63 case wxSYS_COLOUR_SCROLLBAR
:
67 case wxSYS_COLOUR_INACTIVECAPTION:
68 case wxSYS_COLOUR_MENU:
69 case wxSYS_COLOUR_MENUTEXT:
70 case wxSYS_COLOUR_WINDOWTEXT:
71 case wxSYS_COLOUR_CAPTIONTEXT:
72 case wxSYS_COLOUR_ACTIVEBORDER:
73 case wxSYS_COLOUR_INACTIVEBORDER:
74 case wxSYS_COLOUR_APPWORKSPACE:
75 case wxSYS_COLOUR_HIGHLIGHT:
76 case wxSYS_COLOUR_HIGHLIGHTTEXT:
77 case wxSYS_COLOUR_BTNFACE:
78 case wxSYS_COLOUR_BTNSHADOW:
79 case wxSYS_COLOUR_GRAYTEXT:
80 case wxSYS_COLOUR_BTNTEXT:
81 case wxSYS_COLOUR_INACTIVECAPTIONTEXT:
82 case wxSYS_COLOUR_BTNHIGHLIGHT:
83 case wxSYS_COLOUR_3DDKSHADOW:
84 case wxSYS_COLOUR_3DLIGHT:
85 case wxSYS_COLOUR_INFOTEXT:
86 case wxSYS_COLOUR_INFOBK:
87 case wxSYS_COLOUR_LISTBOX:
88 case wxSYS_COLOUR_HOTLIGHT:
89 case wxSYS_COLOUR_GRADIENTACTIVECAPTION:
90 case wxSYS_COLOUR_GRADIENTINACTIVECAPTION:
91 case wxSYS_COLOUR_MENUHILIGHT:
92 case wxSYS_COLOUR_MENUBAR:
95 if ( which
== UILastColorTableEntry
)
100 UIColorGetTableEntryRGB (which
,&rgbP
);
102 return wxColour(rgbP
.r
,rgbP
.g
,rgbP
.b
);
105 // ----------------------------------------------------------------------------
107 // ----------------------------------------------------------------------------
109 wxFont
wxCreateFontFromStockObject(int index
)
115 wxFont
wxSystemSettingsNative::GetFont(wxSystemFont index
)
121 // ----------------------------------------------------------------------------
122 // system metrics/features
123 // ----------------------------------------------------------------------------
125 // Get a system metric, e.g. scrollbar size
126 int wxSystemSettingsNative::GetMetric(wxSystemMetric index
)
134 WinScreenGetAttribute(winScreenWidth
, &attrP
);
139 WinScreenGetAttribute(winScreenHeight
, &attrP
);
147 bool wxSystemSettingsNative::HasFeature(wxSystemFeature index
)