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