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