]> git.saurik.com Git - wxWidgets.git/blame - include/wx/utils.h
documented Set/GetBitmapSelected() (patch 1339028)
[wxWidgets.git] / include / wx / utils.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
55034339 2// Name: wx/utils.h
c801d85f
KB
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
23class WXDLLIMPEXP_BASE wxArrayString;
230c9077 24class WXDLLIMPEXP_BASE wxArrayInt;
c801d85f 25
eadd7bd2
VZ
26// need this for wxGetDiskSpace() as we can't, unfortunately, forward declare
27// wxLongLong
28#include "wx/longlong.h"
29
55034339
WS
30#ifdef __WATCOMC__
31 #include <direct.h>
32#elif defined(__X__)
d6b9496a
VZ
33 #include <dirent.h>
34 #include <unistd.h>
c801d85f
KB
35#endif
36
37#include <stdio.h>
38
d6b9496a
VZ
39// ----------------------------------------------------------------------------
40// Forward declaration
41// ----------------------------------------------------------------------------
42
62a9d04c
VS
43class WXDLLIMPEXP_CORE wxProcess;
44class WXDLLIMPEXP_CORE wxFrame;
45class WXDLLIMPEXP_CORE wxWindow;
46class WXDLLIMPEXP_CORE wxWindowList;
47class WXDLLIMPEXP_CORE wxPoint;
d6b9496a 48
d6b9496a
VZ
49// ----------------------------------------------------------------------------
50// Macros
51// ----------------------------------------------------------------------------
c801d85f 52
d6b9496a
VZ
53#define wxMax(a,b) (((a) > (b)) ? (a) : (b))
54#define wxMin(a,b) (((a) < (b)) ? (a) : (b))
c801d85f 55
9ad34f61
VZ
56// wxGetFreeMemory can return huge amount of memory on 32-bit platforms as well
57// so to always use long long for its result type on all platforms which
58// support it
59#if wxUSE_LONGLONG
60 typedef wxLongLong wxMemorySize;
9d8aca48 61#else
9ad34f61 62 typedef long wxMemorySize;
9d8aca48
WS
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 71wxDEPRECATED( 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__)
84WXDLLIMPEXP_CORE void wxBell();
85#else
bddd7a8d 86WXDLLIMPEXP_BASE void wxBell();
968eb2ef 87#endif
d6b9496a 88
bdc72a22 89// Get OS description as a user-readable string
bddd7a8d 90WXDLLIMPEXP_BASE wxString wxGetOsDescription();
bdc72a22 91
d6b9496a 92// Get OS version
bddd7a8d 93WXDLLIMPEXP_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 97WXDLLIMPEXP_BASE wxString wxNow();
d6b9496a 98
77ffb593 99// Return path where wxWidgets is installed (mostly useful in Unices)
bddd7a8d 100WXDLLIMPEXP_BASE const wxChar *wxGetInstallPrefix();
2c18f21d 101// Return path to wxWin data (/usr/share/wx/%{version}) (Unices)
bddd7a8d 102WXDLLIMPEXP_BASE wxString wxGetDataDir();
134677bd 103
230c9077
JS
104/*
105 * Class to make it easier to specify platform-dependent values
106 *
107 * Examples:
4bfec179
JS
108 * long val = wxPlatform::If(wxMac, 1).ElseIf(wxGTK, 2).ElseIf(stPDA, 5).Else(3);
109 * wxString strVal = wxPlatform::If(wxMac, wxT("Mac")).ElseIf(wxMSW, wxT("MSW")).Else(wxT("Other"));
230c9077
JS
110 *
111 * A custom platform symbol:
112 *
113 * #define stPDA 100
114 * #ifdef __WXWINCE__
115 * wxPlatform::AddPlatform(stPDA);
116 * #endif
117 *
4bfec179 118 * long windowStyle = wxCAPTION | (long) wxPlatform::IfNot(stPDA, wxRESIZE_BORDER);
230c9077
JS
119 *
120 */
121
122class WXDLLIMPEXP_BASE wxPlatform
123{
124public:
4bfec179
JS
125 wxPlatform() { Init(); }
126 wxPlatform(const wxPlatform& platform) { Copy(platform); }
127 void operator = (const wxPlatform& platform) { Copy(platform); }
128 void Copy(const wxPlatform& platform);
129 void Init() { m_longValue = 0; m_doubleValue = 0.0; }
230c9077
JS
130
131 // Specify an optional default value
132 wxPlatform(long defValue) { m_longValue = defValue; m_doubleValue = 0.0; }
133 wxPlatform(const wxString& defValue) { m_stringValue = defValue; m_longValue = 0; m_doubleValue = 0.0; }
134 wxPlatform(double defValue) { m_longValue = 0; m_doubleValue = defValue; }
135
4bfec179
JS
136 static wxPlatform If(int platform, long value);
137 static wxPlatform IfNot(int platform, long value);
138 wxPlatform& ElseIf(int platform, long value);
139 wxPlatform& ElseIfNot(int platform, long value);
140 wxPlatform& Else(long value);
141
142 static wxPlatform If(int platform, int value);
143 static wxPlatform IfNot(int platform, int value) { return IfNot(platform, (long)value); }
144 wxPlatform& ElseIf(int platform, int value) { return ElseIf(platform, (long) value); }
145 wxPlatform& ElseIfNot(int platform, int value) { return ElseIfNot(platform, (long) value); }
146 wxPlatform& Else(int value) { return Else((long) value); }
147
148 static wxPlatform If(int platform, double value);
149 static wxPlatform IfNot(int platform, double value);
150 wxPlatform& ElseIf(int platform, double value);
151 wxPlatform& ElseIfNot(int platform, double value);
152 wxPlatform& Else(double value);
153
154 static wxPlatform If(int platform, const wxString& value);
155 static wxPlatform IfNot(int platform, const wxString& value);
156 wxPlatform& ElseIf(int platform, const wxString& value);
157 wxPlatform& ElseIfNot(int platform, const wxString& value);
158 wxPlatform& Else(const wxString& value);
230c9077
JS
159
160 long GetInteger() const { return m_longValue; }
161 const wxString& GetString() const { return m_stringValue; }
162 double GetDouble() const { return m_doubleValue; }
163
164 operator int() const { return (int) GetInteger(); }
165 operator long() const { return GetInteger(); }
166 operator double() const { return GetDouble(); }
167 operator const wxString() const { return GetString(); }
168 operator const wxChar*() const { return (const wxChar*) GetString(); }
169
170 static void AddPlatform(int platform);
4bfec179 171 static bool Is(int platform);
230c9077
JS
172 static void ClearPlatforms();
173
174private:
175 long m_longValue;
176 double m_doubleValue;
177 wxString m_stringValue;
178 static wxArrayInt* sm_customPlatforms;
179};
180
181/// Function for testing current platform
4bfec179 182inline bool wxPlatformIs(int platform) { return wxPlatform::Is(platform); }
134677bd 183
e90c1d2a 184#if wxUSE_GUI
97698dc4
RD
185
186// Get the state of a key (true if pressed, false if not)
187// This is generally most useful getting the state of
188// the modifier or toggle keys.
1751226c 189WXDLLEXPORT bool wxGetKeyState(wxKeyCode key);
97698dc4 190
14dfb3d2 191
63cc5d9d
RR
192// Don't synthesize KeyUp events holding down a key and producing
193// KeyDown events with autorepeat. On by default and always on
194// in wxMSW.
f0492f7d
RR
195WXDLLEXPORT bool wxSetDetectableAutoRepeat( bool flag );
196
7dd40b6f
RD
197
198// wxMouseState is used to hold information about button and modifier state
199// and is what is returned from wxGetMouseState.
200class WXDLLEXPORT wxMouseState
201{
202public:
203 wxMouseState()
204 : m_x(0), m_y(0),
205 m_leftDown(false), m_middleDown(false), m_rightDown(false),
206 m_controlDown(false), m_shiftDown(false), m_altDown(false),
207 m_metaDown(false)
208 {}
209
210 wxCoord GetX() { return m_x; }
211 wxCoord GetY() { return m_y; }
212
213 bool LeftDown() { return m_leftDown; }
214 bool MiddleDown() { return m_middleDown; }
215 bool RightDown() { return m_rightDown; }
216
217 bool ControlDown() { return m_controlDown; }
218 bool ShiftDown() { return m_shiftDown; }
219 bool AltDown() { return m_altDown; }
220 bool MetaDown() { return m_metaDown; }
221 bool CmdDown()
222 {
223#if defined(__WXMAC__) || defined(__WXCOCOA__)
224 return MetaDown();
225#else
226 return ControlDown();
227#endif
228 }
229
230 void SetX(wxCoord x) { m_x = x; }
231 void SetY(wxCoord y) { m_y = y; }
232
233 void SetLeftDown(bool down) { m_leftDown = down; }
234 void SetMiddleDown(bool down) { m_middleDown = down; }
235 void SetRightDown(bool down) { m_rightDown = down; }
236
237 void SetControlDown(bool down) { m_controlDown = down; }
238 void SetShiftDown(bool down) { m_shiftDown = down; }
239 void SetAltDown(bool down) { m_altDown = down; }
240 void SetMetaDown(bool down) { m_metaDown = down; }
241
242private:
243 wxCoord m_x;
244 wxCoord m_y;
245
246 bool m_leftDown;
247 bool m_middleDown;
248 bool m_rightDown;
249
250 bool m_controlDown;
251 bool m_shiftDown;
252 bool m_altDown;
253 bool m_metaDown;
254};
255
256
257// Returns the current state of the mouse position, buttons and modifers
258WXDLLEXPORT wxMouseState wxGetMouseState();
259
260
d6b9496a
VZ
261// ----------------------------------------------------------------------------
262// Window ID management
263// ----------------------------------------------------------------------------
264
c801d85f 265// Generate a unique ID
afb74891 266WXDLLEXPORT long wxNewId();
c801d85f
KB
267
268// Ensure subsequent IDs don't clash with this one
184b5d99 269WXDLLEXPORT void wxRegisterId(long id);
c801d85f
KB
270
271// Return the current ID
afb74891 272WXDLLEXPORT long wxGetCurrentId();
c801d85f 273
e90c1d2a
VZ
274#endif // wxUSE_GUI
275
d6b9496a
VZ
276// ----------------------------------------------------------------------------
277// Various conversions
278// ----------------------------------------------------------------------------
c801d85f 279
e12c92c2
VZ
280// these functions are deprecated, use wxString methods instead!
281#if WXWIN_COMPATIBILITY_2_4
282
16cba29d
WS
283extern WXDLLIMPEXP_DATA_BASE(const wxChar*) wxFloatToStringStr;
284extern WXDLLIMPEXP_DATA_BASE(const wxChar*) wxDoubleToStringStr;
c801d85f 285
eecb33b0
WS
286wxDEPRECATED( WXDLLIMPEXP_BASE void StringToFloat(const wxChar *s, float *number) );
287wxDEPRECATED( WXDLLIMPEXP_BASE wxChar* FloatToString(float number, const wxChar *fmt = wxFloatToStringStr) );
288wxDEPRECATED( WXDLLIMPEXP_BASE void StringToDouble(const wxChar *s, double *number) );
289wxDEPRECATED( WXDLLIMPEXP_BASE wxChar* DoubleToString(double number, const wxChar *fmt = wxDoubleToStringStr) );
290wxDEPRECATED( WXDLLIMPEXP_BASE void StringToInt(const wxChar *s, int *number) );
291wxDEPRECATED( WXDLLIMPEXP_BASE void StringToLong(const wxChar *s, long *number) );
292wxDEPRECATED( WXDLLIMPEXP_BASE wxChar* IntToString(int number) );
293wxDEPRECATED( WXDLLIMPEXP_BASE wxChar* LongToString(long number) );
c801d85f 294
e12c92c2
VZ
295#endif // WXWIN_COMPATIBILITY_2_4
296
c801d85f 297// Convert 2-digit hex number to decimal
bddd7a8d 298WXDLLIMPEXP_BASE int wxHexToDec(const wxString& buf);
c801d85f
KB
299
300// Convert decimal integer to 2-character hex string
bddd7a8d
VZ
301WXDLLIMPEXP_BASE void wxDecToHex(int dec, wxChar *buf);
302WXDLLIMPEXP_BASE wxString wxDecToHex(int dec);
c801d85f 303
d6b9496a
VZ
304// ----------------------------------------------------------------------------
305// Process management
306// ----------------------------------------------------------------------------
307
e0f6b731 308// NB: for backwards compatibility reasons the values of wxEXEC_[A]SYNC *must*
fbf456aa
VZ
309// be 0 and 1, don't change!
310
311enum
312{
e1082c9f
VZ
313 // execute the process asynchronously
314 wxEXEC_ASYNC = 0,
315
316 // execute it synchronously, i.e. wait until it finishes
317 wxEXEC_SYNC = 1,
318
319 // under Windows, don't hide the child even if it's IO is redirected (this
320 // is done by default)
321 wxEXEC_NOHIDE = 2,
322
e0f6b731
JS
323 // under Unix, if the process is the group leader then passing wxKILL_CHILDREN to wxKill
324 // kills all children as well as pid
f38f6899
VZ
325 wxEXEC_MAKE_GROUP_LEADER = 4,
326
327 // by default synchronous execution disables all program windows to avoid
328 // that the user interacts with the program while the child process is
329 // running, you can use this flag to prevent this from happening
330 wxEXEC_NODISABLE = 8
fbf456aa
VZ
331};
332
333// Execute another program.
334//
335// If flags contain wxEXEC_SYNC, return -1 on failure and the exit code of the
336// process if everything was ok. Otherwise (i.e. if wxEXEC_ASYNC), return 0 on
337// failure and the PID of the launched process if ok.
bddd7a8d 338WXDLLIMPEXP_BASE long wxExecute(wxChar **argv, int flags = wxEXEC_ASYNC,
c67daf87 339 wxProcess *process = (wxProcess *) NULL);
bddd7a8d 340WXDLLIMPEXP_BASE long wxExecute(const wxString& command, int flags = wxEXEC_ASYNC,
c67daf87 341 wxProcess *process = (wxProcess *) NULL);
c801d85f 342
fbf456aa
VZ
343// execute the command capturing its output into an array line by line, this is
344// always synchronous
bddd7a8d 345WXDLLIMPEXP_BASE long wxExecute(const wxString& command,
4d172154
VZ
346 wxArrayString& output,
347 int flags = 0);
f6bcfd97 348
fbf456aa 349// also capture stderr (also synchronous)
bddd7a8d 350WXDLLIMPEXP_BASE long wxExecute(const wxString& command,
4d172154
VZ
351 wxArrayString& output,
352 wxArrayString& error,
353 int flags = 0);
cd6ce4a9 354
5ccb95f6 355#if defined(__WXMSW__) && wxUSE_IPC
42d0df00
VZ
356// ask a DDE server to execute the DDE request with given parameters
357WXDLLIMPEXP_BASE bool wxExecuteDDE(const wxString& ddeServer,
358 const wxString& ddeTopic,
359 const wxString& ddeCommand);
5ccb95f6 360#endif // __WXMSW__ && wxUSE_IPC
42d0df00 361
d6b9496a
VZ
362enum wxSignal
363{
364 wxSIGNONE = 0, // verify if the process exists under Unix
365 wxSIGHUP,
366 wxSIGINT,
367 wxSIGQUIT,
368 wxSIGILL,
369 wxSIGTRAP,
370 wxSIGABRT,
371 wxSIGIOT = wxSIGABRT, // another name
372 wxSIGEMT,
373 wxSIGFPE,
374 wxSIGKILL,
375 wxSIGBUS,
376 wxSIGSEGV,
377 wxSIGSYS,
378 wxSIGPIPE,
379 wxSIGALRM,
380 wxSIGTERM
381
382 // further signals are different in meaning between different Unix systems
383};
c801d85f 384
50567b69
VZ
385enum wxKillError
386{
387 wxKILL_OK, // no error
388 wxKILL_BAD_SIGNAL, // no such signal
389 wxKILL_ACCESS_DENIED, // permission denied
390 wxKILL_NO_PROCESS, // no such process
391 wxKILL_ERROR // another, unspecified error
392};
393
e0f6b731
JS
394enum wxKillFlags
395{
396 wxKILL_NOCHILDREN = 0, // don't kill children
397 wxKILL_CHILDREN = 1 // kill children
398};
399
f6ba47d9
VZ
400enum wxShutdownFlags
401{
402 wxSHUTDOWN_POWEROFF, // power off the computer
403 wxSHUTDOWN_REBOOT // shutdown and reboot
404};
405
c1cb4153 406// Shutdown or reboot the PC
bddd7a8d 407WXDLLIMPEXP_BASE bool wxShutdown(wxShutdownFlags wFlags);
f6ba47d9 408
8ea92b4d
WS
409enum wxPowerType
410{
411 wxPOWER_SOCKET,
412 wxPOWER_BATTERY,
413 wxPOWER_UNKNOWN
414};
415
416WXDLLIMPEXP_BASE wxPowerType wxGetPowerType();
417
418enum wxBatteryState
419{
420 wxBATTERY_NORMAL_STATE, // system is fully usable
421 wxBATTERY_LOW_STATE, // start to worry
422 wxBATTERY_CRITICAL_STATE, // save quickly
423 wxBATTERY_SHUTDOWN_STATE, // too late
424 wxBATTERY_UNKNOWN_STATE
425};
426
427WXDLLIMPEXP_BASE wxBatteryState wxGetBatteryState();
428
50567b69
VZ
429// send the given signal to the process (only NONE and KILL are supported under
430// Windows, all others mean TERM), return 0 if ok and -1 on error
431//
432// return detailed error in rc if not NULL
bddd7a8d 433WXDLLIMPEXP_BASE int wxKill(long pid,
50567b69 434 wxSignal sig = wxSIGTERM,
e0f6b731
JS
435 wxKillError *rc = NULL,
436 int flags = wxKILL_NOCHILDREN);
c801d85f 437
2c8e4738 438// Execute a command in an interactive shell window (always synchronously)
c801d85f 439// If no command then just the shell
bddd7a8d 440WXDLLIMPEXP_BASE bool wxShell(const wxString& command = wxEmptyString);
c801d85f 441
2c8e4738
VZ
442// As wxShell(), but must give a (non interactive) command and its output will
443// be returned in output array
bddd7a8d 444WXDLLIMPEXP_BASE bool wxShell(const wxString& command, wxArrayString& output);
2c8e4738 445
b568d04f 446// Sleep for nSecs seconds
bddd7a8d 447WXDLLIMPEXP_BASE void wxSleep(int nSecs);
c801d85f 448
afb74891 449// Sleep for a given amount of milliseconds
08873d36
VZ
450WXDLLIMPEXP_BASE void wxMilliSleep(unsigned long milliseconds);
451
452// Sleep for a given amount of microseconds
453WXDLLIMPEXP_BASE void wxMicroSleep(unsigned long microseconds);
454
455// Sleep for a given amount of milliseconds (old, bad name), use wxMilliSleep
456wxDEPRECATED( WXDLLIMPEXP_BASE void wxUsleep(unsigned long milliseconds) );
afb74891 457
c1cb4153 458// Get the process id of the current process
bddd7a8d 459WXDLLIMPEXP_BASE unsigned long wxGetProcessId();
c1cb4153 460
c801d85f 461// Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX)
9d8aca48 462WXDLLIMPEXP_BASE wxMemorySize wxGetFreeMemory();
c801d85f 463
a76d8a29
VZ
464#if wxUSE_ON_FATAL_EXCEPTION
465
a37a5a73 466// should wxApp::OnFatalException() be called?
cb719f2e 467WXDLLIMPEXP_BASE bool wxHandleFatalExceptions(bool doit = true);
a37a5a73 468
a76d8a29
VZ
469#endif // wxUSE_ON_FATAL_EXCEPTION
470
42d0df00
VZ
471// flags for wxLaunchDefaultBrowser
472enum
473{
474 wxBROWSER_NEW_WINDOW = 1
475};
476
498a1eeb 477// Launch url in the user's default internet browser
42d0df00 478WXDLLIMPEXP_BASE bool wxLaunchDefaultBrowser(const wxString& url, int flags = 0);
498a1eeb 479
8fd0d89b
VZ
480// ----------------------------------------------------------------------------
481// Environment variables
482// ----------------------------------------------------------------------------
483
cb719f2e 484// returns true if variable exists (value may be NULL if you just want to check
308978f6 485// for this)
bddd7a8d 486WXDLLIMPEXP_BASE bool wxGetEnv(const wxString& var, wxString *value);
8fd0d89b 487
cb719f2e 488// set the env var name to the given value, return true on success
bddd7a8d 489WXDLLIMPEXP_BASE bool wxSetEnv(const wxString& var, const wxChar *value);
8fd0d89b
VZ
490
491// remove the env var from environment
492inline bool wxUnsetEnv(const wxString& var) { return wxSetEnv(var, NULL); }
493
d6b9496a
VZ
494// ----------------------------------------------------------------------------
495// Network and username functions.
496// ----------------------------------------------------------------------------
c801d85f 497
d6b9496a 498// NB: "char *" functions are deprecated, use wxString ones!
c801d85f
KB
499
500// Get eMail address
bddd7a8d
VZ
501WXDLLIMPEXP_BASE bool wxGetEmailAddress(wxChar *buf, int maxSize);
502WXDLLIMPEXP_BASE wxString wxGetEmailAddress();
c801d85f
KB
503
504// Get hostname.
bddd7a8d
VZ
505WXDLLIMPEXP_BASE bool wxGetHostName(wxChar *buf, int maxSize);
506WXDLLIMPEXP_BASE wxString wxGetHostName();
d6b9496a
VZ
507
508// Get FQDN
bddd7a8d
VZ
509WXDLLIMPEXP_BASE wxString wxGetFullHostName();
510WXDLLIMPEXP_BASE bool wxGetFullHostName(wxChar *buf, int maxSize);
c801d85f 511
d6b9496a 512// Get user ID e.g. jacs (this is known as login name under Unix)
bddd7a8d
VZ
513WXDLLIMPEXP_BASE bool wxGetUserId(wxChar *buf, int maxSize);
514WXDLLIMPEXP_BASE wxString wxGetUserId();
c801d85f
KB
515
516// Get user name e.g. Julian Smart
bddd7a8d
VZ
517WXDLLIMPEXP_BASE bool wxGetUserName(wxChar *buf, int maxSize);
518WXDLLIMPEXP_BASE wxString wxGetUserName();
d6b9496a
VZ
519
520// Get current Home dir and copy to dest (returns pstr->c_str())
bddd7a8d
VZ
521WXDLLIMPEXP_BASE wxString wxGetHomeDir();
522WXDLLIMPEXP_BASE const wxChar* wxGetHomeDir(wxString *pstr);
d6b9496a
VZ
523
524// Get the user's home dir (caller must copy --- volatile)
525// returns NULL is no HOME dir is known
61ef57fc 526#if defined(__UNIX__) && wxUSE_UNICODE
bddd7a8d 527WXDLLIMPEXP_BASE const wxMB2WXbuf wxGetUserHome(const wxString& user = wxEmptyString);
61ef57fc 528#else
bddd7a8d 529WXDLLIMPEXP_BASE wxChar* wxGetUserHome(const wxString& user = wxEmptyString);
61ef57fc 530#endif
d6b9496a 531
7ba7c4e6
VZ
532#if wxUSE_LONGLONG
533 typedef wxLongLong wxDiskspaceSize_t;
534#else
535 typedef long wxDiskspaceSize_t;
536#endif
537
eadd7bd2 538// get number of total/free bytes on the disk where path belongs
bddd7a8d 539WXDLLIMPEXP_BASE bool wxGetDiskSpace(const wxString& path,
7ba7c4e6
VZ
540 wxDiskspaceSize_t *pTotal = NULL,
541 wxDiskspaceSize_t *pFree = NULL);
eadd7bd2 542
e90c1d2a
VZ
543#if wxUSE_GUI // GUI only things from now on
544
d6b9496a 545// ----------------------------------------------------------------------------
974e8d94 546// Menu accelerators related things
d6b9496a 547// ----------------------------------------------------------------------------
c801d85f 548
bc87fd68 549WXDLLEXPORT wxChar* wxStripMenuCodes(const wxChar *in, wxChar *out = (wxChar *) NULL);
184b5d99 550WXDLLEXPORT wxString wxStripMenuCodes(const wxString& str);
c801d85f 551
974e8d94
VZ
552#if wxUSE_ACCEL
553class WXDLLEXPORT wxAcceleratorEntry;
554WXDLLEXPORT wxAcceleratorEntry *wxGetAccelFromString(const wxString& label);
555#endif // wxUSE_ACCEL
556
d6b9496a
VZ
557// ----------------------------------------------------------------------------
558// Window search
559// ----------------------------------------------------------------------------
560
cb719f2e 561// Returns menu item id or wxNOT_FOUND if none.
184b5d99 562WXDLLEXPORT int wxFindMenuItemId(wxFrame *frame, const wxString& menuString, const wxString& itemString);
c801d85f 563
57591e0e
JS
564// Find the wxWindow at the given point. wxGenericFindWindowAtPoint
565// is always present but may be less reliable than a native version.
566WXDLLEXPORT wxWindow* wxGenericFindWindowAtPoint(const wxPoint& pt);
59a12e90
JS
567WXDLLEXPORT wxWindow* wxFindWindowAtPoint(const wxPoint& pt);
568
146ba0fe
VZ
569// NB: this function is obsolete, use wxWindow::FindWindowByLabel() instead
570//
571// Find the window/widget with the given title or label.
572// Pass a parent to begin the search from, or NULL to look through
573// all windows.
574WXDLLEXPORT wxWindow* wxFindWindowByLabel(const wxString& title, wxWindow *parent = (wxWindow *) NULL);
575
576// NB: this function is obsolete, use wxWindow::FindWindowByName() instead
577//
578// Find window by name, and if that fails, by label.
579WXDLLEXPORT wxWindow* wxFindWindowByName(const wxString& name, wxWindow *parent = (wxWindow *) NULL);
580
d6b9496a
VZ
581// ----------------------------------------------------------------------------
582// Message/event queue helpers
583// ----------------------------------------------------------------------------
c801d85f 584
ead7ce10 585// Yield to other apps/messages and disable user input
cb719f2e 586WXDLLEXPORT bool wxSafeYield(wxWindow *win = NULL, bool onlyIfNeeded = false);
ead7ce10 587
95dee651 588// Enable or disable input to all top level windows
cb719f2e 589WXDLLEXPORT void wxEnableTopLevelWindows(bool enable = true);
95dee651 590
d6b9496a
VZ
591// Check whether this window wants to process messages, e.g. Stop button
592// in long calculations.
593WXDLLEXPORT bool wxCheckForInterrupt(wxWindow *wnd);
594
595// Consume all events until no more left
596WXDLLEXPORT void wxFlushEvents();
597
cd6ce4a9
VZ
598// a class which disables all windows (except, may be, thegiven one) in its
599// ctor and enables them back in its dtor
600class WXDLLEXPORT wxWindowDisabler
601{
602public:
603 wxWindowDisabler(wxWindow *winToSkip = (wxWindow *)NULL);
604 ~wxWindowDisabler();
605
606private:
607 wxWindowList *m_winDisabled;
c1cb4153
VZ
608
609 DECLARE_NO_COPY_CLASS(wxWindowDisabler)
cd6ce4a9
VZ
610};
611
d6b9496a
VZ
612// ----------------------------------------------------------------------------
613// Cursors
614// ----------------------------------------------------------------------------
c801d85f
KB
615
616// Set the cursor to the busy cursor for all windows
617class WXDLLEXPORT wxCursor;
16cba29d 618extern WXDLLEXPORT_DATA(wxCursor*) wxHOURGLASS_CURSOR;
184b5d99 619WXDLLEXPORT void wxBeginBusyCursor(wxCursor *cursor = wxHOURGLASS_CURSOR);
e2a6f233 620
c801d85f 621// Restore cursor to normal
afb74891 622WXDLLEXPORT void wxEndBusyCursor();
d6b9496a 623
cb719f2e 624// true if we're between the above two calls
afb74891 625WXDLLEXPORT bool wxIsBusy();
c801d85f 626
e2a6f233
JS
627// Convenience class so we can just create a wxBusyCursor object on the stack
628class WXDLLEXPORT wxBusyCursor
629{
afb74891
VZ
630public:
631 wxBusyCursor(wxCursor* cursor = wxHOURGLASS_CURSOR)
632 { wxBeginBusyCursor(cursor); }
f6bcfd97 633 ~wxBusyCursor()
afb74891 634 { wxEndBusyCursor(); }
e2a6f233 635
f6bcfd97
BP
636 // FIXME: These two methods are currently only implemented (and needed?)
637 // in wxGTK. BusyCursor handling should probably be moved to
638 // common code since the wxGTK and wxMSW implementations are very
639 // similar except for wxMSW using HCURSOR directly instead of
640 // wxCursor.. -- RL.
641 static const wxCursor &GetStoredCursor();
642 static const wxCursor GetBusyCursor();
643};
c801d85f 644
c801d85f 645
d6b9496a 646// ----------------------------------------------------------------------------
c801d85f 647// Reading and writing resources (eg WIN.INI, .Xdefaults)
d6b9496a
VZ
648// ----------------------------------------------------------------------------
649
47d67540 650#if wxUSE_RESOURCES
62448488
JS
651WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, const wxString& value, const wxString& file = wxEmptyString);
652WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, float value, const wxString& file = wxEmptyString);
653WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, long value, const wxString& file = wxEmptyString);
654WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, int value, const wxString& file = wxEmptyString);
655
9d2f3c71 656WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, wxChar **value, const wxString& file = wxEmptyString);
62448488
JS
657WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, float *value, const wxString& file = wxEmptyString);
658WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, long *value, const wxString& file = wxEmptyString);
659WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, int *value, const wxString& file = wxEmptyString);
47d67540 660#endif // wxUSE_RESOURCES
c801d85f 661
c801d85f
KB
662void WXDLLEXPORT wxGetMousePosition( int* x, int* y );
663
664// MSW only: get user-defined resource from the .res file.
665// Returns NULL or newly-allocated memory, so use delete[] to clean up.
2049ba38 666#ifdef __WXMSW__
16cba29d 667 extern WXDLLEXPORT const wxChar* wxUserResourceStr;
373658eb 668 WXDLLEXPORT wxChar* wxLoadUserResource(const wxString& resourceName, const wxString& resourceType = wxUserResourceStr);
d6b9496a
VZ
669#endif // MSW
670
671// ----------------------------------------------------------------------------
672// Display and colorss (X only)
673// ----------------------------------------------------------------------------
c801d85f 674
d111a89a
VZ
675#ifdef __WXGTK__
676 void *wxGetDisplay();
677#endif
678
c801d85f 679#ifdef __X__
968eb2ef
MW
680 WXDLLIMPEXP_CORE WXDisplay *wxGetDisplay();
681 WXDLLIMPEXP_CORE bool wxSetDisplay(const wxString& display_name);
682 WXDLLIMPEXP_CORE wxString wxGetDisplayName();
d111a89a 683#endif // X or GTK+
c801d85f
KB
684
685#ifdef __X__
686
338dd992
JJ
687#ifdef __VMS__ // Xlib.h for VMS is not (yet) compatible with C++
688 // The resulting warnings are switched off here
689#pragma message disable nosimpint
690#endif
7266b672 691// #include <X11/Xlib.h>
338dd992
JJ
692#ifdef __VMS__
693#pragma message enable nosimpint
694#endif
c801d85f 695
c801d85f
KB
696#endif //__X__
697
e90c1d2a
VZ
698#endif // wxUSE_GUI
699
886dd7d2
VZ
700// ----------------------------------------------------------------------------
701// wxYield(): these functions are obsolete, please use wxApp methods instead!
702// ----------------------------------------------------------------------------
703
704// Yield to other apps/messages
bddd7a8d 705WXDLLIMPEXP_BASE bool wxYield();
886dd7d2
VZ
706
707// Like wxYield, but fails silently if the yield is recursive.
bddd7a8d 708WXDLLIMPEXP_BASE bool wxYieldIfNeeded();
886dd7d2 709
f6bcfd97 710// ----------------------------------------------------------------------------
77ffb593 711// Error message functions used by wxWidgets (deprecated, use wxLog)
f6bcfd97
BP
712// ----------------------------------------------------------------------------
713
c801d85f 714#endif
34138703 715 // _WX_UTILSH__