]>
Commit | Line | Data |
---|---|---|
ffecfa5a | 1 | ///////////////////////////////////////////////////////////////////////////// |
6929fe3a | 2 | // Name: src/palmos/utils.cpp |
ffecfa5a | 3 | // Purpose: Various utilities |
6929fe3a WS |
4 | // Author: William Osborne - minimal working wxPalmOS port |
5 | // Modified by: Wlodzimierz ABX Skiba - real functionality | |
ffecfa5a | 6 | // Created: 10/13/04 |
6929fe3a WS |
7 | // RCS-ID: $Id$ |
8 | // Copyright: (c) William Osborne, Wlodzimierz Skiba | |
ffecfa5a JS |
9 | // Licence: wxWindows licence |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // For compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #ifndef WX_PRECOMP | |
28 | #include "wx/utils.h" | |
29 | #include "wx/app.h" | |
30 | #include "wx/intl.h" | |
31 | #include "wx/log.h" | |
c0badb70 | 32 | #include "wx/timer.h" |
ffecfa5a JS |
33 | #endif //WX_PRECOMP |
34 | ||
35 | #include "wx/apptrait.h" | |
36 | #include "wx/dynload.h" | |
d1df2399 | 37 | #include "wx/confbase.h" |
355debca | 38 | #include "wx/power.h" |
ffecfa5a | 39 | |
d1df2399 WS |
40 | #include <MemoryMgr.h> |
41 | #include <DLServer.h> | |
42 | #include <SoundMgr.h> | |
20bc5ad8 | 43 | #include <SysUtils.h> |
ffecfa5a JS |
44 | |
45 | // ============================================================================ | |
46 | // implementation | |
47 | // ============================================================================ | |
48 | ||
49 | // ---------------------------------------------------------------------------- | |
50 | // get host name and related | |
51 | // ---------------------------------------------------------------------------- | |
52 | ||
53 | // Get hostname only (without domain name) | |
54 | bool wxGetHostName(wxChar *buf, int maxSize) | |
55 | { | |
56 | return false; | |
57 | } | |
58 | ||
59 | // get full hostname (with domain name if possible) | |
60 | bool wxGetFullHostName(wxChar *buf, int maxSize) | |
61 | { | |
62 | return false; | |
63 | } | |
64 | ||
65 | // Get user ID e.g. jacs | |
66 | bool wxGetUserId(wxChar *buf, int maxSize) | |
67 | { | |
d1df2399 | 68 | return wxGetUserName(buf, maxSize); |
ffecfa5a JS |
69 | } |
70 | ||
71 | // Get user name e.g. Julian Smart | |
72 | bool wxGetUserName(wxChar *buf, int maxSize) | |
73 | { | |
d1df2399 WS |
74 | *buf = wxT('\0'); |
75 | ||
76 | // buffer allocation | |
77 | MemHandle handle = MemHandleNew(maxSize-1); | |
78 | if( handle == NULL ) | |
79 | return false; | |
80 | ||
81 | // lock the buffer | |
82 | char *id = (char *)MemHandleLock(handle); | |
83 | if( id == NULL ) | |
84 | return false; | |
85 | ||
86 | // get user's name | |
87 | if( DlkGetSyncInfo(NULL, NULL, NULL, id, NULL, NULL) != errNone ) | |
88 | { | |
89 | MemPtrUnlock(id); | |
90 | return false; | |
91 | } | |
92 | ||
93 | wxStrncpy (buf, wxConvertMB2WX(id), maxSize - 1); | |
94 | ||
9d8aca48 | 95 | // free the buffer |
d1df2399 WS |
96 | MemPtrUnlock(id); |
97 | ||
98 | return true; | |
ffecfa5a JS |
99 | } |
100 | ||
101 | const wxChar* wxGetHomeDir(wxString *pstr) | |
102 | { | |
103 | return NULL; | |
104 | } | |
105 | ||
106 | wxChar *wxGetUserHome(const wxString& WXUNUSED(user)) | |
107 | { | |
108 | return NULL; | |
109 | } | |
110 | ||
7ba7c4e6 | 111 | bool wxGetDiskSpace(const wxString& path, wxDiskspaceSize_t *pTotal, wxDiskspaceSize_t *pFree) |
ffecfa5a JS |
112 | { |
113 | return false; | |
114 | } | |
115 | ||
116 | // ---------------------------------------------------------------------------- | |
117 | // env vars | |
118 | // ---------------------------------------------------------------------------- | |
119 | ||
120 | bool wxGetEnv(const wxString& var, wxString *value) | |
121 | { | |
122 | return false; | |
123 | } | |
124 | ||
125 | bool wxSetEnv(const wxString& var, const wxChar *value) | |
126 | { | |
127 | return false; | |
128 | } | |
129 | ||
130 | // ---------------------------------------------------------------------------- | |
131 | // process management | |
132 | // ---------------------------------------------------------------------------- | |
133 | ||
e0f6b731 | 134 | int wxKill(long pid, wxSignal sig, wxKillError *krc, int flags) |
ffecfa5a JS |
135 | { |
136 | return 0; | |
137 | } | |
138 | ||
139 | // Execute a program in an Interactive Shell | |
140 | bool wxShell(const wxString& command) | |
141 | { | |
142 | return false; | |
143 | } | |
144 | ||
145 | // Shutdown or reboot the PC | |
146 | bool wxShutdown(wxShutdownFlags wFlags) | |
147 | { | |
148 | return false; | |
149 | } | |
150 | ||
355debca VZ |
151 | // ---------------------------------------------------------------------------- |
152 | // power management | |
153 | // ---------------------------------------------------------------------------- | |
154 | ||
8ea92b4d WS |
155 | wxPowerType wxGetPowerType() |
156 | { | |
157 | return wxPOWER_BATTERY; | |
158 | } | |
159 | ||
160 | wxBatteryState wxGetBatteryState() | |
161 | { | |
162 | // TODO | |
163 | return wxBATTERY_UNKNOWN_STATE; | |
164 | } | |
165 | ||
ffecfa5a JS |
166 | // ---------------------------------------------------------------------------- |
167 | // misc | |
168 | // ---------------------------------------------------------------------------- | |
169 | ||
170 | // Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX) | |
9d8aca48 | 171 | wxMemorySize wxGetFreeMemory() |
ffecfa5a | 172 | { |
d1df2399 WS |
173 | uint32_t freeTotal = 0; |
174 | uint32_t freeHeap; | |
175 | uint32_t freeChunk; | |
176 | ||
177 | // executed twice: for the dynamic heap, and for the non-secure RAM storage heap | |
178 | for ( uint16_t i=0; i<MemNumRAMHeaps(); i++) | |
179 | { | |
180 | status_t err = MemHeapFreeBytes(i, &freeHeap, &freeChunk); | |
181 | if( err != errNone ) | |
182 | return -1; | |
183 | freeTotal+=freeHeap; | |
184 | } | |
185 | ||
9d8aca48 | 186 | return (wxMemorySize)freeTotal; |
ffecfa5a JS |
187 | } |
188 | ||
189 | unsigned long wxGetProcessId() | |
190 | { | |
191 | return 0; | |
192 | } | |
193 | ||
194 | // Emit a beeeeeep | |
195 | void wxBell() | |
196 | { | |
d1df2399 | 197 | SndPlaySystemSound(sndWarning); |
ffecfa5a JS |
198 | } |
199 | ||
200 | wxString wxGetOsDescription() | |
201 | { | |
cc2c11e2 | 202 | wxString strOS = _T("PalmOS"); |
ffecfa5a | 203 | |
cc2c11e2 WS |
204 | char *version = SysGetOSVersionString(); |
205 | if(version) | |
206 | { | |
207 | wxString str = wxString::FromAscii(version); | |
6929fe3a | 208 | MemPtrFree(version); |
cc2c11e2 WS |
209 | if(!str.empty()) |
210 | { | |
211 | strOS << _(" ") << str; | |
212 | } | |
213 | } | |
214 | ||
215 | return strOS; | |
ffecfa5a JS |
216 | } |
217 | ||
8bb6b2c0 | 218 | wxOperatingSystemId wxGetOsVersion(int *verMaj, int *verMin) |
ffecfa5a | 219 | { |
8bb6b2c0 VZ |
220 | // TODO |
221 | ||
222 | return wxOS_UNKNOWN; | |
ffecfa5a JS |
223 | } |
224 | ||
225 | // ---------------------------------------------------------------------------- | |
226 | // sleep functions | |
227 | // ---------------------------------------------------------------------------- | |
228 | ||
229 | void wxMilliSleep(unsigned long milliseconds) | |
230 | { | |
231 | } | |
232 | ||
233 | void wxMicroSleep(unsigned long microseconds) | |
234 | { | |
235 | } | |
236 | ||
237 | void wxSleep(int nSecs) | |
238 | { | |
239 | } | |
240 | ||
241 | // ---------------------------------------------------------------------------- | |
242 | // font encoding <-> Win32 codepage conversion functions | |
243 | // ---------------------------------------------------------------------------- | |
244 | ||
245 | extern WXDLLIMPEXP_BASE long wxEncodingToCharset(wxFontEncoding encoding) | |
246 | { | |
247 | return 0; | |
248 | } | |
249 | ||
250 | // we have 2 versions of wxCharsetToCodepage(): the old one which directly | |
251 | // looks up the vlaues in the registry and the new one which is more | |
252 | // politically correct and has more chances to work on other Windows versions | |
253 | // as well but the old version is still needed for !wxUSE_FONTMAP case | |
254 | #if wxUSE_FONTMAP | |
255 | ||
256 | #include "wx/fontmap.h" | |
257 | ||
258 | extern WXDLLIMPEXP_BASE long wxEncodingToCodepage(wxFontEncoding encoding) | |
259 | { | |
260 | return 0; | |
261 | } | |
262 | ||
263 | extern long wxCharsetToCodepage(const wxChar *name) | |
264 | { | |
265 | return 0; | |
266 | } | |
267 | ||
268 | #else // !wxUSE_FONTMAP | |
269 | ||
ffecfa5a JS |
270 | // this should work if Internet Exploiter is installed |
271 | extern long wxCharsetToCodepage(const wxChar *name) | |
272 | { | |
273 | return 0; | |
274 | } | |
275 | ||
276 | #endif // wxUSE_FONTMAP/!wxUSE_FONTMAP |