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