]> git.saurik.com Git - wxWidgets.git/blame - include/wx/utils.h
Tweaking some of the new wxPython stuff for wxGTK
[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
3f4a0c5b 9// Licence: wxWindows license
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_UTILSH__
13#define _WX_UTILSH__
c801d85f 14
d6b9496a
VZ
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
c801d85f 19#ifdef __GNUG__
d6b9496a 20 #pragma interface "utils.h"
c801d85f
KB
21#endif
22
23#include "wx/setup.h"
24#include "wx/object.h"
25#include "wx/list.h"
c801d85f
KB
26#include "wx/filefn.h"
27
c801d85f 28#ifdef __X__
d6b9496a
VZ
29 #include <dirent.h>
30 #include <unistd.h>
c801d85f
KB
31#endif
32
33#include <stdio.h>
34
d6b9496a
VZ
35// ----------------------------------------------------------------------------
36// Forward declaration
37// ----------------------------------------------------------------------------
38
39class WXDLLEXPORT wxProcess;
40class WXDLLEXPORT wxFrame;
e4b4d60e 41class WXDLLEXPORT wxWindow;
d6b9496a
VZ
42
43// FIXME should use wxStricmp() instead
717b9bf2 44#if defined(__GNUWIN32__)
d6b9496a
VZ
45 #define stricmp strcasecmp
46 #define strnicmp strncasecmp
c801d85f
KB
47#endif
48
d6b9496a
VZ
49// ----------------------------------------------------------------------------
50// Macros
51// ----------------------------------------------------------------------------
c801d85f 52
d6b9496a
VZ
53#define wxMax(a,b) (((a) > (b)) ? (a) : (b))
54#define wxMin(a,b) (((a) < (b)) ? (a) : (b))
c801d85f 55
d6b9496a
VZ
56// ----------------------------------------------------------------------------
57// String functions (deprecated, use wxString)
58// ----------------------------------------------------------------------------
59
60// Useful buffer (FIXME VZ: yeah, that is. To be removed!)
9d2f3c71 61WXDLLEXPORT_DATA(extern wxChar*) wxBuffer;
c801d85f
KB
62
63// Make a copy of this string using 'new'
9d2f3c71 64WXDLLEXPORT wxChar* copystring(const wxChar *s);
c801d85f 65
d6b9496a 66// Matches string one within string two regardless of case
9d2f3c71 67WXDLLEXPORT bool StringMatch(wxChar *one, wxChar *two, bool subString = TRUE, bool exact = FALSE);
d6b9496a
VZ
68
69// A shorter way of using strcmp
9d2f3c71 70#define wxStringEq(s1, s2) (s1 && s2 && (wxStrcmp(s1, s2) == 0))
d6b9496a
VZ
71
72// ----------------------------------------------------------------------------
73// Miscellaneous functions
74// ----------------------------------------------------------------------------
75
76// Sound the bell
e90c1d2a 77WXDLLEXPORT void wxBell();
d6b9496a
VZ
78
79// Get OS version
80WXDLLEXPORT int wxGetOsVersion(int *majorVsn= (int *) NULL,int *minorVsn= (int *) NULL) ;
81
82// Return a string with the current date/time
83WXDLLEXPORT wxString wxNow();
84
e90c1d2a 85#if wxUSE_GUI
63cc5d9d
RR
86// Don't synthesize KeyUp events holding down a key and producing
87// KeyDown events with autorepeat. On by default and always on
88// in wxMSW.
f0492f7d
RR
89WXDLLEXPORT bool wxSetDetectableAutoRepeat( bool flag );
90
d6b9496a
VZ
91// ----------------------------------------------------------------------------
92// Window ID management
93// ----------------------------------------------------------------------------
94
c801d85f 95// Generate a unique ID
afb74891 96WXDLLEXPORT long wxNewId();
d6b9496a
VZ
97#if !defined(NewId) && defined(WXWIN_COMPATIBILITY)
98 #define NewId wxNewId
99#endif
c801d85f
KB
100
101// Ensure subsequent IDs don't clash with this one
184b5d99 102WXDLLEXPORT void wxRegisterId(long id);
d6b9496a
VZ
103#if !defined(RegisterId) && defined(WXWIN_COMPATIBILITY)
104 #define RegisterId wxRegisterId
105#endif
c801d85f
KB
106
107// Return the current ID
afb74891 108WXDLLEXPORT long wxGetCurrentId();
c801d85f 109
e90c1d2a
VZ
110#endif // wxUSE_GUI
111
d6b9496a
VZ
112// ----------------------------------------------------------------------------
113// Various conversions
114// ----------------------------------------------------------------------------
c801d85f 115
9d2f3c71
OK
116WXDLLEXPORT_DATA(extern const wxChar*) wxFloatToStringStr;
117WXDLLEXPORT_DATA(extern const wxChar*) wxDoubleToStringStr;
c801d85f 118
9d2f3c71
OK
119WXDLLEXPORT void StringToFloat(wxChar *s, float *number);
120WXDLLEXPORT wxChar* FloatToString(float number, const wxChar *fmt = wxFloatToStringStr);
121WXDLLEXPORT void StringToDouble(wxChar *s, double *number);
122WXDLLEXPORT wxChar* DoubleToString(double number, const wxChar *fmt = wxDoubleToStringStr);
123WXDLLEXPORT void StringToInt(wxChar *s, int *number);
124WXDLLEXPORT void StringToLong(wxChar *s, long *number);
125WXDLLEXPORT wxChar* IntToString(int number);
126WXDLLEXPORT wxChar* LongToString(long number);
c801d85f 127
c801d85f 128// Convert 2-digit hex number to decimal
184b5d99 129WXDLLEXPORT int wxHexToDec(const wxString& buf);
c801d85f
KB
130
131// Convert decimal integer to 2-character hex string
9d2f3c71 132WXDLLEXPORT void wxDecToHex(int dec, wxChar *buf);
184b5d99 133WXDLLEXPORT wxString wxDecToHex(int dec);
c801d85f 134
d6b9496a
VZ
135// ----------------------------------------------------------------------------
136// Process management
137// ----------------------------------------------------------------------------
138
c801d85f 139// Execute another program. Returns 0 if there was an error, a PID otherwise.
9d2f3c71 140WXDLLEXPORT long wxExecute(wxChar **argv, bool sync = FALSE,
c67daf87 141 wxProcess *process = (wxProcess *) NULL);
184b5d99 142WXDLLEXPORT long wxExecute(const wxString& command, bool sync = FALSE,
c67daf87 143 wxProcess *process = (wxProcess *) NULL);
c801d85f 144
d6b9496a
VZ
145enum wxSignal
146{
147 wxSIGNONE = 0, // verify if the process exists under Unix
148 wxSIGHUP,
149 wxSIGINT,
150 wxSIGQUIT,
151 wxSIGILL,
152 wxSIGTRAP,
153 wxSIGABRT,
154 wxSIGIOT = wxSIGABRT, // another name
155 wxSIGEMT,
156 wxSIGFPE,
157 wxSIGKILL,
158 wxSIGBUS,
159 wxSIGSEGV,
160 wxSIGSYS,
161 wxSIGPIPE,
162 wxSIGALRM,
163 wxSIGTERM
164
165 // further signals are different in meaning between different Unix systems
166};
c801d85f 167
d6b9496a
VZ
168// the argument is ignored under Windows - the process is always killed
169WXDLLEXPORT int wxKill(long pid, wxSignal sig = wxSIGTERM);
c801d85f
KB
170
171// Execute a command in an interactive shell window
172// If no command then just the shell
62448488 173WXDLLEXPORT bool wxShell(const wxString& command = wxEmptyString);
c801d85f
KB
174
175// Sleep for nSecs seconds under UNIX, do nothing under Windows
184b5d99 176WXDLLEXPORT void wxSleep(int nSecs);
c801d85f 177
afb74891
VZ
178// Sleep for a given amount of milliseconds
179WXDLLEXPORT void wxUsleep(unsigned long milliseconds);
180
c801d85f 181// Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX)
afb74891 182WXDLLEXPORT long wxGetFreeMemory();
c801d85f 183
d6b9496a
VZ
184// ----------------------------------------------------------------------------
185// Network and username functions.
186// ----------------------------------------------------------------------------
c801d85f 187
d6b9496a 188// NB: "char *" functions are deprecated, use wxString ones!
c801d85f
KB
189
190// Get eMail address
9d2f3c71 191WXDLLEXPORT bool wxGetEmailAddress(wxChar *buf, int maxSize);
d6b9496a 192WXDLLEXPORT wxString wxGetEmailAddress();
c801d85f
KB
193
194// Get hostname.
9d2f3c71 195WXDLLEXPORT bool wxGetHostName(wxChar *buf, int maxSize);
d6b9496a
VZ
196WXDLLEXPORT wxString wxGetHostName();
197
198// Get FQDN
199WXDLLEXPORT wxString wxGetFullHostName();
96c5bd7f 200WXDLLEXPORT bool wxGetFullHostName(wxChar *buf, int maxSize);
c801d85f 201
d6b9496a 202// Get user ID e.g. jacs (this is known as login name under Unix)
9d2f3c71 203WXDLLEXPORT bool wxGetUserId(wxChar *buf, int maxSize);
d6b9496a 204WXDLLEXPORT wxString wxGetUserId();
c801d85f
KB
205
206// Get user name e.g. Julian Smart
9d2f3c71 207WXDLLEXPORT bool wxGetUserName(wxChar *buf, int maxSize);
d6b9496a
VZ
208WXDLLEXPORT wxString wxGetUserName();
209
210// Get current Home dir and copy to dest (returns pstr->c_str())
9d2f3c71 211WXDLLEXPORT const wxChar* wxGetHomeDir(wxString *pstr);
d6b9496a
VZ
212
213// Get the user's home dir (caller must copy --- volatile)
214// returns NULL is no HOME dir is known
61ef57fc
OK
215#if defined(__UNIX__) && wxUSE_UNICODE
216WXDLLEXPORT const wxMB2WXbuf wxGetUserHome(const wxString& user = wxEmptyString);
217#else
9d2f3c71 218WXDLLEXPORT wxChar* wxGetUserHome(const wxString& user = wxEmptyString);
61ef57fc 219#endif
d6b9496a 220
e90c1d2a
VZ
221#if wxUSE_GUI // GUI only things from now on
222
d6b9496a 223// ----------------------------------------------------------------------------
974e8d94 224// Menu accelerators related things
d6b9496a 225// ----------------------------------------------------------------------------
c801d85f 226
9d2f3c71 227WXDLLEXPORT wxChar* wxStripMenuCodes(wxChar *in, wxChar *out = (wxChar *) NULL);
184b5d99 228WXDLLEXPORT wxString wxStripMenuCodes(const wxString& str);
c801d85f 229
974e8d94
VZ
230#if wxUSE_ACCEL
231class WXDLLEXPORT wxAcceleratorEntry;
232WXDLLEXPORT wxAcceleratorEntry *wxGetAccelFromString(const wxString& label);
233#endif // wxUSE_ACCEL
234
d6b9496a
VZ
235// ----------------------------------------------------------------------------
236// Window search
237// ----------------------------------------------------------------------------
238
c801d85f
KB
239// Find the window/widget with the given title or label.
240// Pass a parent to begin the search from, or NULL to look through
241// all windows.
184b5d99 242WXDLLEXPORT wxWindow* wxFindWindowByLabel(const wxString& title, wxWindow *parent = (wxWindow *) NULL);
c801d85f
KB
243
244// Find window by name, and if that fails, by label.
184b5d99 245WXDLLEXPORT wxWindow* wxFindWindowByName(const wxString& name, wxWindow *parent = (wxWindow *) NULL);
c801d85f
KB
246
247// Returns menu item id or -1 if none.
184b5d99 248WXDLLEXPORT int wxFindMenuItemId(wxFrame *frame, const wxString& menuString, const wxString& itemString);
c801d85f 249
d6b9496a
VZ
250// ----------------------------------------------------------------------------
251// Message/event queue helpers
252// ----------------------------------------------------------------------------
c801d85f
KB
253
254// Yield to other apps/messages
afb74891 255WXDLLEXPORT bool wxYield();
c801d85f 256
ead7ce10
KB
257// Yield to other apps/messages and disable user input
258WXDLLEXPORT bool wxSafeYield(wxWindow *win = NULL);
259
95dee651
KB
260// Enable or disable input to all top level windows
261WXDLLEXPORT void wxEnableTopLevelWindows(bool enable = TRUE);
262
d6b9496a
VZ
263// Check whether this window wants to process messages, e.g. Stop button
264// in long calculations.
265WXDLLEXPORT bool wxCheckForInterrupt(wxWindow *wnd);
266
267// Consume all events until no more left
268WXDLLEXPORT void wxFlushEvents();
269
270// ----------------------------------------------------------------------------
271// Cursors
272// ----------------------------------------------------------------------------
c801d85f
KB
273
274// Set the cursor to the busy cursor for all windows
275class WXDLLEXPORT wxCursor;
276WXDLLEXPORT_DATA(extern wxCursor*) wxHOURGLASS_CURSOR;
184b5d99 277WXDLLEXPORT void wxBeginBusyCursor(wxCursor *cursor = wxHOURGLASS_CURSOR);
e2a6f233 278
c801d85f 279// Restore cursor to normal
afb74891 280WXDLLEXPORT void wxEndBusyCursor();
d6b9496a 281
c801d85f 282// TRUE if we're between the above two calls
afb74891 283WXDLLEXPORT bool wxIsBusy();
c801d85f 284
e2a6f233
JS
285// Convenience class so we can just create a wxBusyCursor object on the stack
286class WXDLLEXPORT wxBusyCursor
287{
afb74891
VZ
288public:
289 wxBusyCursor(wxCursor* cursor = wxHOURGLASS_CURSOR)
290 { wxBeginBusyCursor(cursor); }
291 ~wxBusyCursor()
292 { wxEndBusyCursor(); }
e2a6f233
JS
293};
294
d6b9496a
VZ
295// ----------------------------------------------------------------------------
296// Error message functions used by wxWindows (deprecated, use wxLog)
297// ----------------------------------------------------------------------------
298
299// Format a message on the standard error (UNIX) or the debugging
300// stream (Windows)
9d2f3c71 301WXDLLEXPORT void wxDebugMsg(const wxChar *fmt ...) ;
c801d85f
KB
302
303// Non-fatal error (continues)
9d2f3c71 304WXDLLEXPORT_DATA(extern const wxChar*) wxInternalErrorStr;
184b5d99 305WXDLLEXPORT void wxError(const wxString& msg, const wxString& title = wxInternalErrorStr);
c801d85f
KB
306
307// Fatal error (exits)
9d2f3c71 308WXDLLEXPORT_DATA(extern const wxChar*) wxFatalErrorStr;
184b5d99 309WXDLLEXPORT void wxFatalError(const wxString& msg, const wxString& title = wxFatalErrorStr);
c801d85f 310
d6b9496a 311// ----------------------------------------------------------------------------
c801d85f 312// Reading and writing resources (eg WIN.INI, .Xdefaults)
d6b9496a
VZ
313// ----------------------------------------------------------------------------
314
47d67540 315#if wxUSE_RESOURCES
62448488
JS
316WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, const wxString& value, const wxString& file = wxEmptyString);
317WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, float value, const wxString& file = wxEmptyString);
318WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, long value, const wxString& file = wxEmptyString);
319WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, int value, const wxString& file = wxEmptyString);
320
9d2f3c71 321WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, wxChar **value, const wxString& file = wxEmptyString);
62448488
JS
322WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, float *value, const wxString& file = wxEmptyString);
323WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, long *value, const wxString& file = wxEmptyString);
324WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, int *value, const wxString& file = wxEmptyString);
47d67540 325#endif // wxUSE_RESOURCES
c801d85f 326
c801d85f
KB
327void WXDLLEXPORT wxGetMousePosition( int* x, int* y );
328
329// MSW only: get user-defined resource from the .res file.
330// Returns NULL or newly-allocated memory, so use delete[] to clean up.
2049ba38 331#ifdef __WXMSW__
9d2f3c71
OK
332WXDLLEXPORT extern const wxChar* wxUserResourceStr;
333WXDLLEXPORT wxChar* wxLoadUserResource(const wxString& resourceName, const wxString& resourceType = wxUserResourceStr);
c030b70f
JS
334
335// Implemented in utils.cpp: VC++, Win95 only. Sets up a console for standard
336// input/output
337WXDLLEXPORT void wxRedirectIOToConsole();
338
d6b9496a
VZ
339#endif // MSW
340
341// ----------------------------------------------------------------------------
342// Display and colorss (X only)
343// ----------------------------------------------------------------------------
c801d85f 344
d111a89a
VZ
345#ifdef __WXGTK__
346 void *wxGetDisplay();
347#endif
348
c801d85f 349#ifdef __X__
d6b9496a
VZ
350 WXDisplay *wxGetDisplay();
351 bool wxSetDisplay(const wxString& display_name);
352 wxString wxGetDisplayName();
d111a89a 353#endif // X or GTK+
c801d85f
KB
354
355#ifdef __X__
356
357#include <X11/Xlib.h>
358
359#define wxMAX_RGB 0xff
360#define wxMAX_SV 1000
361#define wxSIGN(x) ((x < 0) ? -x : x)
362#define wxH_WEIGHT 4
363#define wxS_WEIGHT 1
364#define wxV_WEIGHT 2
365
366typedef struct wx_hsv {
367 int h,s,v;
368 } wxHSV;
d6b9496a 369
c801d85f
KB
370#define wxMax3(x,y,z) ((x > y) ? ((x > z) ? x : z) : ((y > z) ? y : z))
371#define wxMin3(x,y,z) ((x < y) ? ((x < z) ? x : z) : ((y < z) ? y : z))
372
c801d85f
KB
373void wxHSVToXColor(wxHSV *hsv,XColor *xcolor);
374void wxXColorToHSV(wxHSV *hsv,XColor *xcolor);
375void wxAllocNearestColor(Display *display,Colormap colormap,XColor *xcolor);
376void wxAllocColor(Display *display,Colormap colormap,XColor *xcolor);
377
378#endif //__X__
379
e90c1d2a
VZ
380#endif // wxUSE_GUI
381
c801d85f 382#endif
34138703 383 // _WX_UTILSH__