]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: utils.h | |
3 | // Purpose: Miscellaneous utilities | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 29/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _WX_UTILSH__ |
13 | #define _WX_UTILSH__ | |
c801d85f | 14 | |
d6b9496a VZ |
15 | // ---------------------------------------------------------------------------- |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
c801d85f KB |
19 | #include "wx/object.h" |
20 | #include "wx/list.h" | |
c801d85f | 21 | #include "wx/filefn.h" |
2da2f941 MB |
22 | |
23 | class WXDLLIMPEXP_BASE wxArrayString; | |
c801d85f | 24 | |
eadd7bd2 VZ |
25 | // need this for wxGetDiskSpace() as we can't, unfortunately, forward declare |
26 | // wxLongLong | |
27 | #include "wx/longlong.h" | |
28 | ||
c801d85f | 29 | #ifdef __X__ |
d6b9496a VZ |
30 | #include <dirent.h> |
31 | #include <unistd.h> | |
c801d85f KB |
32 | #endif |
33 | ||
34 | #include <stdio.h> | |
35 | ||
d6b9496a VZ |
36 | // ---------------------------------------------------------------------------- |
37 | // Forward declaration | |
38 | // ---------------------------------------------------------------------------- | |
39 | ||
62a9d04c VS |
40 | class WXDLLIMPEXP_CORE wxProcess; |
41 | class WXDLLIMPEXP_CORE wxFrame; | |
42 | class WXDLLIMPEXP_CORE wxWindow; | |
43 | class WXDLLIMPEXP_CORE wxWindowList; | |
44 | class WXDLLIMPEXP_CORE wxPoint; | |
d6b9496a | 45 | |
d6b9496a VZ |
46 | // ---------------------------------------------------------------------------- |
47 | // Macros | |
48 | // ---------------------------------------------------------------------------- | |
c801d85f | 49 | |
d6b9496a VZ |
50 | #define wxMax(a,b) (((a) > (b)) ? (a) : (b)) |
51 | #define wxMin(a,b) (((a) < (b)) ? (a) : (b)) | |
c801d85f | 52 | |
9d8aca48 WS |
53 | // wxGetFreeMemory can return huge amount of memory on 64-bit platforms |
54 | // define wxMemorySize according to the type which best fits your platform | |
55 | #if wxUSE_LONGLONG && defined(__WIN64__) | |
56 | // 64 bit Windowses have sizeof(long) only 32 bit long | |
57 | // we need to use wxLongLong to express memory sizes | |
58 | #define wxMemorySize wxLongLong | |
59 | #else | |
60 | // 64 bit UNIX has sizeof(long) = 64 | |
61 | // assume 32 bit platforms cannnot return more than 32bits of | |
62 | #define wxMemorySize long | |
63 | #endif | |
64 | ||
d6b9496a VZ |
65 | // ---------------------------------------------------------------------------- |
66 | // String functions (deprecated, use wxString) | |
67 | // ---------------------------------------------------------------------------- | |
68 | ||
c801d85f | 69 | // Make a copy of this string using 'new' |
f526f752 | 70 | #if WXWIN_COMPATIBILITY_2_4 |
eecb33b0 | 71 | wxDEPRECATED( WXDLLIMPEXP_BASE wxChar* copystring(const wxChar *s) ); |
f526f752 | 72 | #endif |
c801d85f | 73 | |
d6b9496a | 74 | // A shorter way of using strcmp |
9d2f3c71 | 75 | #define wxStringEq(s1, s2) (s1 && s2 && (wxStrcmp(s1, s2) == 0)) |
d6b9496a VZ |
76 | |
77 | // ---------------------------------------------------------------------------- | |
78 | // Miscellaneous functions | |
79 | // ---------------------------------------------------------------------------- | |
80 | ||
81 | // Sound the bell | |
968eb2ef MW |
82 | #if !defined __EMX__ && \ |
83 | (defined __WXMOTIF__ || defined __WXGTK__ || defined __WXX11__) | |
84 | WXDLLIMPEXP_CORE void wxBell(); | |
85 | #else | |
bddd7a8d | 86 | WXDLLIMPEXP_BASE void wxBell(); |
968eb2ef | 87 | #endif |
d6b9496a | 88 | |
bdc72a22 | 89 | // Get OS description as a user-readable string |
bddd7a8d | 90 | WXDLLIMPEXP_BASE wxString wxGetOsDescription(); |
bdc72a22 | 91 | |
d6b9496a | 92 | // Get OS version |
bddd7a8d | 93 | WXDLLIMPEXP_BASE int wxGetOsVersion(int *majorVsn = (int *) NULL, |
bdc72a22 | 94 | int *minorVsn = (int *) NULL); |
d6b9496a VZ |
95 | |
96 | // Return a string with the current date/time | |
bddd7a8d | 97 | WXDLLIMPEXP_BASE wxString wxNow(); |
d6b9496a | 98 | |
77ffb593 | 99 | // Return path where wxWidgets is installed (mostly useful in Unices) |
bddd7a8d | 100 | WXDLLIMPEXP_BASE const wxChar *wxGetInstallPrefix(); |
2c18f21d | 101 | // Return path to wxWin data (/usr/share/wx/%{version}) (Unices) |
bddd7a8d | 102 | WXDLLIMPEXP_BASE wxString wxGetDataDir(); |
134677bd VS |
103 | |
104 | ||
e90c1d2a | 105 | #if wxUSE_GUI |
97698dc4 RD |
106 | |
107 | // Get the state of a key (true if pressed, false if not) | |
108 | // This is generally most useful getting the state of | |
109 | // the modifier or toggle keys. | |
1751226c | 110 | WXDLLEXPORT bool wxGetKeyState(wxKeyCode key); |
97698dc4 | 111 | |
14dfb3d2 | 112 | |
63cc5d9d RR |
113 | // Don't synthesize KeyUp events holding down a key and producing |
114 | // KeyDown events with autorepeat. On by default and always on | |
115 | // in wxMSW. | |
f0492f7d RR |
116 | WXDLLEXPORT bool wxSetDetectableAutoRepeat( bool flag ); |
117 | ||
d6b9496a VZ |
118 | // ---------------------------------------------------------------------------- |
119 | // Window ID management | |
120 | // ---------------------------------------------------------------------------- | |
121 | ||
c801d85f | 122 | // Generate a unique ID |
afb74891 | 123 | WXDLLEXPORT long wxNewId(); |
c801d85f KB |
124 | |
125 | // Ensure subsequent IDs don't clash with this one | |
184b5d99 | 126 | WXDLLEXPORT void wxRegisterId(long id); |
c801d85f KB |
127 | |
128 | // Return the current ID | |
afb74891 | 129 | WXDLLEXPORT long wxGetCurrentId(); |
c801d85f | 130 | |
e90c1d2a VZ |
131 | #endif // wxUSE_GUI |
132 | ||
d6b9496a VZ |
133 | // ---------------------------------------------------------------------------- |
134 | // Various conversions | |
135 | // ---------------------------------------------------------------------------- | |
c801d85f | 136 | |
e12c92c2 VZ |
137 | // these functions are deprecated, use wxString methods instead! |
138 | #if WXWIN_COMPATIBILITY_2_4 | |
139 | ||
16cba29d WS |
140 | extern WXDLLIMPEXP_DATA_BASE(const wxChar*) wxFloatToStringStr; |
141 | extern WXDLLIMPEXP_DATA_BASE(const wxChar*) wxDoubleToStringStr; | |
c801d85f | 142 | |
eecb33b0 WS |
143 | wxDEPRECATED( WXDLLIMPEXP_BASE void StringToFloat(const wxChar *s, float *number) ); |
144 | wxDEPRECATED( WXDLLIMPEXP_BASE wxChar* FloatToString(float number, const wxChar *fmt = wxFloatToStringStr) ); | |
145 | wxDEPRECATED( WXDLLIMPEXP_BASE void StringToDouble(const wxChar *s, double *number) ); | |
146 | wxDEPRECATED( WXDLLIMPEXP_BASE wxChar* DoubleToString(double number, const wxChar *fmt = wxDoubleToStringStr) ); | |
147 | wxDEPRECATED( WXDLLIMPEXP_BASE void StringToInt(const wxChar *s, int *number) ); | |
148 | wxDEPRECATED( WXDLLIMPEXP_BASE void StringToLong(const wxChar *s, long *number) ); | |
149 | wxDEPRECATED( WXDLLIMPEXP_BASE wxChar* IntToString(int number) ); | |
150 | wxDEPRECATED( WXDLLIMPEXP_BASE wxChar* LongToString(long number) ); | |
c801d85f | 151 | |
e12c92c2 VZ |
152 | #endif // WXWIN_COMPATIBILITY_2_4 |
153 | ||
c801d85f | 154 | // Convert 2-digit hex number to decimal |
bddd7a8d | 155 | WXDLLIMPEXP_BASE int wxHexToDec(const wxString& buf); |
c801d85f KB |
156 | |
157 | // Convert decimal integer to 2-character hex string | |
bddd7a8d VZ |
158 | WXDLLIMPEXP_BASE void wxDecToHex(int dec, wxChar *buf); |
159 | WXDLLIMPEXP_BASE wxString wxDecToHex(int dec); | |
c801d85f | 160 | |
d6b9496a VZ |
161 | // ---------------------------------------------------------------------------- |
162 | // Process management | |
163 | // ---------------------------------------------------------------------------- | |
164 | ||
e0f6b731 | 165 | // NB: for backwards compatibility reasons the values of wxEXEC_[A]SYNC *must* |
fbf456aa VZ |
166 | // be 0 and 1, don't change! |
167 | ||
168 | enum | |
169 | { | |
e1082c9f VZ |
170 | // execute the process asynchronously |
171 | wxEXEC_ASYNC = 0, | |
172 | ||
173 | // execute it synchronously, i.e. wait until it finishes | |
174 | wxEXEC_SYNC = 1, | |
175 | ||
176 | // under Windows, don't hide the child even if it's IO is redirected (this | |
177 | // is done by default) | |
178 | wxEXEC_NOHIDE = 2, | |
179 | ||
e0f6b731 JS |
180 | // under Unix, if the process is the group leader then passing wxKILL_CHILDREN to wxKill |
181 | // kills all children as well as pid | |
f38f6899 VZ |
182 | wxEXEC_MAKE_GROUP_LEADER = 4, |
183 | ||
184 | // by default synchronous execution disables all program windows to avoid | |
185 | // that the user interacts with the program while the child process is | |
186 | // running, you can use this flag to prevent this from happening | |
187 | wxEXEC_NODISABLE = 8 | |
fbf456aa VZ |
188 | }; |
189 | ||
190 | // Execute another program. | |
191 | // | |
192 | // If flags contain wxEXEC_SYNC, return -1 on failure and the exit code of the | |
193 | // process if everything was ok. Otherwise (i.e. if wxEXEC_ASYNC), return 0 on | |
194 | // failure and the PID of the launched process if ok. | |
bddd7a8d | 195 | WXDLLIMPEXP_BASE long wxExecute(wxChar **argv, int flags = wxEXEC_ASYNC, |
c67daf87 | 196 | wxProcess *process = (wxProcess *) NULL); |
bddd7a8d | 197 | WXDLLIMPEXP_BASE long wxExecute(const wxString& command, int flags = wxEXEC_ASYNC, |
c67daf87 | 198 | wxProcess *process = (wxProcess *) NULL); |
c801d85f | 199 | |
fbf456aa VZ |
200 | // execute the command capturing its output into an array line by line, this is |
201 | // always synchronous | |
bddd7a8d | 202 | WXDLLIMPEXP_BASE long wxExecute(const wxString& command, |
4d172154 VZ |
203 | wxArrayString& output, |
204 | int flags = 0); | |
f6bcfd97 | 205 | |
fbf456aa | 206 | // also capture stderr (also synchronous) |
bddd7a8d | 207 | WXDLLIMPEXP_BASE long wxExecute(const wxString& command, |
4d172154 VZ |
208 | wxArrayString& output, |
209 | wxArrayString& error, | |
210 | int flags = 0); | |
cd6ce4a9 | 211 | |
d6b9496a VZ |
212 | enum wxSignal |
213 | { | |
214 | wxSIGNONE = 0, // verify if the process exists under Unix | |
215 | wxSIGHUP, | |
216 | wxSIGINT, | |
217 | wxSIGQUIT, | |
218 | wxSIGILL, | |
219 | wxSIGTRAP, | |
220 | wxSIGABRT, | |
221 | wxSIGIOT = wxSIGABRT, // another name | |
222 | wxSIGEMT, | |
223 | wxSIGFPE, | |
224 | wxSIGKILL, | |
225 | wxSIGBUS, | |
226 | wxSIGSEGV, | |
227 | wxSIGSYS, | |
228 | wxSIGPIPE, | |
229 | wxSIGALRM, | |
230 | wxSIGTERM | |
231 | ||
232 | // further signals are different in meaning between different Unix systems | |
233 | }; | |
c801d85f | 234 | |
50567b69 VZ |
235 | enum wxKillError |
236 | { | |
237 | wxKILL_OK, // no error | |
238 | wxKILL_BAD_SIGNAL, // no such signal | |
239 | wxKILL_ACCESS_DENIED, // permission denied | |
240 | wxKILL_NO_PROCESS, // no such process | |
241 | wxKILL_ERROR // another, unspecified error | |
242 | }; | |
243 | ||
e0f6b731 JS |
244 | enum wxKillFlags |
245 | { | |
246 | wxKILL_NOCHILDREN = 0, // don't kill children | |
247 | wxKILL_CHILDREN = 1 // kill children | |
248 | }; | |
249 | ||
f6ba47d9 VZ |
250 | enum wxShutdownFlags |
251 | { | |
252 | wxSHUTDOWN_POWEROFF, // power off the computer | |
253 | wxSHUTDOWN_REBOOT // shutdown and reboot | |
254 | }; | |
255 | ||
c1cb4153 | 256 | // Shutdown or reboot the PC |
bddd7a8d | 257 | WXDLLIMPEXP_BASE bool wxShutdown(wxShutdownFlags wFlags); |
f6ba47d9 | 258 | |
8ea92b4d WS |
259 | enum wxPowerType |
260 | { | |
261 | wxPOWER_SOCKET, | |
262 | wxPOWER_BATTERY, | |
263 | wxPOWER_UNKNOWN | |
264 | }; | |
265 | ||
266 | WXDLLIMPEXP_BASE wxPowerType wxGetPowerType(); | |
267 | ||
268 | enum wxBatteryState | |
269 | { | |
270 | wxBATTERY_NORMAL_STATE, // system is fully usable | |
271 | wxBATTERY_LOW_STATE, // start to worry | |
272 | wxBATTERY_CRITICAL_STATE, // save quickly | |
273 | wxBATTERY_SHUTDOWN_STATE, // too late | |
274 | wxBATTERY_UNKNOWN_STATE | |
275 | }; | |
276 | ||
277 | WXDLLIMPEXP_BASE wxBatteryState wxGetBatteryState(); | |
278 | ||
50567b69 VZ |
279 | // send the given signal to the process (only NONE and KILL are supported under |
280 | // Windows, all others mean TERM), return 0 if ok and -1 on error | |
281 | // | |
282 | // return detailed error in rc if not NULL | |
bddd7a8d | 283 | WXDLLIMPEXP_BASE int wxKill(long pid, |
50567b69 | 284 | wxSignal sig = wxSIGTERM, |
e0f6b731 JS |
285 | wxKillError *rc = NULL, |
286 | int flags = wxKILL_NOCHILDREN); | |
c801d85f | 287 | |
2c8e4738 | 288 | // Execute a command in an interactive shell window (always synchronously) |
c801d85f | 289 | // If no command then just the shell |
bddd7a8d | 290 | WXDLLIMPEXP_BASE bool wxShell(const wxString& command = wxEmptyString); |
c801d85f | 291 | |
2c8e4738 VZ |
292 | // As wxShell(), but must give a (non interactive) command and its output will |
293 | // be returned in output array | |
bddd7a8d | 294 | WXDLLIMPEXP_BASE bool wxShell(const wxString& command, wxArrayString& output); |
2c8e4738 | 295 | |
b568d04f | 296 | // Sleep for nSecs seconds |
bddd7a8d | 297 | WXDLLIMPEXP_BASE void wxSleep(int nSecs); |
c801d85f | 298 | |
afb74891 | 299 | // Sleep for a given amount of milliseconds |
08873d36 VZ |
300 | WXDLLIMPEXP_BASE void wxMilliSleep(unsigned long milliseconds); |
301 | ||
302 | // Sleep for a given amount of microseconds | |
303 | WXDLLIMPEXP_BASE void wxMicroSleep(unsigned long microseconds); | |
304 | ||
305 | // Sleep for a given amount of milliseconds (old, bad name), use wxMilliSleep | |
306 | wxDEPRECATED( WXDLLIMPEXP_BASE void wxUsleep(unsigned long milliseconds) ); | |
afb74891 | 307 | |
c1cb4153 | 308 | // Get the process id of the current process |
bddd7a8d | 309 | WXDLLIMPEXP_BASE unsigned long wxGetProcessId(); |
c1cb4153 | 310 | |
c801d85f | 311 | // Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX) |
9d8aca48 | 312 | WXDLLIMPEXP_BASE wxMemorySize wxGetFreeMemory(); |
c801d85f | 313 | |
a76d8a29 VZ |
314 | #if wxUSE_ON_FATAL_EXCEPTION |
315 | ||
a37a5a73 | 316 | // should wxApp::OnFatalException() be called? |
cb719f2e | 317 | WXDLLIMPEXP_BASE bool wxHandleFatalExceptions(bool doit = true); |
a37a5a73 | 318 | |
a76d8a29 VZ |
319 | #endif // wxUSE_ON_FATAL_EXCEPTION |
320 | ||
c4472055 | 321 | #if wxABI_VERSION >= 20601 |
498a1eeb RN |
322 | // Launch url in the user's default internet browser |
323 | WXDLLIMPEXP_BASE bool wxLaunchDefaultBrowser(const wxString& url); | |
0f8218d7 | 324 | #endif |
498a1eeb | 325 | |
8fd0d89b VZ |
326 | // ---------------------------------------------------------------------------- |
327 | // Environment variables | |
328 | // ---------------------------------------------------------------------------- | |
329 | ||
cb719f2e | 330 | // returns true if variable exists (value may be NULL if you just want to check |
308978f6 | 331 | // for this) |
bddd7a8d | 332 | WXDLLIMPEXP_BASE bool wxGetEnv(const wxString& var, wxString *value); |
8fd0d89b | 333 | |
cb719f2e | 334 | // set the env var name to the given value, return true on success |
bddd7a8d | 335 | WXDLLIMPEXP_BASE bool wxSetEnv(const wxString& var, const wxChar *value); |
8fd0d89b VZ |
336 | |
337 | // remove the env var from environment | |
338 | inline bool wxUnsetEnv(const wxString& var) { return wxSetEnv(var, NULL); } | |
339 | ||
d6b9496a VZ |
340 | // ---------------------------------------------------------------------------- |
341 | // Network and username functions. | |
342 | // ---------------------------------------------------------------------------- | |
c801d85f | 343 | |
d6b9496a | 344 | // NB: "char *" functions are deprecated, use wxString ones! |
c801d85f KB |
345 | |
346 | // Get eMail address | |
bddd7a8d VZ |
347 | WXDLLIMPEXP_BASE bool wxGetEmailAddress(wxChar *buf, int maxSize); |
348 | WXDLLIMPEXP_BASE wxString wxGetEmailAddress(); | |
c801d85f KB |
349 | |
350 | // Get hostname. | |
bddd7a8d VZ |
351 | WXDLLIMPEXP_BASE bool wxGetHostName(wxChar *buf, int maxSize); |
352 | WXDLLIMPEXP_BASE wxString wxGetHostName(); | |
d6b9496a VZ |
353 | |
354 | // Get FQDN | |
bddd7a8d VZ |
355 | WXDLLIMPEXP_BASE wxString wxGetFullHostName(); |
356 | WXDLLIMPEXP_BASE bool wxGetFullHostName(wxChar *buf, int maxSize); | |
c801d85f | 357 | |
d6b9496a | 358 | // Get user ID e.g. jacs (this is known as login name under Unix) |
bddd7a8d VZ |
359 | WXDLLIMPEXP_BASE bool wxGetUserId(wxChar *buf, int maxSize); |
360 | WXDLLIMPEXP_BASE wxString wxGetUserId(); | |
c801d85f KB |
361 | |
362 | // Get user name e.g. Julian Smart | |
bddd7a8d VZ |
363 | WXDLLIMPEXP_BASE bool wxGetUserName(wxChar *buf, int maxSize); |
364 | WXDLLIMPEXP_BASE wxString wxGetUserName(); | |
d6b9496a VZ |
365 | |
366 | // Get current Home dir and copy to dest (returns pstr->c_str()) | |
bddd7a8d VZ |
367 | WXDLLIMPEXP_BASE wxString wxGetHomeDir(); |
368 | WXDLLIMPEXP_BASE const wxChar* wxGetHomeDir(wxString *pstr); | |
d6b9496a VZ |
369 | |
370 | // Get the user's home dir (caller must copy --- volatile) | |
371 | // returns NULL is no HOME dir is known | |
61ef57fc | 372 | #if defined(__UNIX__) && wxUSE_UNICODE |
bddd7a8d | 373 | WXDLLIMPEXP_BASE const wxMB2WXbuf wxGetUserHome(const wxString& user = wxEmptyString); |
61ef57fc | 374 | #else |
bddd7a8d | 375 | WXDLLIMPEXP_BASE wxChar* wxGetUserHome(const wxString& user = wxEmptyString); |
61ef57fc | 376 | #endif |
d6b9496a | 377 | |
eadd7bd2 | 378 | // get number of total/free bytes on the disk where path belongs |
bddd7a8d | 379 | WXDLLIMPEXP_BASE bool wxGetDiskSpace(const wxString& path, |
eadd7bd2 VZ |
380 | wxLongLong *pTotal = NULL, |
381 | wxLongLong *pFree = NULL); | |
382 | ||
e90c1d2a VZ |
383 | #if wxUSE_GUI // GUI only things from now on |
384 | ||
d6b9496a | 385 | // ---------------------------------------------------------------------------- |
974e8d94 | 386 | // Menu accelerators related things |
d6b9496a | 387 | // ---------------------------------------------------------------------------- |
c801d85f | 388 | |
bc87fd68 | 389 | WXDLLEXPORT wxChar* wxStripMenuCodes(const wxChar *in, wxChar *out = (wxChar *) NULL); |
184b5d99 | 390 | WXDLLEXPORT wxString wxStripMenuCodes(const wxString& str); |
c801d85f | 391 | |
974e8d94 VZ |
392 | #if wxUSE_ACCEL |
393 | class WXDLLEXPORT wxAcceleratorEntry; | |
394 | WXDLLEXPORT wxAcceleratorEntry *wxGetAccelFromString(const wxString& label); | |
395 | #endif // wxUSE_ACCEL | |
396 | ||
d6b9496a VZ |
397 | // ---------------------------------------------------------------------------- |
398 | // Window search | |
399 | // ---------------------------------------------------------------------------- | |
400 | ||
cb719f2e | 401 | // Returns menu item id or wxNOT_FOUND if none. |
184b5d99 | 402 | WXDLLEXPORT int wxFindMenuItemId(wxFrame *frame, const wxString& menuString, const wxString& itemString); |
c801d85f | 403 | |
57591e0e JS |
404 | // Find the wxWindow at the given point. wxGenericFindWindowAtPoint |
405 | // is always present but may be less reliable than a native version. | |
406 | WXDLLEXPORT wxWindow* wxGenericFindWindowAtPoint(const wxPoint& pt); | |
59a12e90 JS |
407 | WXDLLEXPORT wxWindow* wxFindWindowAtPoint(const wxPoint& pt); |
408 | ||
146ba0fe VZ |
409 | // NB: this function is obsolete, use wxWindow::FindWindowByLabel() instead |
410 | // | |
411 | // Find the window/widget with the given title or label. | |
412 | // Pass a parent to begin the search from, or NULL to look through | |
413 | // all windows. | |
414 | WXDLLEXPORT wxWindow* wxFindWindowByLabel(const wxString& title, wxWindow *parent = (wxWindow *) NULL); | |
415 | ||
416 | // NB: this function is obsolete, use wxWindow::FindWindowByName() instead | |
417 | // | |
418 | // Find window by name, and if that fails, by label. | |
419 | WXDLLEXPORT wxWindow* wxFindWindowByName(const wxString& name, wxWindow *parent = (wxWindow *) NULL); | |
420 | ||
d6b9496a VZ |
421 | // ---------------------------------------------------------------------------- |
422 | // Message/event queue helpers | |
423 | // ---------------------------------------------------------------------------- | |
c801d85f | 424 | |
ead7ce10 | 425 | // Yield to other apps/messages and disable user input |
cb719f2e | 426 | WXDLLEXPORT bool wxSafeYield(wxWindow *win = NULL, bool onlyIfNeeded = false); |
ead7ce10 | 427 | |
95dee651 | 428 | // Enable or disable input to all top level windows |
cb719f2e | 429 | WXDLLEXPORT void wxEnableTopLevelWindows(bool enable = true); |
95dee651 | 430 | |
d6b9496a VZ |
431 | // Check whether this window wants to process messages, e.g. Stop button |
432 | // in long calculations. | |
433 | WXDLLEXPORT bool wxCheckForInterrupt(wxWindow *wnd); | |
434 | ||
435 | // Consume all events until no more left | |
436 | WXDLLEXPORT void wxFlushEvents(); | |
437 | ||
cd6ce4a9 VZ |
438 | // a class which disables all windows (except, may be, thegiven one) in its |
439 | // ctor and enables them back in its dtor | |
440 | class WXDLLEXPORT wxWindowDisabler | |
441 | { | |
442 | public: | |
443 | wxWindowDisabler(wxWindow *winToSkip = (wxWindow *)NULL); | |
444 | ~wxWindowDisabler(); | |
445 | ||
446 | private: | |
447 | wxWindowList *m_winDisabled; | |
c1cb4153 VZ |
448 | |
449 | DECLARE_NO_COPY_CLASS(wxWindowDisabler) | |
cd6ce4a9 VZ |
450 | }; |
451 | ||
d6b9496a VZ |
452 | // ---------------------------------------------------------------------------- |
453 | // Cursors | |
454 | // ---------------------------------------------------------------------------- | |
c801d85f KB |
455 | |
456 | // Set the cursor to the busy cursor for all windows | |
457 | class WXDLLEXPORT wxCursor; | |
16cba29d | 458 | extern WXDLLEXPORT_DATA(wxCursor*) wxHOURGLASS_CURSOR; |
184b5d99 | 459 | WXDLLEXPORT void wxBeginBusyCursor(wxCursor *cursor = wxHOURGLASS_CURSOR); |
e2a6f233 | 460 | |
c801d85f | 461 | // Restore cursor to normal |
afb74891 | 462 | WXDLLEXPORT void wxEndBusyCursor(); |
d6b9496a | 463 | |
cb719f2e | 464 | // true if we're between the above two calls |
afb74891 | 465 | WXDLLEXPORT bool wxIsBusy(); |
c801d85f | 466 | |
e2a6f233 JS |
467 | // Convenience class so we can just create a wxBusyCursor object on the stack |
468 | class WXDLLEXPORT wxBusyCursor | |
469 | { | |
afb74891 VZ |
470 | public: |
471 | wxBusyCursor(wxCursor* cursor = wxHOURGLASS_CURSOR) | |
472 | { wxBeginBusyCursor(cursor); } | |
f6bcfd97 | 473 | ~wxBusyCursor() |
afb74891 | 474 | { wxEndBusyCursor(); } |
e2a6f233 | 475 | |
f6bcfd97 BP |
476 | // FIXME: These two methods are currently only implemented (and needed?) |
477 | // in wxGTK. BusyCursor handling should probably be moved to | |
478 | // common code since the wxGTK and wxMSW implementations are very | |
479 | // similar except for wxMSW using HCURSOR directly instead of | |
480 | // wxCursor.. -- RL. | |
481 | static const wxCursor &GetStoredCursor(); | |
482 | static const wxCursor GetBusyCursor(); | |
483 | }; | |
c801d85f | 484 | |
c801d85f | 485 | |
d6b9496a | 486 | // ---------------------------------------------------------------------------- |
c801d85f | 487 | // Reading and writing resources (eg WIN.INI, .Xdefaults) |
d6b9496a VZ |
488 | // ---------------------------------------------------------------------------- |
489 | ||
47d67540 | 490 | #if wxUSE_RESOURCES |
62448488 JS |
491 | WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, const wxString& value, const wxString& file = wxEmptyString); |
492 | WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, float value, const wxString& file = wxEmptyString); | |
493 | WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, long value, const wxString& file = wxEmptyString); | |
494 | WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, int value, const wxString& file = wxEmptyString); | |
495 | ||
9d2f3c71 | 496 | WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, wxChar **value, const wxString& file = wxEmptyString); |
62448488 JS |
497 | WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, float *value, const wxString& file = wxEmptyString); |
498 | WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, long *value, const wxString& file = wxEmptyString); | |
499 | WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, int *value, const wxString& file = wxEmptyString); | |
47d67540 | 500 | #endif // wxUSE_RESOURCES |
c801d85f | 501 | |
c801d85f KB |
502 | void WXDLLEXPORT wxGetMousePosition( int* x, int* y ); |
503 | ||
504 | // MSW only: get user-defined resource from the .res file. | |
505 | // Returns NULL or newly-allocated memory, so use delete[] to clean up. | |
2049ba38 | 506 | #ifdef __WXMSW__ |
16cba29d | 507 | extern WXDLLEXPORT const wxChar* wxUserResourceStr; |
373658eb | 508 | WXDLLEXPORT wxChar* wxLoadUserResource(const wxString& resourceName, const wxString& resourceType = wxUserResourceStr); |
d6b9496a VZ |
509 | #endif // MSW |
510 | ||
511 | // ---------------------------------------------------------------------------- | |
512 | // Display and colorss (X only) | |
513 | // ---------------------------------------------------------------------------- | |
c801d85f | 514 | |
d111a89a VZ |
515 | #ifdef __WXGTK__ |
516 | void *wxGetDisplay(); | |
517 | #endif | |
518 | ||
c801d85f | 519 | #ifdef __X__ |
968eb2ef MW |
520 | WXDLLIMPEXP_CORE WXDisplay *wxGetDisplay(); |
521 | WXDLLIMPEXP_CORE bool wxSetDisplay(const wxString& display_name); | |
522 | WXDLLIMPEXP_CORE wxString wxGetDisplayName(); | |
d111a89a | 523 | #endif // X or GTK+ |
c801d85f KB |
524 | |
525 | #ifdef __X__ | |
526 | ||
338dd992 JJ |
527 | #ifdef __VMS__ // Xlib.h for VMS is not (yet) compatible with C++ |
528 | // The resulting warnings are switched off here | |
529 | #pragma message disable nosimpint | |
530 | #endif | |
7266b672 | 531 | // #include <X11/Xlib.h> |
338dd992 JJ |
532 | #ifdef __VMS__ |
533 | #pragma message enable nosimpint | |
534 | #endif | |
c801d85f | 535 | |
c801d85f KB |
536 | #endif //__X__ |
537 | ||
e90c1d2a VZ |
538 | #endif // wxUSE_GUI |
539 | ||
886dd7d2 VZ |
540 | // ---------------------------------------------------------------------------- |
541 | // wxYield(): these functions are obsolete, please use wxApp methods instead! | |
542 | // ---------------------------------------------------------------------------- | |
543 | ||
544 | // Yield to other apps/messages | |
bddd7a8d | 545 | WXDLLIMPEXP_BASE bool wxYield(); |
886dd7d2 VZ |
546 | |
547 | // Like wxYield, but fails silently if the yield is recursive. | |
bddd7a8d | 548 | WXDLLIMPEXP_BASE bool wxYieldIfNeeded(); |
886dd7d2 | 549 | |
f6bcfd97 | 550 | // ---------------------------------------------------------------------------- |
77ffb593 | 551 | // Error message functions used by wxWidgets (deprecated, use wxLog) |
f6bcfd97 BP |
552 | // ---------------------------------------------------------------------------- |
553 | ||
73deed44 VZ |
554 | #if WXWIN_COMPATIBILITY_2_2 |
555 | ||
f6bcfd97 BP |
556 | // Format a message on the standard error (UNIX) or the debugging |
557 | // stream (Windows) | |
ec157c8f | 558 | wxDEPRECATED( WXDLLIMPEXP_BASE void wxDebugMsg(const wxChar *fmt ...) ATTRIBUTE_PRINTF_1 ); |
f6bcfd97 BP |
559 | |
560 | // Non-fatal error (continues) | |
16cba29d | 561 | extern WXDLLIMPEXP_DATA_BASE(const wxChar*) wxInternalErrorStr; |
ec157c8f | 562 | wxDEPRECATED( WXDLLIMPEXP_BASE void wxError(const wxString& msg, const wxString& title = wxInternalErrorStr) ); |
f6bcfd97 BP |
563 | |
564 | // Fatal error (exits) | |
16cba29d | 565 | extern WXDLLIMPEXP_DATA_BASE(const wxChar*) wxFatalErrorStr; |
ec157c8f | 566 | wxDEPRECATED( WXDLLIMPEXP_BASE void wxFatalError(const wxString& msg, const wxString& title = wxFatalErrorStr) ); |
f6bcfd97 | 567 | |
73deed44 | 568 | #endif // WXWIN_COMPATIBILITY_2_2 |
f6bcfd97 | 569 | |
c801d85f | 570 | #endif |
34138703 | 571 | // _WX_UTILSH__ |