]> git.saurik.com Git - wxWidgets.git/blame - include/wx/utils.h
Treat wxToolbook symmetrically with others in the notebook sample.
[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
162e998c
PC
12#ifndef _WX_UTILS_H_
13#define _WX_UTILS_H_
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"
0e097789 22
f516d986
VZ
23#if wxUSE_GUI
24 #include "wx/gdicmn.h"
0e097789 25 #include "wx/mousestate.h"
f516d986 26#endif
2da2f941 27
b5dbe15d
VS
28class WXDLLIMPEXP_FWD_BASE wxArrayString;
29class WXDLLIMPEXP_FWD_BASE wxArrayInt;
c801d85f 30
eadd7bd2
VZ
31// need this for wxGetDiskSpace() as we can't, unfortunately, forward declare
32// wxLongLong
33#include "wx/longlong.h"
34
23790a2a 35// needed for wxOperatingSystemId, wxLinuxDistributionInfo
8bb6b2c0
VZ
36#include "wx/platinfo.h"
37
55034339
WS
38#ifdef __WATCOMC__
39 #include <direct.h>
40#elif defined(__X__)
d6b9496a
VZ
41 #include <dirent.h>
42 #include <unistd.h>
c801d85f
KB
43#endif
44
45#include <stdio.h>
46
d6b9496a
VZ
47// ----------------------------------------------------------------------------
48// Forward declaration
49// ----------------------------------------------------------------------------
50
4f7d425f 51class WXDLLIMPEXP_FWD_BASE wxProcess;
b5dbe15d
VS
52class WXDLLIMPEXP_FWD_CORE wxFrame;
53class WXDLLIMPEXP_FWD_CORE wxWindow;
54class WXDLLIMPEXP_FWD_CORE wxWindowList;
d6b9496a 55
d6b9496a
VZ
56// ----------------------------------------------------------------------------
57// Macros
58// ----------------------------------------------------------------------------
c801d85f 59
d6b9496a
VZ
60#define wxMax(a,b) (((a) > (b)) ? (a) : (b))
61#define wxMin(a,b) (((a) < (b)) ? (a) : (b))
e8ee8f27 62#define wxClip(a,b,c) (((a) < (b)) ? (b) : (((a) > (c)) ? (c) : (a)))
c801d85f 63
9ad34f61
VZ
64// wxGetFreeMemory can return huge amount of memory on 32-bit platforms as well
65// so to always use long long for its result type on all platforms which
66// support it
67#if wxUSE_LONGLONG
68 typedef wxLongLong wxMemorySize;
9d8aca48 69#else
9ad34f61 70 typedef long wxMemorySize;
9d8aca48
WS
71#endif
72
d6b9496a
VZ
73// ----------------------------------------------------------------------------
74// String functions (deprecated, use wxString)
75// ----------------------------------------------------------------------------
76
51810d4d 77#ifdef WXWIN_COMPATIBILITY_2_8
d6b9496a 78// A shorter way of using strcmp
51810d4d
VZ
79wxDEPRECATED_INLINE(inline bool wxStringEq(const char *s1, const char *s2),
80 return wxCRT_StrcmpA(s1, s2) == 0; )
81
82#if wxUSE_UNICODE
83wxDEPRECATED_INLINE(inline bool wxStringEq(const wchar_t *s1, const wchar_t *s2),
84 return wxCRT_StrcmpW(s1, s2) == 0; )
85#endif // wxUSE_UNICODE
86
87#endif // WXWIN_COMPATIBILITY_2_8
d6b9496a
VZ
88
89// ----------------------------------------------------------------------------
90// Miscellaneous functions
91// ----------------------------------------------------------------------------
92
93// Sound the bell
968eb2ef
MW
94#if !defined __EMX__ && \
95 (defined __WXMOTIF__ || defined __WXGTK__ || defined __WXX11__)
96WXDLLIMPEXP_CORE void wxBell();
97#else
bddd7a8d 98WXDLLIMPEXP_BASE void wxBell();
968eb2ef 99#endif
d6b9496a 100
8cf304f8
VZ
101#if wxUSE_MSGDLG
102// Show wxWidgets information
103WXDLLIMPEXP_CORE void wxInfoMessageBox(wxWindow* parent);
104#endif // wxUSE_MSGDLG
105
bdc72a22 106// Get OS description as a user-readable string
bddd7a8d 107WXDLLIMPEXP_BASE wxString wxGetOsDescription();
bdc72a22 108
d6b9496a 109// Get OS version
d3b9f782
VZ
110WXDLLIMPEXP_BASE wxOperatingSystemId wxGetOsVersion(int *majorVsn = NULL,
111 int *minorVsn = NULL);
8bb6b2c0
VZ
112
113// Get platform endianness
114WXDLLIMPEXP_BASE bool wxIsPlatformLittleEndian();
115
116// Get platform architecture
117WXDLLIMPEXP_BASE bool wxIsPlatform64Bit();
d6b9496a 118
23790a2a
FM
119#ifdef __LINUX__
120// Get linux-distro informations
121WXDLLIMPEXP_BASE wxLinuxDistributionInfo wxGetLinuxDistributionInfo();
122#endif
123
d6b9496a 124// Return a string with the current date/time
bddd7a8d 125WXDLLIMPEXP_BASE wxString wxNow();
d6b9496a 126
77ffb593 127// Return path where wxWidgets is installed (mostly useful in Unices)
bddd7a8d 128WXDLLIMPEXP_BASE const wxChar *wxGetInstallPrefix();
2c18f21d 129// Return path to wxWin data (/usr/share/wx/%{version}) (Unices)
bddd7a8d 130WXDLLIMPEXP_BASE wxString wxGetDataDir();
134677bd 131
8d4ff849
FM
132#if wxUSE_GUI
133
134// Get the state of a key (true if pressed, false if not)
135// This is generally most useful getting the state of
136// the modifier or toggle keys.
137WXDLLIMPEXP_CORE bool wxGetKeyState(wxKeyCode key);
138
139// Don't synthesize KeyUp events holding down a key and producing
140// KeyDown events with autorepeat. On by default and always on
141// in wxMSW.
142WXDLLIMPEXP_CORE bool wxSetDetectableAutoRepeat( bool flag );
143
144// Returns the current state of the mouse position, buttons and modifers
145WXDLLIMPEXP_CORE wxMouseState wxGetMouseState();
146
147#endif // wxUSE_GUI
148
149// ----------------------------------------------------------------------------
150// wxPlatform
151// ----------------------------------------------------------------------------
152
230c9077
JS
153/*
154 * Class to make it easier to specify platform-dependent values
155 *
156 * Examples:
4bfec179
JS
157 * long val = wxPlatform::If(wxMac, 1).ElseIf(wxGTK, 2).ElseIf(stPDA, 5).Else(3);
158 * wxString strVal = wxPlatform::If(wxMac, wxT("Mac")).ElseIf(wxMSW, wxT("MSW")).Else(wxT("Other"));
230c9077
JS
159 *
160 * A custom platform symbol:
161 *
162 * #define stPDA 100
163 * #ifdef __WXWINCE__
164 * wxPlatform::AddPlatform(stPDA);
165 * #endif
166 *
4bfec179 167 * long windowStyle = wxCAPTION | (long) wxPlatform::IfNot(stPDA, wxRESIZE_BORDER);
230c9077
JS
168 *
169 */
170
171class WXDLLIMPEXP_BASE wxPlatform
172{
173public:
4bfec179
JS
174 wxPlatform() { Init(); }
175 wxPlatform(const wxPlatform& platform) { Copy(platform); }
162e998c 176 void operator = (const wxPlatform& platform) { if (&platform != this) Copy(platform); }
4bfec179 177 void Copy(const wxPlatform& platform);
230c9077
JS
178
179 // Specify an optional default value
25a9f291
WS
180 wxPlatform(int defValue) { Init(); m_longValue = (long)defValue; }
181 wxPlatform(long defValue) { Init(); m_longValue = defValue; }
182 wxPlatform(const wxString& defValue) { Init(); m_stringValue = defValue; }
183 wxPlatform(double defValue) { Init(); m_doubleValue = defValue; }
230c9077 184
4bfec179
JS
185 static wxPlatform If(int platform, long value);
186 static wxPlatform IfNot(int platform, long value);
187 wxPlatform& ElseIf(int platform, long value);
188 wxPlatform& ElseIfNot(int platform, long value);
189 wxPlatform& Else(long value);
190
25a9f291 191 static wxPlatform If(int platform, int value) { return If(platform, (long)value); }
4bfec179
JS
192 static wxPlatform IfNot(int platform, int value) { return IfNot(platform, (long)value); }
193 wxPlatform& ElseIf(int platform, int value) { return ElseIf(platform, (long) value); }
194 wxPlatform& ElseIfNot(int platform, int value) { return ElseIfNot(platform, (long) value); }
195 wxPlatform& Else(int value) { return Else((long) value); }
196
197 static wxPlatform If(int platform, double value);
198 static wxPlatform IfNot(int platform, double value);
199 wxPlatform& ElseIf(int platform, double value);
200 wxPlatform& ElseIfNot(int platform, double value);
201 wxPlatform& Else(double value);
202
203 static wxPlatform If(int platform, const wxString& value);
204 static wxPlatform IfNot(int platform, const wxString& value);
205 wxPlatform& ElseIf(int platform, const wxString& value);
206 wxPlatform& ElseIfNot(int platform, const wxString& value);
207 wxPlatform& Else(const wxString& value);
230c9077
JS
208
209 long GetInteger() const { return m_longValue; }
210 const wxString& GetString() const { return m_stringValue; }
211 double GetDouble() const { return m_doubleValue; }
212
213 operator int() const { return (int) GetInteger(); }
214 operator long() const { return GetInteger(); }
215 operator double() const { return GetDouble(); }
f8087c0d 216 operator const wxString&() const { return GetString(); }
230c9077
JS
217
218 static void AddPlatform(int platform);
4bfec179 219 static bool Is(int platform);
230c9077
JS
220 static void ClearPlatforms();
221
222private:
25a9f291
WS
223
224 void Init() { m_longValue = 0; m_doubleValue = 0.0; }
225
230c9077
JS
226 long m_longValue;
227 double m_doubleValue;
228 wxString m_stringValue;
229 static wxArrayInt* sm_customPlatforms;
230};
231
232/// Function for testing current platform
4bfec179 233inline bool wxPlatformIs(int platform) { return wxPlatform::Is(platform); }
134677bd 234
d6b9496a
VZ
235// ----------------------------------------------------------------------------
236// Window ID management
237// ----------------------------------------------------------------------------
238
c801d85f 239// Ensure subsequent IDs don't clash with this one
c2ca375c 240WXDLLIMPEXP_BASE void wxRegisterId(long id);
c801d85f
KB
241
242// Return the current ID
c2ca375c 243WXDLLIMPEXP_BASE long wxGetCurrentId();
c801d85f 244
c2ca375c
VZ
245// Generate a unique ID
246WXDLLIMPEXP_BASE long wxNewId();
e90c1d2a 247
d6b9496a
VZ
248// ----------------------------------------------------------------------------
249// Various conversions
250// ----------------------------------------------------------------------------
c801d85f 251
c801d85f 252// Convert 2-digit hex number to decimal
bddd7a8d 253WXDLLIMPEXP_BASE int wxHexToDec(const wxString& buf);
c801d85f 254
a9465653
JS
255// Convert 2-digit hex number to decimal
256inline int wxHexToDec(const char* buf)
257{
258 int firstDigit, secondDigit;
259
260 if (buf[0] >= 'A')
261 firstDigit = buf[0] - 'A' + 10;
262 else
263 firstDigit = buf[0] - '0';
264
265 if (buf[1] >= 'A')
266 secondDigit = buf[1] - 'A' + 10;
267 else
268 secondDigit = buf[1] - '0';
269
270 return (firstDigit & 0xF) * 16 + (secondDigit & 0xF );
271}
272
273
c801d85f 274// Convert decimal integer to 2-character hex string
bddd7a8d 275WXDLLIMPEXP_BASE void wxDecToHex(int dec, wxChar *buf);
f728025e 276WXDLLIMPEXP_BASE void wxDecToHex(int dec, char* ch1, char* ch2);
bddd7a8d 277WXDLLIMPEXP_BASE wxString wxDecToHex(int dec);
c801d85f 278
d6b9496a
VZ
279// ----------------------------------------------------------------------------
280// Process management
281// ----------------------------------------------------------------------------
282
e0f6b731 283// NB: for backwards compatibility reasons the values of wxEXEC_[A]SYNC *must*
fbf456aa
VZ
284// be 0 and 1, don't change!
285
286enum
287{
e1082c9f
VZ
288 // execute the process asynchronously
289 wxEXEC_ASYNC = 0,
290
291 // execute it synchronously, i.e. wait until it finishes
292 wxEXEC_SYNC = 1,
293
294 // under Windows, don't hide the child even if it's IO is redirected (this
295 // is done by default)
296 wxEXEC_NOHIDE = 2,
297
e0f6b731
JS
298 // under Unix, if the process is the group leader then passing wxKILL_CHILDREN to wxKill
299 // kills all children as well as pid
f38f6899
VZ
300 wxEXEC_MAKE_GROUP_LEADER = 4,
301
302 // by default synchronous execution disables all program windows to avoid
303 // that the user interacts with the program while the child process is
304 // running, you can use this flag to prevent this from happening
bc855d09
VZ
305 wxEXEC_NODISABLE = 8,
306
307 // by default, the event loop is run while waiting for synchronous execution
308 // to complete and this flag can be used to simply block the main process
309 // until the child process finishes
310 wxEXEC_NOEVENTS = 16,
311
312 // convenient synonym for flags given system()-like behaviour
313 wxEXEC_BLOCK = wxEXEC_SYNC | wxEXEC_NOEVENTS
fbf456aa
VZ
314};
315
316// Execute another program.
317//
318// If flags contain wxEXEC_SYNC, return -1 on failure and the exit code of the
319// process if everything was ok. Otherwise (i.e. if wxEXEC_ASYNC), return 0 on
320// failure and the PID of the launched process if ok.
d7ef641d 321WXDLLIMPEXP_BASE long wxExecute(const wxString& command,
05718a98
VZ
322 int flags = wxEXEC_ASYNC,
323 wxProcess *process = NULL);
324WXDLLIMPEXP_BASE long wxExecute(char **argv,
325 int flags = wxEXEC_ASYNC,
326 wxProcess *process = NULL);
d7ef641d
VZ
327#if wxUSE_UNICODE
328WXDLLIMPEXP_BASE long wxExecute(wchar_t **argv,
05718a98
VZ
329 int flags = wxEXEC_ASYNC,
330 wxProcess *process = NULL);
d7ef641d 331#endif // wxUSE_UNICODE
c801d85f 332
fbf456aa
VZ
333// execute the command capturing its output into an array line by line, this is
334// always synchronous
bddd7a8d 335WXDLLIMPEXP_BASE long wxExecute(const wxString& command,
4d172154
VZ
336 wxArrayString& output,
337 int flags = 0);
f6bcfd97 338
fbf456aa 339// also capture stderr (also synchronous)
bddd7a8d 340WXDLLIMPEXP_BASE long wxExecute(const wxString& command,
4d172154
VZ
341 wxArrayString& output,
342 wxArrayString& error,
343 int flags = 0);
cd6ce4a9 344
5ccb95f6 345#if defined(__WXMSW__) && wxUSE_IPC
42d0df00
VZ
346// ask a DDE server to execute the DDE request with given parameters
347WXDLLIMPEXP_BASE bool wxExecuteDDE(const wxString& ddeServer,
348 const wxString& ddeTopic,
349 const wxString& ddeCommand);
5ccb95f6 350#endif // __WXMSW__ && wxUSE_IPC
42d0df00 351
d6b9496a
VZ
352enum wxSignal
353{
354 wxSIGNONE = 0, // verify if the process exists under Unix
355 wxSIGHUP,
356 wxSIGINT,
357 wxSIGQUIT,
358 wxSIGILL,
359 wxSIGTRAP,
360 wxSIGABRT,
361 wxSIGIOT = wxSIGABRT, // another name
362 wxSIGEMT,
363 wxSIGFPE,
364 wxSIGKILL,
365 wxSIGBUS,
366 wxSIGSEGV,
367 wxSIGSYS,
368 wxSIGPIPE,
369 wxSIGALRM,
370 wxSIGTERM
371
372 // further signals are different in meaning between different Unix systems
373};
c801d85f 374
50567b69
VZ
375enum wxKillError
376{
377 wxKILL_OK, // no error
378 wxKILL_BAD_SIGNAL, // no such signal
379 wxKILL_ACCESS_DENIED, // permission denied
380 wxKILL_NO_PROCESS, // no such process
381 wxKILL_ERROR // another, unspecified error
382};
383
e0f6b731
JS
384enum wxKillFlags
385{
386 wxKILL_NOCHILDREN = 0, // don't kill children
387 wxKILL_CHILDREN = 1 // kill children
388};
389
f6ba47d9
VZ
390enum wxShutdownFlags
391{
118a41d9
VZ
392 wxSHUTDOWN_FORCE = 1,// can be combined with other flags (MSW-only)
393 wxSHUTDOWN_POWEROFF = 2,// power off the computer
394 wxSHUTDOWN_REBOOT = 4,// shutdown and reboot
395 wxSHUTDOWN_LOGOFF = 8 // close session (currently MSW-only)
f6ba47d9
VZ
396};
397
c1cb4153 398// Shutdown or reboot the PC
118a41d9 399WXDLLIMPEXP_BASE bool wxShutdown(int flags = wxSHUTDOWN_POWEROFF);
f6ba47d9 400
50567b69
VZ
401// send the given signal to the process (only NONE and KILL are supported under
402// Windows, all others mean TERM), return 0 if ok and -1 on error
403//
404// return detailed error in rc if not NULL
bddd7a8d 405WXDLLIMPEXP_BASE int wxKill(long pid,
50567b69 406 wxSignal sig = wxSIGTERM,
e0f6b731
JS
407 wxKillError *rc = NULL,
408 int flags = wxKILL_NOCHILDREN);
c801d85f 409
2c8e4738 410// Execute a command in an interactive shell window (always synchronously)
c801d85f 411// If no command then just the shell
bddd7a8d 412WXDLLIMPEXP_BASE bool wxShell(const wxString& command = wxEmptyString);
c801d85f 413
2c8e4738
VZ
414// As wxShell(), but must give a (non interactive) command and its output will
415// be returned in output array
bddd7a8d 416WXDLLIMPEXP_BASE bool wxShell(const wxString& command, wxArrayString& output);
2c8e4738 417
b568d04f 418// Sleep for nSecs seconds
bddd7a8d 419WXDLLIMPEXP_BASE void wxSleep(int nSecs);
c801d85f 420
afb74891 421// Sleep for a given amount of milliseconds
08873d36
VZ
422WXDLLIMPEXP_BASE void wxMilliSleep(unsigned long milliseconds);
423
424// Sleep for a given amount of microseconds
425WXDLLIMPEXP_BASE void wxMicroSleep(unsigned long microseconds);
426
24c4d27f 427#if WXWIN_COMPATIBILITY_2_8
08873d36
VZ
428// Sleep for a given amount of milliseconds (old, bad name), use wxMilliSleep
429wxDEPRECATED( WXDLLIMPEXP_BASE void wxUsleep(unsigned long milliseconds) );
8d4ff849 430#endif
afb74891 431
c1cb4153 432// Get the process id of the current process
bddd7a8d 433WXDLLIMPEXP_BASE unsigned long wxGetProcessId();
c1cb4153 434
c801d85f 435// Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX)
9d8aca48 436WXDLLIMPEXP_BASE wxMemorySize wxGetFreeMemory();
c801d85f 437
a76d8a29
VZ
438#if wxUSE_ON_FATAL_EXCEPTION
439
a37a5a73 440// should wxApp::OnFatalException() be called?
cb719f2e 441WXDLLIMPEXP_BASE bool wxHandleFatalExceptions(bool doit = true);
a37a5a73 442
a76d8a29
VZ
443#endif // wxUSE_ON_FATAL_EXCEPTION
444
8fd0d89b
VZ
445// ----------------------------------------------------------------------------
446// Environment variables
447// ----------------------------------------------------------------------------
448
cb719f2e 449// returns true if variable exists (value may be NULL if you just want to check
308978f6 450// for this)
bddd7a8d 451WXDLLIMPEXP_BASE bool wxGetEnv(const wxString& var, wxString *value);
8fd0d89b 452
cb719f2e 453// set the env var name to the given value, return true on success
90a77e64 454WXDLLIMPEXP_BASE bool wxSetEnv(const wxString& var, const wxString& value);
8fd0d89b
VZ
455
456// remove the env var from environment
90a77e64
VS
457WXDLLIMPEXP_BASE bool wxUnsetEnv(const wxString& var);
458
459#if WXWIN_COMPATIBILITY_2_8
460inline bool wxSetEnv(const wxString& var, const char *value)
461 { return wxSetEnv(var, wxString(value)); }
462inline bool wxSetEnv(const wxString& var, const wchar_t *value)
463 { return wxSetEnv(var, wxString(value)); }
464template<typename T>
de4983f3 465inline bool wxSetEnv(const wxString& var, const wxScopedCharTypeBuffer<T>& value)
90a77e64
VS
466 { return wxSetEnv(var, wxString(value)); }
467inline bool wxSetEnv(const wxString& var, const wxCStrData& value)
468 { return wxSetEnv(var, wxString(value)); }
469
470// this one is for passing NULL directly - don't use it, use wxUnsetEnv instead
471wxDEPRECATED( inline bool wxSetEnv(const wxString& var, int value) );
472inline bool wxSetEnv(const wxString& var, int value)
473{
474 wxASSERT_MSG( value == 0, "using non-NULL integer as string?" );
a43bd048
VZ
475
476 wxUnusedVar(value); // fix unused parameter warning in release build
477
90a77e64
VS
478 return wxUnsetEnv(var);
479}
480#endif // WXWIN_COMPATIBILITY_2_8
8fd0d89b 481
d6b9496a
VZ
482// ----------------------------------------------------------------------------
483// Network and username functions.
484// ----------------------------------------------------------------------------
c801d85f 485
d6b9496a 486// NB: "char *" functions are deprecated, use wxString ones!
c801d85f
KB
487
488// Get eMail address
bddd7a8d
VZ
489WXDLLIMPEXP_BASE bool wxGetEmailAddress(wxChar *buf, int maxSize);
490WXDLLIMPEXP_BASE wxString wxGetEmailAddress();
c801d85f
KB
491
492// Get hostname.
bddd7a8d
VZ
493WXDLLIMPEXP_BASE bool wxGetHostName(wxChar *buf, int maxSize);
494WXDLLIMPEXP_BASE wxString wxGetHostName();
d6b9496a
VZ
495
496// Get FQDN
bddd7a8d
VZ
497WXDLLIMPEXP_BASE wxString wxGetFullHostName();
498WXDLLIMPEXP_BASE bool wxGetFullHostName(wxChar *buf, int maxSize);
c801d85f 499
d6b9496a 500// Get user ID e.g. jacs (this is known as login name under Unix)
bddd7a8d
VZ
501WXDLLIMPEXP_BASE bool wxGetUserId(wxChar *buf, int maxSize);
502WXDLLIMPEXP_BASE wxString wxGetUserId();
c801d85f
KB
503
504// Get user name e.g. Julian Smart
bddd7a8d
VZ
505WXDLLIMPEXP_BASE bool wxGetUserName(wxChar *buf, int maxSize);
506WXDLLIMPEXP_BASE wxString wxGetUserName();
d6b9496a
VZ
507
508// Get current Home dir and copy to dest (returns pstr->c_str())
bddd7a8d
VZ
509WXDLLIMPEXP_BASE wxString wxGetHomeDir();
510WXDLLIMPEXP_BASE const wxChar* wxGetHomeDir(wxString *pstr);
d6b9496a 511
14d63513
VZ
512// Get the user's (by default use the current user name) home dir,
513// return empty string on error
514WXDLLIMPEXP_BASE wxString wxGetUserHome(const wxString& user = wxEmptyString);
515
d6b9496a 516
7ba7c4e6
VZ
517#if wxUSE_LONGLONG
518 typedef wxLongLong wxDiskspaceSize_t;
519#else
520 typedef long wxDiskspaceSize_t;
521#endif
522
eadd7bd2 523// get number of total/free bytes on the disk where path belongs
bddd7a8d 524WXDLLIMPEXP_BASE bool wxGetDiskSpace(const wxString& path,
7ba7c4e6
VZ
525 wxDiskspaceSize_t *pTotal = NULL,
526 wxDiskspaceSize_t *pFree = NULL);
eadd7bd2 527
fe5f448f
RR
528
529
530extern "C"
531{
532typedef int (wxCMPFUNC_CONV *CMPFUNCDATA)(const void* pItem1, const void* pItem2, const void* user_data);
533}
534
535
536WXDLLIMPEXP_BASE void wxQsort(void *const pbase, size_t total_elems,
14d63513 537 size_t size, CMPFUNCDATA cmp, const void* user_data);
fe5f448f
RR
538
539
e90c1d2a
VZ
540#if wxUSE_GUI // GUI only things from now on
541
d6b9496a 542// ----------------------------------------------------------------------------
c5f0d1f9
DE
543// Launch default browser
544// ----------------------------------------------------------------------------
545
546// flags for wxLaunchDefaultBrowser
547enum
548{
f75e0c15
VZ
549 wxBROWSER_NEW_WINDOW = 0x01,
550 wxBROWSER_NOBUSYCURSOR = 0x02
c5f0d1f9
DE
551};
552
553// Launch url in the user's default internet browser
554WXDLLIMPEXP_CORE bool wxLaunchDefaultBrowser(const wxString& url, int flags = 0);
555
1dea1566
RR
556// Launch document in the user's default application
557WXDLLIMPEXP_CORE bool wxLaunchDefaultApplication(const wxString& path, int flags = 0);
558
c5f0d1f9 559// ----------------------------------------------------------------------------
974e8d94 560// Menu accelerators related things
d6b9496a 561// ----------------------------------------------------------------------------
c801d85f 562
74639764
VZ
563// flags for wxStripMenuCodes
564enum
565{
566 // strip '&' characters
567 wxStrip_Mnemonics = 1,
568
569 // strip everything after '\t'
570 wxStrip_Accel = 2,
571
572 // strip everything (this is the default)
573 wxStrip_All = wxStrip_Mnemonics | wxStrip_Accel
574};
575
576// strip mnemonics and/or accelerators from the label
53a2db12 577WXDLLIMPEXP_CORE wxString
74639764
VZ
578wxStripMenuCodes(const wxString& str, int flags = wxStrip_All);
579
74639764 580#if WXWIN_COMPATIBILITY_2_6
90527a50 581// obsolete and deprecated version, do not use, use the above overload instead
74639764 582wxDEPRECATED(
53a2db12 583 WXDLLIMPEXP_CORE wxChar* wxStripMenuCodes(const wxChar *in, wxChar *out = NULL)
74639764 584);
c801d85f 585
974e8d94 586#if wxUSE_ACCEL
b5dbe15d 587class WXDLLIMPEXP_FWD_CORE wxAcceleratorEntry;
90527a50
VZ
588
589// use wxAcceleratorEntry::Create() or FromString() methods instead
ee0a94cf 590wxDEPRECATED(
53a2db12 591 WXDLLIMPEXP_CORE wxAcceleratorEntry *wxGetAccelFromString(const wxString& label)
ee0a94cf 592);
974e8d94
VZ
593#endif // wxUSE_ACCEL
594
90527a50
VZ
595#endif // WXWIN_COMPATIBILITY_2_6
596
d6b9496a
VZ
597// ----------------------------------------------------------------------------
598// Window search
599// ----------------------------------------------------------------------------
600
cb719f2e 601// Returns menu item id or wxNOT_FOUND if none.
53a2db12 602WXDLLIMPEXP_CORE int wxFindMenuItemId(wxFrame *frame, const wxString& menuString, const wxString& itemString);
c801d85f 603
57591e0e
JS
604// Find the wxWindow at the given point. wxGenericFindWindowAtPoint
605// is always present but may be less reliable than a native version.
53a2db12
FM
606WXDLLIMPEXP_CORE wxWindow* wxGenericFindWindowAtPoint(const wxPoint& pt);
607WXDLLIMPEXP_CORE wxWindow* wxFindWindowAtPoint(const wxPoint& pt);
59a12e90 608
146ba0fe
VZ
609// NB: this function is obsolete, use wxWindow::FindWindowByLabel() instead
610//
611// Find the window/widget with the given title or label.
612// Pass a parent to begin the search from, or NULL to look through
613// all windows.
d3b9f782 614WXDLLIMPEXP_CORE wxWindow* wxFindWindowByLabel(const wxString& title, wxWindow *parent = NULL);
146ba0fe
VZ
615
616// NB: this function is obsolete, use wxWindow::FindWindowByName() instead
617//
618// Find window by name, and if that fails, by label.
d3b9f782 619WXDLLIMPEXP_CORE wxWindow* wxFindWindowByName(const wxString& name, wxWindow *parent = NULL);
146ba0fe 620
d6b9496a
VZ
621// ----------------------------------------------------------------------------
622// Message/event queue helpers
623// ----------------------------------------------------------------------------
c801d85f 624
ead7ce10 625// Yield to other apps/messages and disable user input
53a2db12 626WXDLLIMPEXP_CORE bool wxSafeYield(wxWindow *win = NULL, bool onlyIfNeeded = false);
ead7ce10 627
95dee651 628// Enable or disable input to all top level windows
53a2db12 629WXDLLIMPEXP_CORE void wxEnableTopLevelWindows(bool enable = true);
95dee651 630
d6b9496a
VZ
631// Check whether this window wants to process messages, e.g. Stop button
632// in long calculations.
53a2db12 633WXDLLIMPEXP_CORE bool wxCheckForInterrupt(wxWindow *wnd);
d6b9496a
VZ
634
635// Consume all events until no more left
53a2db12 636WXDLLIMPEXP_CORE void wxFlushEvents();
d6b9496a 637
2ecd1756 638// a class which disables all windows (except, may be, the given one) in its
cd6ce4a9 639// ctor and enables them back in its dtor
53a2db12 640class WXDLLIMPEXP_CORE wxWindowDisabler
cd6ce4a9
VZ
641{
642public:
2ecd1756
VZ
643 // this ctor conditionally disables all windows: if the argument is false,
644 // it doesn't do anything
645 wxWindowDisabler(bool disable = true);
646
647 // ctor disables all windows except winToSkip
648 wxWindowDisabler(wxWindow *winToSkip);
649
650 // dtor enables back all windows disabled by the ctor
cd6ce4a9
VZ
651 ~wxWindowDisabler();
652
653private:
2ecd1756
VZ
654 // disable all windows except the given one (used by both ctors)
655 void DoDisable(wxWindow *winToSkip = NULL);
656
657
cd6ce4a9 658 wxWindowList *m_winDisabled;
2ecd1756 659 bool m_disabled;
c1cb4153 660
c0c133e1 661 wxDECLARE_NO_COPY_CLASS(wxWindowDisabler);
cd6ce4a9
VZ
662};
663
d6b9496a
VZ
664// ----------------------------------------------------------------------------
665// Cursors
666// ----------------------------------------------------------------------------
c801d85f
KB
667
668// Set the cursor to the busy cursor for all windows
f516d986 669WXDLLIMPEXP_CORE void wxBeginBusyCursor(const wxCursor *cursor = wxHOURGLASS_CURSOR);
e2a6f233 670
c801d85f 671// Restore cursor to normal
53a2db12 672WXDLLIMPEXP_CORE void wxEndBusyCursor();
d6b9496a 673
cb719f2e 674// true if we're between the above two calls
53a2db12 675WXDLLIMPEXP_CORE bool wxIsBusy();
c801d85f 676
e2a6f233 677// Convenience class so we can just create a wxBusyCursor object on the stack
53a2db12 678class WXDLLIMPEXP_CORE wxBusyCursor
e2a6f233 679{
afb74891 680public:
f516d986 681 wxBusyCursor(const wxCursor* cursor = wxHOURGLASS_CURSOR)
afb74891 682 { wxBeginBusyCursor(cursor); }
f6bcfd97 683 ~wxBusyCursor()
afb74891 684 { wxEndBusyCursor(); }
e2a6f233 685
f6bcfd97
BP
686 // FIXME: These two methods are currently only implemented (and needed?)
687 // in wxGTK. BusyCursor handling should probably be moved to
688 // common code since the wxGTK and wxMSW implementations are very
689 // similar except for wxMSW using HCURSOR directly instead of
690 // wxCursor.. -- RL.
691 static const wxCursor &GetStoredCursor();
692 static const wxCursor GetBusyCursor();
693};
c801d85f 694
53a2db12 695void WXDLLIMPEXP_CORE wxGetMousePosition( int* x, int* y );
c801d85f 696
d6b9496a 697// ----------------------------------------------------------------------------
dc281933 698// X11 Display access
d6b9496a 699// ----------------------------------------------------------------------------
c801d85f 700
dc281933
VZ
701#if defined(__X__) || defined(__WXGTK__)
702
d111a89a 703#ifdef __WXGTK__
033bf67c 704 WXDLLIMPEXP_CORE void *wxGetDisplay();
d111a89a
VZ
705#endif
706
c801d85f 707#ifdef __X__
968eb2ef
MW
708 WXDLLIMPEXP_CORE WXDisplay *wxGetDisplay();
709 WXDLLIMPEXP_CORE bool wxSetDisplay(const wxString& display_name);
710 WXDLLIMPEXP_CORE wxString wxGetDisplayName();
d111a89a 711#endif // X or GTK+
c801d85f 712
e4e83f38
VZ
713// use this function instead of the functions above in implementation code
714inline struct _XDisplay *wxGetX11Display()
715{
716 return (_XDisplay *)wxGetDisplay();
717}
c801d85f 718
dc281933
VZ
719#endif // X11 || wxGTK
720
e90c1d2a
VZ
721#endif // wxUSE_GUI
722
886dd7d2
VZ
723// ----------------------------------------------------------------------------
724// wxYield(): these functions are obsolete, please use wxApp methods instead!
725// ----------------------------------------------------------------------------
726
a131b460
VZ
727// avoid redeclaring this function here if it had been already declated by
728// wx/app.h, this results in warnings from g++ with -Wredundant-decls
729#ifndef wx_YIELD_DECLARED
730#define wx_YIELD_DECLARED
731
886dd7d2 732// Yield to other apps/messages
38281826 733WXDLLIMPEXP_CORE bool wxYield();
886dd7d2 734
a131b460
VZ
735#endif // wx_YIELD_DECLARED
736
886dd7d2 737// Like wxYield, but fails silently if the yield is recursive.
38281826 738WXDLLIMPEXP_CORE bool wxYieldIfNeeded();
f6bcfd97 739
1930cbd7
VS
740// ----------------------------------------------------------------------------
741// Windows resources access
742// ----------------------------------------------------------------------------
743
744// MSW only: get user-defined resource from the .res file.
745#ifdef __WXMSW__
746 // default resource type for wxLoadUserResource()
747 extern WXDLLIMPEXP_DATA_BASE(const wxChar*) wxUserResourceStr;
748
749 // Return the pointer to the resource data. This pointer is read-only, use
750 // the overload below if you need to modify the data.
751 //
752 // Returns true on success, false on failure. Doesn't log an error message
753 // if the resource is not found (because this could be expected) but does
754 // log one if any other error occurs.
755 WXDLLIMPEXP_BASE bool
756 wxLoadUserResource(const void **outData,
757 size_t *outLen,
758 const wxString& resourceName,
18923e36
VS
759 const wxString& resourceType = wxUserResourceStr,
760 WXHINSTANCE module = 0);
1930cbd7
VS
761
762 // This function allocates a new buffer and makes a copy of the resource
763 // data, remember to delete[] the buffer. And avoid using it entirely if
764 // the overload above can be used.
765 //
766 // Returns NULL on failure.
767 WXDLLIMPEXP_BASE char*
768 wxLoadUserResource(const wxString& resourceName,
769 const wxString& resourceType = wxUserResourceStr,
18923e36
VS
770 int* pLen = NULL,
771 WXHINSTANCE module = 0);
1930cbd7
VS
772#endif // MSW
773
c801d85f 774#endif
34138703 775 // _WX_UTILSH__