1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Miscellaneous utilities
4 // Author: Julian Smart
8 // Copyright: (c) 1998 Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 #include "wx/object.h"
21 #include "wx/filefn.h"
23 #include "wx/gdicmn.h"
26 class WXDLLIMPEXP_BASE wxArrayString
;
27 class WXDLLIMPEXP_BASE wxArrayInt
;
29 // need this for wxGetDiskSpace() as we can't, unfortunately, forward declare
31 #include "wx/longlong.h"
33 // need for wxOperatingSystemId
34 #include "wx/platinfo.h"
45 // ----------------------------------------------------------------------------
46 // Forward declaration
47 // ----------------------------------------------------------------------------
49 class WXDLLIMPEXP_CORE wxProcess
;
50 class WXDLLIMPEXP_CORE wxFrame
;
51 class WXDLLIMPEXP_CORE wxWindow
;
52 class WXDLLIMPEXP_CORE wxWindowList
;
54 // ----------------------------------------------------------------------------
56 // ----------------------------------------------------------------------------
58 #define wxMax(a,b) (((a) > (b)) ? (a) : (b))
59 #define wxMin(a,b) (((a) < (b)) ? (a) : (b))
60 #define wxClip(a,b,c) (((a) < (b)) ? (b) : (((a) > (c)) ? (c) : (a)))
62 // wxGetFreeMemory can return huge amount of memory on 32-bit platforms as well
63 // so to always use long long for its result type on all platforms which
66 typedef wxLongLong wxMemorySize
;
68 typedef long wxMemorySize
;
71 // ----------------------------------------------------------------------------
72 // String functions (deprecated, use wxString)
73 // ----------------------------------------------------------------------------
75 // Make a copy of this string using 'new'
76 #if WXWIN_COMPATIBILITY_2_4
77 wxDEPRECATED( WXDLLIMPEXP_BASE wxChar
* copystring(const wxChar
*s
) );
80 // A shorter way of using strcmp
81 #define wxStringEq(s1, s2) (s1 && s2 && (wxStrcmp(s1, s2) == 0))
83 // ----------------------------------------------------------------------------
84 // Miscellaneous functions
85 // ----------------------------------------------------------------------------
88 #if !defined __EMX__ && \
89 (defined __WXMOTIF__ || defined __WXGTK__ || defined __WXX11__)
90 WXDLLIMPEXP_CORE
void wxBell();
92 WXDLLIMPEXP_BASE
void wxBell();
95 // Get OS description as a user-readable string
96 WXDLLIMPEXP_BASE wxString
wxGetOsDescription();
99 WXDLLIMPEXP_BASE wxOperatingSystemId
wxGetOsVersion(int *majorVsn
= (int *) NULL
,
100 int *minorVsn
= (int *) NULL
);
102 // Get platform endianness
103 WXDLLIMPEXP_BASE
bool wxIsPlatformLittleEndian();
105 // Get platform architecture
106 WXDLLIMPEXP_BASE
bool wxIsPlatform64Bit();
108 // Return a string with the current date/time
109 WXDLLIMPEXP_BASE wxString
wxNow();
111 // Return path where wxWidgets is installed (mostly useful in Unices)
112 WXDLLIMPEXP_BASE
const wxChar
*wxGetInstallPrefix();
113 // Return path to wxWin data (/usr/share/wx/%{version}) (Unices)
114 WXDLLIMPEXP_BASE wxString
wxGetDataDir();
117 * Class to make it easier to specify platform-dependent values
120 * long val = wxPlatform::If(wxMac, 1).ElseIf(wxGTK, 2).ElseIf(stPDA, 5).Else(3);
121 * wxString strVal = wxPlatform::If(wxMac, wxT("Mac")).ElseIf(wxMSW, wxT("MSW")).Else(wxT("Other"));
123 * A custom platform symbol:
127 * wxPlatform::AddPlatform(stPDA);
130 * long windowStyle = wxCAPTION | (long) wxPlatform::IfNot(stPDA, wxRESIZE_BORDER);
134 class WXDLLIMPEXP_BASE wxPlatform
137 wxPlatform() { Init(); }
138 wxPlatform(const wxPlatform
& platform
) { Copy(platform
); }
139 void operator = (const wxPlatform
& platform
) { Copy(platform
); }
140 void Copy(const wxPlatform
& platform
);
142 // Specify an optional default value
143 wxPlatform(int defValue
) { Init(); m_longValue
= (long)defValue
; }
144 wxPlatform(long defValue
) { Init(); m_longValue
= defValue
; }
145 wxPlatform(const wxString
& defValue
) { Init(); m_stringValue
= defValue
; }
146 wxPlatform(double defValue
) { Init(); m_doubleValue
= defValue
; }
148 static wxPlatform
If(int platform
, long value
);
149 static wxPlatform
IfNot(int platform
, long value
);
150 wxPlatform
& ElseIf(int platform
, long value
);
151 wxPlatform
& ElseIfNot(int platform
, long value
);
152 wxPlatform
& Else(long value
);
154 static wxPlatform
If(int platform
, int value
) { return If(platform
, (long)value
); }
155 static wxPlatform
IfNot(int platform
, int value
) { return IfNot(platform
, (long)value
); }
156 wxPlatform
& ElseIf(int platform
, int value
) { return ElseIf(platform
, (long) value
); }
157 wxPlatform
& ElseIfNot(int platform
, int value
) { return ElseIfNot(platform
, (long) value
); }
158 wxPlatform
& Else(int value
) { return Else((long) value
); }
160 static wxPlatform
If(int platform
, double value
);
161 static wxPlatform
IfNot(int platform
, double value
);
162 wxPlatform
& ElseIf(int platform
, double value
);
163 wxPlatform
& ElseIfNot(int platform
, double value
);
164 wxPlatform
& Else(double value
);
166 static wxPlatform
If(int platform
, const wxString
& value
);
167 static wxPlatform
IfNot(int platform
, const wxString
& value
);
168 wxPlatform
& ElseIf(int platform
, const wxString
& value
);
169 wxPlatform
& ElseIfNot(int platform
, const wxString
& value
);
170 wxPlatform
& Else(const wxString
& value
);
172 long GetInteger() const { return m_longValue
; }
173 const wxString
& GetString() const { return m_stringValue
; }
174 double GetDouble() const { return m_doubleValue
; }
176 operator int() const { return (int) GetInteger(); }
177 operator long() const { return GetInteger(); }
178 operator double() const { return GetDouble(); }
179 operator const wxString() const { return GetString(); }
180 operator const wxChar
*() const { return (const wxChar
*) GetString(); }
182 static void AddPlatform(int platform
);
183 static bool Is(int platform
);
184 static void ClearPlatforms();
188 void Init() { m_longValue
= 0; m_doubleValue
= 0.0; }
191 double m_doubleValue
;
192 wxString m_stringValue
;
193 static wxArrayInt
* sm_customPlatforms
;
196 /// Function for testing current platform
197 inline bool wxPlatformIs(int platform
) { return wxPlatform::Is(platform
); }
201 // Get the state of a key (true if pressed, false if not)
202 // This is generally most useful getting the state of
203 // the modifier or toggle keys.
204 WXDLLEXPORT
bool wxGetKeyState(wxKeyCode key
);
207 // Don't synthesize KeyUp events holding down a key and producing
208 // KeyDown events with autorepeat. On by default and always on
210 WXDLLEXPORT
bool wxSetDetectableAutoRepeat( bool flag
);
213 // wxMouseState is used to hold information about button and modifier state
214 // and is what is returned from wxGetMouseState.
215 class WXDLLEXPORT wxMouseState
220 m_leftDown(false), m_middleDown(false), m_rightDown(false),
221 m_controlDown(false), m_shiftDown(false), m_altDown(false),
225 wxCoord
GetX() { return m_x
; }
226 wxCoord
GetY() { return m_y
; }
228 bool LeftDown() { return m_leftDown
; }
229 bool MiddleDown() { return m_middleDown
; }
230 bool RightDown() { return m_rightDown
; }
232 bool ControlDown() { return m_controlDown
; }
233 bool ShiftDown() { return m_shiftDown
; }
234 bool AltDown() { return m_altDown
; }
235 bool MetaDown() { return m_metaDown
; }
238 #if defined(__WXMAC__) || defined(__WXCOCOA__)
241 return ControlDown();
245 void SetX(wxCoord x
) { m_x
= x
; }
246 void SetY(wxCoord y
) { m_y
= y
; }
248 void SetLeftDown(bool down
) { m_leftDown
= down
; }
249 void SetMiddleDown(bool down
) { m_middleDown
= down
; }
250 void SetRightDown(bool down
) { m_rightDown
= down
; }
252 void SetControlDown(bool down
) { m_controlDown
= down
; }
253 void SetShiftDown(bool down
) { m_shiftDown
= down
; }
254 void SetAltDown(bool down
) { m_altDown
= down
; }
255 void SetMetaDown(bool down
) { m_metaDown
= down
; }
262 bool m_middleDown
: 1;
263 bool m_rightDown
: 1;
265 bool m_controlDown
: 1;
266 bool m_shiftDown
: 1;
272 // Returns the current state of the mouse position, buttons and modifers
273 WXDLLEXPORT wxMouseState
wxGetMouseState();
276 // ----------------------------------------------------------------------------
277 // Window ID management
278 // ----------------------------------------------------------------------------
280 // Generate a unique ID
281 WXDLLEXPORT
long wxNewId();
283 // Ensure subsequent IDs don't clash with this one
284 WXDLLEXPORT
void wxRegisterId(long id
);
286 // Return the current ID
287 WXDLLEXPORT
long wxGetCurrentId();
291 // ----------------------------------------------------------------------------
292 // Various conversions
293 // ----------------------------------------------------------------------------
295 // these functions are deprecated, use wxString methods instead!
296 #if WXWIN_COMPATIBILITY_2_4
298 extern WXDLLIMPEXP_DATA_BASE(const wxChar
*) wxFloatToStringStr
;
299 extern WXDLLIMPEXP_DATA_BASE(const wxChar
*) wxDoubleToStringStr
;
301 wxDEPRECATED( WXDLLIMPEXP_BASE
void StringToFloat(const wxChar
*s
, float *number
) );
302 wxDEPRECATED( WXDLLIMPEXP_BASE wxChar
* FloatToString(float number
, const wxChar
*fmt
= wxFloatToStringStr
) );
303 wxDEPRECATED( WXDLLIMPEXP_BASE
void StringToDouble(const wxChar
*s
, double *number
) );
304 wxDEPRECATED( WXDLLIMPEXP_BASE wxChar
* DoubleToString(double number
, const wxChar
*fmt
= wxDoubleToStringStr
) );
305 wxDEPRECATED( WXDLLIMPEXP_BASE
void StringToInt(const wxChar
*s
, int *number
) );
306 wxDEPRECATED( WXDLLIMPEXP_BASE
void StringToLong(const wxChar
*s
, long *number
) );
307 wxDEPRECATED( WXDLLIMPEXP_BASE wxChar
* IntToString(int number
) );
308 wxDEPRECATED( WXDLLIMPEXP_BASE wxChar
* LongToString(long number
) );
310 #endif // WXWIN_COMPATIBILITY_2_4
312 // Convert 2-digit hex number to decimal
313 WXDLLIMPEXP_BASE
int wxHexToDec(const wxString
& buf
);
315 // Convert decimal integer to 2-character hex string
316 WXDLLIMPEXP_BASE
void wxDecToHex(int dec
, wxChar
*buf
);
317 WXDLLIMPEXP_BASE wxString
wxDecToHex(int dec
);
319 // ----------------------------------------------------------------------------
320 // Process management
321 // ----------------------------------------------------------------------------
323 // NB: for backwards compatibility reasons the values of wxEXEC_[A]SYNC *must*
324 // be 0 and 1, don't change!
328 // execute the process asynchronously
331 // execute it synchronously, i.e. wait until it finishes
334 // under Windows, don't hide the child even if it's IO is redirected (this
335 // is done by default)
338 // under Unix, if the process is the group leader then passing wxKILL_CHILDREN to wxKill
339 // kills all children as well as pid
340 wxEXEC_MAKE_GROUP_LEADER
= 4,
342 // by default synchronous execution disables all program windows to avoid
343 // that the user interacts with the program while the child process is
344 // running, you can use this flag to prevent this from happening
348 // Execute another program.
350 // If flags contain wxEXEC_SYNC, return -1 on failure and the exit code of the
351 // process if everything was ok. Otherwise (i.e. if wxEXEC_ASYNC), return 0 on
352 // failure and the PID of the launched process if ok.
353 WXDLLIMPEXP_BASE
long wxExecute(wxChar
**argv
, int flags
= wxEXEC_ASYNC
,
354 wxProcess
*process
= (wxProcess
*) NULL
);
355 WXDLLIMPEXP_BASE
long wxExecute(const wxString
& command
, int flags
= wxEXEC_ASYNC
,
356 wxProcess
*process
= (wxProcess
*) NULL
);
358 // execute the command capturing its output into an array line by line, this is
359 // always synchronous
360 WXDLLIMPEXP_BASE
long wxExecute(const wxString
& command
,
361 wxArrayString
& output
,
364 // also capture stderr (also synchronous)
365 WXDLLIMPEXP_BASE
long wxExecute(const wxString
& command
,
366 wxArrayString
& output
,
367 wxArrayString
& error
,
370 #if defined(__WXMSW__) && wxUSE_IPC
371 // ask a DDE server to execute the DDE request with given parameters
372 WXDLLIMPEXP_BASE
bool wxExecuteDDE(const wxString
& ddeServer
,
373 const wxString
& ddeTopic
,
374 const wxString
& ddeCommand
);
375 #endif // __WXMSW__ && wxUSE_IPC
379 wxSIGNONE
= 0, // verify if the process exists under Unix
386 wxSIGIOT
= wxSIGABRT
, // another name
397 // further signals are different in meaning between different Unix systems
402 wxKILL_OK
, // no error
403 wxKILL_BAD_SIGNAL
, // no such signal
404 wxKILL_ACCESS_DENIED
, // permission denied
405 wxKILL_NO_PROCESS
, // no such process
406 wxKILL_ERROR
// another, unspecified error
411 wxKILL_NOCHILDREN
= 0, // don't kill children
412 wxKILL_CHILDREN
= 1 // kill children
417 wxSHUTDOWN_POWEROFF
, // power off the computer
418 wxSHUTDOWN_REBOOT
// shutdown and reboot
421 // Shutdown or reboot the PC
422 WXDLLIMPEXP_BASE
bool wxShutdown(wxShutdownFlags wFlags
);
424 // send the given signal to the process (only NONE and KILL are supported under
425 // Windows, all others mean TERM), return 0 if ok and -1 on error
427 // return detailed error in rc if not NULL
428 WXDLLIMPEXP_BASE
int wxKill(long pid
,
429 wxSignal sig
= wxSIGTERM
,
430 wxKillError
*rc
= NULL
,
431 int flags
= wxKILL_NOCHILDREN
);
433 // Execute a command in an interactive shell window (always synchronously)
434 // If no command then just the shell
435 WXDLLIMPEXP_BASE
bool wxShell(const wxString
& command
= wxEmptyString
);
437 // As wxShell(), but must give a (non interactive) command and its output will
438 // be returned in output array
439 WXDLLIMPEXP_BASE
bool wxShell(const wxString
& command
, wxArrayString
& output
);
441 // Sleep for nSecs seconds
442 WXDLLIMPEXP_BASE
void wxSleep(int nSecs
);
444 // Sleep for a given amount of milliseconds
445 WXDLLIMPEXP_BASE
void wxMilliSleep(unsigned long milliseconds
);
447 // Sleep for a given amount of microseconds
448 WXDLLIMPEXP_BASE
void wxMicroSleep(unsigned long microseconds
);
450 // Sleep for a given amount of milliseconds (old, bad name), use wxMilliSleep
451 wxDEPRECATED( WXDLLIMPEXP_BASE
void wxUsleep(unsigned long milliseconds
) );
453 // Get the process id of the current process
454 WXDLLIMPEXP_BASE
unsigned long wxGetProcessId();
456 // Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX)
457 WXDLLIMPEXP_BASE wxMemorySize
wxGetFreeMemory();
459 #if wxUSE_ON_FATAL_EXCEPTION
461 // should wxApp::OnFatalException() be called?
462 WXDLLIMPEXP_BASE
bool wxHandleFatalExceptions(bool doit
= true);
464 #endif // wxUSE_ON_FATAL_EXCEPTION
466 // flags for wxLaunchDefaultBrowser
469 wxBROWSER_NEW_WINDOW
= 1
472 // Launch url in the user's default internet browser
473 WXDLLIMPEXP_BASE
bool wxLaunchDefaultBrowser(const wxString
& url
, int flags
= 0);
475 // ----------------------------------------------------------------------------
476 // Environment variables
477 // ----------------------------------------------------------------------------
479 // returns true if variable exists (value may be NULL if you just want to check
481 WXDLLIMPEXP_BASE
bool wxGetEnv(const wxString
& var
, wxString
*value
);
483 // set the env var name to the given value, return true on success
484 WXDLLIMPEXP_BASE
bool wxSetEnv(const wxString
& var
, const wxChar
*value
);
486 // remove the env var from environment
487 inline bool wxUnsetEnv(const wxString
& var
) { return wxSetEnv(var
, NULL
); }
489 // ----------------------------------------------------------------------------
490 // Network and username functions.
491 // ----------------------------------------------------------------------------
493 // NB: "char *" functions are deprecated, use wxString ones!
496 WXDLLIMPEXP_BASE
bool wxGetEmailAddress(wxChar
*buf
, int maxSize
);
497 WXDLLIMPEXP_BASE wxString
wxGetEmailAddress();
500 WXDLLIMPEXP_BASE
bool wxGetHostName(wxChar
*buf
, int maxSize
);
501 WXDLLIMPEXP_BASE wxString
wxGetHostName();
504 WXDLLIMPEXP_BASE wxString
wxGetFullHostName();
505 WXDLLIMPEXP_BASE
bool wxGetFullHostName(wxChar
*buf
, int maxSize
);
507 // Get user ID e.g. jacs (this is known as login name under Unix)
508 WXDLLIMPEXP_BASE
bool wxGetUserId(wxChar
*buf
, int maxSize
);
509 WXDLLIMPEXP_BASE wxString
wxGetUserId();
511 // Get user name e.g. Julian Smart
512 WXDLLIMPEXP_BASE
bool wxGetUserName(wxChar
*buf
, int maxSize
);
513 WXDLLIMPEXP_BASE wxString
wxGetUserName();
515 // Get current Home dir and copy to dest (returns pstr->c_str())
516 WXDLLIMPEXP_BASE wxString
wxGetHomeDir();
517 WXDLLIMPEXP_BASE
const wxChar
* wxGetHomeDir(wxString
*pstr
);
519 // Get the user's home dir (caller must copy --- volatile)
520 // returns NULL is no HOME dir is known
521 #if defined(__UNIX__) && wxUSE_UNICODE
522 WXDLLIMPEXP_BASE
const wxMB2WXbuf
wxGetUserHome(const wxString
& user
= wxEmptyString
);
524 WXDLLIMPEXP_BASE wxChar
* wxGetUserHome(const wxString
& user
= wxEmptyString
);
528 typedef wxLongLong wxDiskspaceSize_t
;
530 typedef long wxDiskspaceSize_t
;
533 // get number of total/free bytes on the disk where path belongs
534 WXDLLIMPEXP_BASE
bool wxGetDiskSpace(const wxString
& path
,
535 wxDiskspaceSize_t
*pTotal
= NULL
,
536 wxDiskspaceSize_t
*pFree
= NULL
);
538 #if wxUSE_GUI // GUI only things from now on
540 // ----------------------------------------------------------------------------
541 // Menu accelerators related things
542 // ----------------------------------------------------------------------------
544 // flags for wxStripMenuCodes
547 // strip '&' characters
548 wxStrip_Mnemonics
= 1,
550 // strip everything after '\t'
553 // strip everything (this is the default)
554 wxStrip_All
= wxStrip_Mnemonics
| wxStrip_Accel
557 // strip mnemonics and/or accelerators from the label
559 wxStripMenuCodes(const wxString
& str
, int flags
= wxStrip_All
);
561 #if WXWIN_COMPATIBILITY_2_6
562 // obsolete and deprecated version, do not use, use the above overload instead
564 WXDLLEXPORT wxChar
* wxStripMenuCodes(const wxChar
*in
, wxChar
*out
= NULL
)
568 class WXDLLEXPORT wxAcceleratorEntry
;
570 // use wxAcceleratorEntry::Create() or FromString() methods instead
572 WXDLLEXPORT wxAcceleratorEntry
*wxGetAccelFromString(const wxString
& label
)
574 #endif // wxUSE_ACCEL
576 #endif // WXWIN_COMPATIBILITY_2_6
578 // ----------------------------------------------------------------------------
580 // ----------------------------------------------------------------------------
582 // Returns menu item id or wxNOT_FOUND if none.
583 WXDLLEXPORT
int wxFindMenuItemId(wxFrame
*frame
, const wxString
& menuString
, const wxString
& itemString
);
585 // Find the wxWindow at the given point. wxGenericFindWindowAtPoint
586 // is always present but may be less reliable than a native version.
587 WXDLLEXPORT wxWindow
* wxGenericFindWindowAtPoint(const wxPoint
& pt
);
588 WXDLLEXPORT wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
);
590 // NB: this function is obsolete, use wxWindow::FindWindowByLabel() instead
592 // Find the window/widget with the given title or label.
593 // Pass a parent to begin the search from, or NULL to look through
595 WXDLLEXPORT wxWindow
* wxFindWindowByLabel(const wxString
& title
, wxWindow
*parent
= (wxWindow
*) NULL
);
597 // NB: this function is obsolete, use wxWindow::FindWindowByName() instead
599 // Find window by name, and if that fails, by label.
600 WXDLLEXPORT wxWindow
* wxFindWindowByName(const wxString
& name
, wxWindow
*parent
= (wxWindow
*) NULL
);
602 // ----------------------------------------------------------------------------
603 // Message/event queue helpers
604 // ----------------------------------------------------------------------------
606 // Yield to other apps/messages and disable user input
607 WXDLLEXPORT
bool wxSafeYield(wxWindow
*win
= NULL
, bool onlyIfNeeded
= false);
609 // Enable or disable input to all top level windows
610 WXDLLEXPORT
void wxEnableTopLevelWindows(bool enable
= true);
612 // Check whether this window wants to process messages, e.g. Stop button
613 // in long calculations.
614 WXDLLEXPORT
bool wxCheckForInterrupt(wxWindow
*wnd
);
616 // Consume all events until no more left
617 WXDLLEXPORT
void wxFlushEvents();
619 // a class which disables all windows (except, may be, thegiven one) in its
620 // ctor and enables them back in its dtor
621 class WXDLLEXPORT wxWindowDisabler
624 wxWindowDisabler(wxWindow
*winToSkip
= (wxWindow
*)NULL
);
628 wxWindowList
*m_winDisabled
;
630 DECLARE_NO_COPY_CLASS(wxWindowDisabler
)
633 // ----------------------------------------------------------------------------
635 // ----------------------------------------------------------------------------
637 // Set the cursor to the busy cursor for all windows
638 WXDLLIMPEXP_CORE
void wxBeginBusyCursor(const wxCursor
*cursor
= wxHOURGLASS_CURSOR
);
640 // Restore cursor to normal
641 WXDLLEXPORT
void wxEndBusyCursor();
643 // true if we're between the above two calls
644 WXDLLEXPORT
bool wxIsBusy();
646 // Convenience class so we can just create a wxBusyCursor object on the stack
647 class WXDLLEXPORT wxBusyCursor
650 wxBusyCursor(const wxCursor
* cursor
= wxHOURGLASS_CURSOR
)
651 { wxBeginBusyCursor(cursor
); }
653 { wxEndBusyCursor(); }
655 // FIXME: These two methods are currently only implemented (and needed?)
656 // in wxGTK. BusyCursor handling should probably be moved to
657 // common code since the wxGTK and wxMSW implementations are very
658 // similar except for wxMSW using HCURSOR directly instead of
660 static const wxCursor
&GetStoredCursor();
661 static const wxCursor
GetBusyCursor();
665 // ----------------------------------------------------------------------------
666 // Reading and writing resources (eg WIN.INI, .Xdefaults)
667 // ----------------------------------------------------------------------------
670 WXDLLEXPORT
bool wxWriteResource(const wxString
& section
, const wxString
& entry
, const wxString
& value
, const wxString
& file
= wxEmptyString
);
671 WXDLLEXPORT
bool wxWriteResource(const wxString
& section
, const wxString
& entry
, float value
, const wxString
& file
= wxEmptyString
);
672 WXDLLEXPORT
bool wxWriteResource(const wxString
& section
, const wxString
& entry
, long value
, const wxString
& file
= wxEmptyString
);
673 WXDLLEXPORT
bool wxWriteResource(const wxString
& section
, const wxString
& entry
, int value
, const wxString
& file
= wxEmptyString
);
675 WXDLLEXPORT
bool wxGetResource(const wxString
& section
, const wxString
& entry
, wxChar
**value
, const wxString
& file
= wxEmptyString
);
676 WXDLLEXPORT
bool wxGetResource(const wxString
& section
, const wxString
& entry
, float *value
, const wxString
& file
= wxEmptyString
);
677 WXDLLEXPORT
bool wxGetResource(const wxString
& section
, const wxString
& entry
, long *value
, const wxString
& file
= wxEmptyString
);
678 WXDLLEXPORT
bool wxGetResource(const wxString
& section
, const wxString
& entry
, int *value
, const wxString
& file
= wxEmptyString
);
679 #endif // wxUSE_RESOURCES
681 void WXDLLEXPORT
wxGetMousePosition( int* x
, int* y
);
683 // MSW only: get user-defined resource from the .res file.
684 // Returns NULL or newly-allocated memory, so use delete[] to clean up.
686 extern WXDLLEXPORT
const wxChar
* wxUserResourceStr
;
687 WXDLLEXPORT wxChar
* wxLoadUserResource(const wxString
& resourceName
, const wxString
& resourceType
= wxUserResourceStr
);
690 // ----------------------------------------------------------------------------
691 // Display and colorss (X only)
692 // ----------------------------------------------------------------------------
695 void *wxGetDisplay();
699 WXDLLIMPEXP_CORE WXDisplay
*wxGetDisplay();
700 WXDLLIMPEXP_CORE
bool wxSetDisplay(const wxString
& display_name
);
701 WXDLLIMPEXP_CORE wxString
wxGetDisplayName();
706 #ifdef __VMS__ // Xlib.h for VMS is not (yet) compatible with C++
707 // The resulting warnings are switched off here
708 #pragma message disable nosimpint
710 // #include <X11/Xlib.h>
712 #pragma message enable nosimpint
719 // ----------------------------------------------------------------------------
720 // wxYield(): these functions are obsolete, please use wxApp methods instead!
721 // ----------------------------------------------------------------------------
723 // Yield to other apps/messages
724 WXDLLIMPEXP_BASE
bool wxYield();
726 // Like wxYield, but fails silently if the yield is recursive.
727 WXDLLIMPEXP_BASE
bool wxYieldIfNeeded();
729 // ----------------------------------------------------------------------------
730 // Error message functions used by wxWidgets (deprecated, use wxLog)
731 // ----------------------------------------------------------------------------