]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/utils.h
Observe NSControlTintDidChangeNotification in the application delegate.
[wxWidgets.git] / include / wx / utils.h
... / ...
CommitLineData
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
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_UTILSH__
13#define _WX_UTILSH__
14
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
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.
27 #pragma interface "utils.h"
28#endif
29
30#include "wx/object.h"
31#include "wx/list.h"
32#include "wx/filefn.h"
33
34class WXDLLIMPEXP_BASE wxArrayString;
35
36// need this for wxGetDiskSpace() as we can't, unfortunately, forward declare
37// wxLongLong
38#include "wx/longlong.h"
39
40#ifdef __X__
41 #include <dirent.h>
42 #include <unistd.h>
43#endif
44
45#include <stdio.h>
46
47// ----------------------------------------------------------------------------
48// Forward declaration
49// ----------------------------------------------------------------------------
50
51class WXDLLIMPEXP_CORE wxProcess;
52class WXDLLIMPEXP_CORE wxFrame;
53class WXDLLIMPEXP_CORE wxWindow;
54class WXDLLIMPEXP_CORE wxWindowList;
55class WXDLLIMPEXP_CORE wxPoint;
56
57// ----------------------------------------------------------------------------
58// Macros
59// ----------------------------------------------------------------------------
60
61#define wxMax(a,b) (((a) > (b)) ? (a) : (b))
62#define wxMin(a,b) (((a) < (b)) ? (a) : (b))
63
64// ----------------------------------------------------------------------------
65// String functions (deprecated, use wxString)
66// ----------------------------------------------------------------------------
67
68// Make a copy of this string using 'new'
69#if WXWIN_COMPATIBILITY_2_4
70WXDLLIMPEXP_BASE wxChar* copystring(const wxChar *s);
71#endif
72
73// A shorter way of using strcmp
74#define wxStringEq(s1, s2) (s1 && s2 && (wxStrcmp(s1, s2) == 0))
75
76// ----------------------------------------------------------------------------
77// Miscellaneous functions
78// ----------------------------------------------------------------------------
79
80// Sound the bell
81WXDLLIMPEXP_BASE void wxBell();
82
83// Get OS description as a user-readable string
84WXDLLIMPEXP_BASE wxString wxGetOsDescription();
85
86// Get OS version
87WXDLLIMPEXP_BASE int wxGetOsVersion(int *majorVsn = (int *) NULL,
88 int *minorVsn = (int *) NULL);
89
90// Return a string with the current date/time
91WXDLLIMPEXP_BASE wxString wxNow();
92
93// Return path where wxWidgets is installed (mostly useful in Unices)
94WXDLLIMPEXP_BASE const wxChar *wxGetInstallPrefix();
95// Return path to wxWin data (/usr/share/wx/%{version}) (Unices)
96WXDLLIMPEXP_BASE wxString wxGetDataDir();
97
98
99#if wxUSE_GUI
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
106
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.
110WXDLLEXPORT bool wxSetDetectableAutoRepeat( bool flag );
111
112// ----------------------------------------------------------------------------
113// Window ID management
114// ----------------------------------------------------------------------------
115
116// Generate a unique ID
117WXDLLEXPORT long wxNewId();
118
119// Ensure subsequent IDs don't clash with this one
120WXDLLEXPORT void wxRegisterId(long id);
121
122// Return the current ID
123WXDLLEXPORT long wxGetCurrentId();
124
125#endif // wxUSE_GUI
126
127// ----------------------------------------------------------------------------
128// Various conversions
129// ----------------------------------------------------------------------------
130
131// these functions are deprecated, use wxString methods instead!
132#if WXWIN_COMPATIBILITY_2_4
133
134WXDLLIMPEXP_DATA_BASE(extern const wxChar*) wxFloatToStringStr;
135WXDLLIMPEXP_DATA_BASE(extern const wxChar*) wxDoubleToStringStr;
136
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);
145
146#endif // WXWIN_COMPATIBILITY_2_4
147
148// Convert 2-digit hex number to decimal
149WXDLLIMPEXP_BASE int wxHexToDec(const wxString& buf);
150
151// Convert decimal integer to 2-character hex string
152WXDLLIMPEXP_BASE void wxDecToHex(int dec, wxChar *buf);
153WXDLLIMPEXP_BASE wxString wxDecToHex(int dec);
154
155// ----------------------------------------------------------------------------
156// Process management
157// ----------------------------------------------------------------------------
158
159// NB: for backwars compatibility reasons the values of wxEXEC_[A]SYNC *must*
160// be 0 and 1, don't change!
161
162enum
163{
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
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.
184WXDLLIMPEXP_BASE long wxExecute(wxChar **argv, int flags = wxEXEC_ASYNC,
185 wxProcess *process = (wxProcess *) NULL);
186WXDLLIMPEXP_BASE long wxExecute(const wxString& command, int flags = wxEXEC_ASYNC,
187 wxProcess *process = (wxProcess *) NULL);
188
189// execute the command capturing its output into an array line by line, this is
190// always synchronous
191WXDLLIMPEXP_BASE long wxExecute(const wxString& command,
192 wxArrayString& output);
193
194// also capture stderr (also synchronous)
195WXDLLIMPEXP_BASE long wxExecute(const wxString& command,
196 wxArrayString& output,
197 wxArrayString& error);
198
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};
221
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
231enum wxShutdownFlags
232{
233 wxSHUTDOWN_POWEROFF, // power off the computer
234 wxSHUTDOWN_REBOOT // shutdown and reboot
235};
236
237// Shutdown or reboot the PC
238WXDLLIMPEXP_BASE bool wxShutdown(wxShutdownFlags wFlags);
239
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
244WXDLLIMPEXP_BASE int wxKill(long pid,
245 wxSignal sig = wxSIGTERM,
246 wxKillError *rc = NULL);
247
248// Execute a command in an interactive shell window (always synchronously)
249// If no command then just the shell
250WXDLLIMPEXP_BASE bool wxShell(const wxString& command = wxEmptyString);
251
252// As wxShell(), but must give a (non interactive) command and its output will
253// be returned in output array
254WXDLLIMPEXP_BASE bool wxShell(const wxString& command, wxArrayString& output);
255
256// Sleep for nSecs seconds
257WXDLLIMPEXP_BASE void wxSleep(int nSecs);
258
259// Sleep for a given amount of milliseconds
260WXDLLIMPEXP_BASE void wxUsleep(unsigned long milliseconds);
261
262// Get the process id of the current process
263WXDLLIMPEXP_BASE unsigned long wxGetProcessId();
264
265// Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX)
266WXDLLIMPEXP_BASE long wxGetFreeMemory();
267
268// should wxApp::OnFatalException() be called?
269WXDLLIMPEXP_BASE bool wxHandleFatalExceptions(bool doit = TRUE);
270
271// ----------------------------------------------------------------------------
272// Environment variables
273// ----------------------------------------------------------------------------
274
275// returns TRUE if variable exists (value may be NULL if you just want to check
276// for this)
277WXDLLIMPEXP_BASE bool wxGetEnv(const wxString& var, wxString *value);
278
279// set the env var name to the given value, return TRUE on success
280WXDLLIMPEXP_BASE bool wxSetEnv(const wxString& var, const wxChar *value);
281
282// remove the env var from environment
283inline bool wxUnsetEnv(const wxString& var) { return wxSetEnv(var, NULL); }
284
285// ----------------------------------------------------------------------------
286// Network and username functions.
287// ----------------------------------------------------------------------------
288
289// NB: "char *" functions are deprecated, use wxString ones!
290
291// Get eMail address
292WXDLLIMPEXP_BASE bool wxGetEmailAddress(wxChar *buf, int maxSize);
293WXDLLIMPEXP_BASE wxString wxGetEmailAddress();
294
295// Get hostname.
296WXDLLIMPEXP_BASE bool wxGetHostName(wxChar *buf, int maxSize);
297WXDLLIMPEXP_BASE wxString wxGetHostName();
298
299// Get FQDN
300WXDLLIMPEXP_BASE wxString wxGetFullHostName();
301WXDLLIMPEXP_BASE bool wxGetFullHostName(wxChar *buf, int maxSize);
302
303// Get user ID e.g. jacs (this is known as login name under Unix)
304WXDLLIMPEXP_BASE bool wxGetUserId(wxChar *buf, int maxSize);
305WXDLLIMPEXP_BASE wxString wxGetUserId();
306
307// Get user name e.g. Julian Smart
308WXDLLIMPEXP_BASE bool wxGetUserName(wxChar *buf, int maxSize);
309WXDLLIMPEXP_BASE wxString wxGetUserName();
310
311// Get current Home dir and copy to dest (returns pstr->c_str())
312WXDLLIMPEXP_BASE wxString wxGetHomeDir();
313WXDLLIMPEXP_BASE const wxChar* wxGetHomeDir(wxString *pstr);
314
315// Get the user's home dir (caller must copy --- volatile)
316// returns NULL is no HOME dir is known
317#if defined(__UNIX__) && wxUSE_UNICODE
318WXDLLIMPEXP_BASE const wxMB2WXbuf wxGetUserHome(const wxString& user = wxEmptyString);
319#else
320WXDLLIMPEXP_BASE wxChar* wxGetUserHome(const wxString& user = wxEmptyString);
321#endif
322
323// get number of total/free bytes on the disk where path belongs
324WXDLLIMPEXP_BASE bool wxGetDiskSpace(const wxString& path,
325 wxLongLong *pTotal = NULL,
326 wxLongLong *pFree = NULL);
327
328#if wxUSE_GUI // GUI only things from now on
329
330// ----------------------------------------------------------------------------
331// Menu accelerators related things
332// ----------------------------------------------------------------------------
333
334WXDLLEXPORT wxChar* wxStripMenuCodes(const wxChar *in, wxChar *out = (wxChar *) NULL);
335WXDLLEXPORT wxString wxStripMenuCodes(const wxString& str);
336
337#if wxUSE_ACCEL
338class WXDLLEXPORT wxAcceleratorEntry;
339WXDLLEXPORT wxAcceleratorEntry *wxGetAccelFromString(const wxString& label);
340#endif // wxUSE_ACCEL
341
342// ----------------------------------------------------------------------------
343// Window search
344// ----------------------------------------------------------------------------
345
346// Returns menu item id or -1 if none.
347WXDLLEXPORT int wxFindMenuItemId(wxFrame *frame, const wxString& menuString, const wxString& itemString);
348
349// Find the wxWindow at the given point. wxGenericFindWindowAtPoint
350// is always present but may be less reliable than a native version.
351WXDLLEXPORT wxWindow* wxGenericFindWindowAtPoint(const wxPoint& pt);
352WXDLLEXPORT wxWindow* wxFindWindowAtPoint(const wxPoint& pt);
353
354// NB: this function is obsolete, use wxWindow::FindWindowByLabel() instead
355//
356// Find the window/widget with the given title or label.
357// Pass a parent to begin the search from, or NULL to look through
358// all windows.
359WXDLLEXPORT wxWindow* wxFindWindowByLabel(const wxString& title, wxWindow *parent = (wxWindow *) NULL);
360
361// NB: this function is obsolete, use wxWindow::FindWindowByName() instead
362//
363// Find window by name, and if that fails, by label.
364WXDLLEXPORT wxWindow* wxFindWindowByName(const wxString& name, wxWindow *parent = (wxWindow *) NULL);
365
366// ----------------------------------------------------------------------------
367// Message/event queue helpers
368// ----------------------------------------------------------------------------
369
370// Yield to other apps/messages and disable user input
371WXDLLEXPORT bool wxSafeYield(wxWindow *win = NULL, bool onlyIfNeeded = FALSE);
372
373// Enable or disable input to all top level windows
374WXDLLEXPORT void wxEnableTopLevelWindows(bool enable = TRUE);
375
376// Check whether this window wants to process messages, e.g. Stop button
377// in long calculations.
378WXDLLEXPORT bool wxCheckForInterrupt(wxWindow *wnd);
379
380// Consume all events until no more left
381WXDLLEXPORT void wxFlushEvents();
382
383// a class which disables all windows (except, may be, thegiven one) in its
384// ctor and enables them back in its dtor
385class WXDLLEXPORT wxWindowDisabler
386{
387public:
388 wxWindowDisabler(wxWindow *winToSkip = (wxWindow *)NULL);
389 ~wxWindowDisabler();
390
391private:
392 wxWindowList *m_winDisabled;
393
394 DECLARE_NO_COPY_CLASS(wxWindowDisabler)
395};
396
397// ----------------------------------------------------------------------------
398// Cursors
399// ----------------------------------------------------------------------------
400
401// Set the cursor to the busy cursor for all windows
402class WXDLLEXPORT wxCursor;
403WXDLLEXPORT_DATA(extern wxCursor*) wxHOURGLASS_CURSOR;
404WXDLLEXPORT void wxBeginBusyCursor(wxCursor *cursor = wxHOURGLASS_CURSOR);
405
406// Restore cursor to normal
407WXDLLEXPORT void wxEndBusyCursor();
408
409// TRUE if we're between the above two calls
410WXDLLEXPORT bool wxIsBusy();
411
412// Convenience class so we can just create a wxBusyCursor object on the stack
413class WXDLLEXPORT wxBusyCursor
414{
415public:
416 wxBusyCursor(wxCursor* cursor = wxHOURGLASS_CURSOR)
417 { wxBeginBusyCursor(cursor); }
418 ~wxBusyCursor()
419 { wxEndBusyCursor(); }
420
421 // FIXME: These two methods are currently only implemented (and needed?)
422 // in wxGTK. BusyCursor handling should probably be moved to
423 // common code since the wxGTK and wxMSW implementations are very
424 // similar except for wxMSW using HCURSOR directly instead of
425 // wxCursor.. -- RL.
426 static const wxCursor &GetStoredCursor();
427 static const wxCursor GetBusyCursor();
428};
429
430
431// ----------------------------------------------------------------------------
432// Reading and writing resources (eg WIN.INI, .Xdefaults)
433// ----------------------------------------------------------------------------
434
435#if wxUSE_RESOURCES
436WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, const wxString& value, const wxString& file = wxEmptyString);
437WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, float value, const wxString& file = wxEmptyString);
438WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, long value, const wxString& file = wxEmptyString);
439WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, int value, const wxString& file = wxEmptyString);
440
441WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, wxChar **value, const wxString& file = wxEmptyString);
442WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, float *value, const wxString& file = wxEmptyString);
443WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, long *value, const wxString& file = wxEmptyString);
444WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, int *value, const wxString& file = wxEmptyString);
445#endif // wxUSE_RESOURCES
446
447void WXDLLEXPORT wxGetMousePosition( int* x, int* y );
448
449// MSW only: get user-defined resource from the .res file.
450// Returns NULL or newly-allocated memory, so use delete[] to clean up.
451#ifdef __WXMSW__
452 WXDLLEXPORT extern const wxChar* wxUserResourceStr;
453 WXDLLEXPORT wxChar* wxLoadUserResource(const wxString& resourceName, const wxString& resourceType = wxUserResourceStr);
454#endif // MSW
455
456// ----------------------------------------------------------------------------
457// Display and colorss (X only)
458// ----------------------------------------------------------------------------
459
460#ifdef __WXGTK__
461 void *wxGetDisplay();
462#endif
463
464#ifdef __X__
465 WXDisplay *wxGetDisplay();
466 bool wxSetDisplay(const wxString& display_name);
467 wxString wxGetDisplayName();
468#endif // X or GTK+
469
470#ifdef __X__
471
472#ifdef __VMS__ // Xlib.h for VMS is not (yet) compatible with C++
473 // The resulting warnings are switched off here
474#pragma message disable nosimpint
475#endif
476// #include <X11/Xlib.h>
477#ifdef __VMS__
478#pragma message enable nosimpint
479#endif
480
481#endif //__X__
482
483#endif // wxUSE_GUI
484
485// ----------------------------------------------------------------------------
486// wxYield(): these functions are obsolete, please use wxApp methods instead!
487// ----------------------------------------------------------------------------
488
489// Yield to other apps/messages
490WXDLLIMPEXP_BASE bool wxYield();
491
492// Like wxYield, but fails silently if the yield is recursive.
493WXDLLIMPEXP_BASE bool wxYieldIfNeeded();
494
495// ----------------------------------------------------------------------------
496// Error message functions used by wxWidgets (deprecated, use wxLog)
497// ----------------------------------------------------------------------------
498
499#if WXWIN_COMPATIBILITY_2_2
500
501// Format a message on the standard error (UNIX) or the debugging
502// stream (Windows)
503WXDLLIMPEXP_BASE void wxDebugMsg(const wxChar *fmt ...) ATTRIBUTE_PRINTF_1;
504
505// Non-fatal error (continues)
506WXDLLIMPEXP_DATA_BASE(extern const wxChar*) wxInternalErrorStr;
507WXDLLIMPEXP_BASE void wxError(const wxString& msg, const wxString& title = wxInternalErrorStr);
508
509// Fatal error (exits)
510WXDLLIMPEXP_DATA_BASE(extern const wxChar*) wxFatalErrorStr;
511WXDLLIMPEXP_BASE void wxFatalError(const wxString& msg, const wxString& title = wxFatalErrorStr);
512
513#endif // WXWIN_COMPATIBILITY_2_2
514
515#endif
516 // _WX_UTILSH__