]>
Commit | Line | Data |
---|---|---|
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 | ||
c801d85f KB |
23 | #include "wx/object.h" |
24 | #include "wx/list.h" | |
c801d85f KB |
25 | #include "wx/filefn.h" |
26 | ||
eadd7bd2 VZ |
27 | // need this for wxGetDiskSpace() as we can't, unfortunately, forward declare |
28 | // wxLongLong | |
29 | #include "wx/longlong.h" | |
30 | ||
c801d85f | 31 | #ifdef __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 | ||
42 | class WXDLLEXPORT wxProcess; | |
43 | class WXDLLEXPORT wxFrame; | |
e4b4d60e | 44 | class WXDLLEXPORT wxWindow; |
cd6ce4a9 | 45 | class WXDLLEXPORT wxWindowList; |
59a12e90 | 46 | class WXDLLEXPORT 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 | |
d6b9496a VZ |
55 | // ---------------------------------------------------------------------------- |
56 | // String functions (deprecated, use wxString) | |
57 | // ---------------------------------------------------------------------------- | |
58 | ||
8fd0d89b | 59 | // Useful buffer (FIXME VZ: To be removed!!!) |
9d2f3c71 | 60 | WXDLLEXPORT_DATA(extern wxChar*) wxBuffer; |
c801d85f KB |
61 | |
62 | // Make a copy of this string using 'new' | |
9d2f3c71 | 63 | WXDLLEXPORT wxChar* copystring(const wxChar *s); |
c801d85f | 64 | |
d6b9496a | 65 | // Matches string one within string two regardless of case |
bc87fd68 | 66 | WXDLLEXPORT bool StringMatch(const wxChar *one, const wxChar *two, bool subString = TRUE, bool exact = FALSE); |
d6b9496a VZ |
67 | |
68 | // A shorter way of using strcmp | |
9d2f3c71 | 69 | #define wxStringEq(s1, s2) (s1 && s2 && (wxStrcmp(s1, s2) == 0)) |
d6b9496a VZ |
70 | |
71 | // ---------------------------------------------------------------------------- | |
72 | // Miscellaneous functions | |
73 | // ---------------------------------------------------------------------------- | |
74 | ||
75 | // Sound the bell | |
e90c1d2a | 76 | WXDLLEXPORT void wxBell(); |
d6b9496a | 77 | |
bdc72a22 VZ |
78 | // Get OS description as a user-readable string |
79 | WXDLLEXPORT wxString wxGetOsDescription(); | |
80 | ||
d6b9496a | 81 | // Get OS version |
bdc72a22 VZ |
82 | WXDLLEXPORT int wxGetOsVersion(int *majorVsn = (int *) NULL, |
83 | int *minorVsn = (int *) NULL); | |
d6b9496a VZ |
84 | |
85 | // Return a string with the current date/time | |
86 | WXDLLEXPORT wxString wxNow(); | |
87 | ||
134677bd VS |
88 | // Return path where wxWindows is installed (mostly useful in Unices) |
89 | WXDLLEXPORT const wxChar *wxGetInstallPrefix(); | |
2c18f21d VS |
90 | // Return path to wxWin data (/usr/share/wx/%{version}) (Unices) |
91 | WXDLLEXPORT wxString wxGetDataDir(); | |
134677bd VS |
92 | |
93 | ||
e90c1d2a | 94 | #if wxUSE_GUI |
63cc5d9d RR |
95 | // Don't synthesize KeyUp events holding down a key and producing |
96 | // KeyDown events with autorepeat. On by default and always on | |
97 | // in wxMSW. | |
f0492f7d RR |
98 | WXDLLEXPORT bool wxSetDetectableAutoRepeat( bool flag ); |
99 | ||
d6b9496a VZ |
100 | // ---------------------------------------------------------------------------- |
101 | // Window ID management | |
102 | // ---------------------------------------------------------------------------- | |
103 | ||
c801d85f | 104 | // Generate a unique ID |
afb74891 | 105 | WXDLLEXPORT long wxNewId(); |
d6b9496a VZ |
106 | #if !defined(NewId) && defined(WXWIN_COMPATIBILITY) |
107 | #define NewId wxNewId | |
108 | #endif | |
c801d85f KB |
109 | |
110 | // Ensure subsequent IDs don't clash with this one | |
184b5d99 | 111 | WXDLLEXPORT void wxRegisterId(long id); |
d6b9496a VZ |
112 | #if !defined(RegisterId) && defined(WXWIN_COMPATIBILITY) |
113 | #define RegisterId wxRegisterId | |
114 | #endif | |
c801d85f KB |
115 | |
116 | // Return the current ID | |
afb74891 | 117 | WXDLLEXPORT long wxGetCurrentId(); |
c801d85f | 118 | |
e90c1d2a VZ |
119 | #endif // wxUSE_GUI |
120 | ||
d6b9496a VZ |
121 | // ---------------------------------------------------------------------------- |
122 | // Various conversions | |
123 | // ---------------------------------------------------------------------------- | |
c801d85f | 124 | |
9d2f3c71 OK |
125 | WXDLLEXPORT_DATA(extern const wxChar*) wxFloatToStringStr; |
126 | WXDLLEXPORT_DATA(extern const wxChar*) wxDoubleToStringStr; | |
c801d85f | 127 | |
bc87fd68 | 128 | WXDLLEXPORT void StringToFloat(const wxChar *s, float *number); |
9d2f3c71 | 129 | WXDLLEXPORT wxChar* FloatToString(float number, const wxChar *fmt = wxFloatToStringStr); |
bc87fd68 | 130 | WXDLLEXPORT void StringToDouble(const wxChar *s, double *number); |
9d2f3c71 | 131 | WXDLLEXPORT wxChar* DoubleToString(double number, const wxChar *fmt = wxDoubleToStringStr); |
bc87fd68 GD |
132 | WXDLLEXPORT void StringToInt(const wxChar *s, int *number); |
133 | WXDLLEXPORT void StringToLong(const wxChar *s, long *number); | |
9d2f3c71 OK |
134 | WXDLLEXPORT wxChar* IntToString(int number); |
135 | WXDLLEXPORT wxChar* LongToString(long number); | |
c801d85f | 136 | |
c801d85f | 137 | // Convert 2-digit hex number to decimal |
184b5d99 | 138 | WXDLLEXPORT int wxHexToDec(const wxString& buf); |
c801d85f KB |
139 | |
140 | // Convert decimal integer to 2-character hex string | |
9d2f3c71 | 141 | WXDLLEXPORT void wxDecToHex(int dec, wxChar *buf); |
184b5d99 | 142 | WXDLLEXPORT wxString wxDecToHex(int dec); |
c801d85f | 143 | |
d6b9496a VZ |
144 | // ---------------------------------------------------------------------------- |
145 | // Process management | |
146 | // ---------------------------------------------------------------------------- | |
147 | ||
c801d85f | 148 | // Execute another program. Returns 0 if there was an error, a PID otherwise. |
9d2f3c71 | 149 | WXDLLEXPORT long wxExecute(wxChar **argv, bool sync = FALSE, |
c67daf87 | 150 | wxProcess *process = (wxProcess *) NULL); |
184b5d99 | 151 | WXDLLEXPORT long wxExecute(const wxString& command, bool sync = FALSE, |
c67daf87 | 152 | wxProcess *process = (wxProcess *) NULL); |
c801d85f | 153 | |
cd6ce4a9 | 154 | // execute the command capturing its output into an array line by line |
f6bcfd97 BP |
155 | WXDLLEXPORT long wxExecute(const wxString& command, |
156 | wxArrayString& output); | |
157 | ||
158 | // also capture stderr | |
159 | WXDLLEXPORT long wxExecute(const wxString& command, | |
160 | wxArrayString& output, | |
161 | wxArrayString& error); | |
cd6ce4a9 | 162 | |
d6b9496a VZ |
163 | enum wxSignal |
164 | { | |
165 | wxSIGNONE = 0, // verify if the process exists under Unix | |
166 | wxSIGHUP, | |
167 | wxSIGINT, | |
168 | wxSIGQUIT, | |
169 | wxSIGILL, | |
170 | wxSIGTRAP, | |
171 | wxSIGABRT, | |
172 | wxSIGIOT = wxSIGABRT, // another name | |
173 | wxSIGEMT, | |
174 | wxSIGFPE, | |
175 | wxSIGKILL, | |
176 | wxSIGBUS, | |
177 | wxSIGSEGV, | |
178 | wxSIGSYS, | |
179 | wxSIGPIPE, | |
180 | wxSIGALRM, | |
181 | wxSIGTERM | |
182 | ||
183 | // further signals are different in meaning between different Unix systems | |
184 | }; | |
c801d85f | 185 | |
50567b69 VZ |
186 | enum wxKillError |
187 | { | |
188 | wxKILL_OK, // no error | |
189 | wxKILL_BAD_SIGNAL, // no such signal | |
190 | wxKILL_ACCESS_DENIED, // permission denied | |
191 | wxKILL_NO_PROCESS, // no such process | |
192 | wxKILL_ERROR // another, unspecified error | |
193 | }; | |
194 | ||
195 | // send the given signal to the process (only NONE and KILL are supported under | |
196 | // Windows, all others mean TERM), return 0 if ok and -1 on error | |
197 | // | |
198 | // return detailed error in rc if not NULL | |
199 | WXDLLEXPORT int wxKill(long pid, | |
200 | wxSignal sig = wxSIGTERM, | |
201 | wxKillError *rc = NULL); | |
c801d85f | 202 | |
2c8e4738 | 203 | // Execute a command in an interactive shell window (always synchronously) |
c801d85f | 204 | // If no command then just the shell |
62448488 | 205 | WXDLLEXPORT bool wxShell(const wxString& command = wxEmptyString); |
c801d85f | 206 | |
2c8e4738 VZ |
207 | // As wxShell(), but must give a (non interactive) command and its output will |
208 | // be returned in output array | |
209 | WXDLLEXPORT bool wxShell(const wxString& command, wxArrayString& output); | |
210 | ||
b568d04f | 211 | // Sleep for nSecs seconds |
184b5d99 | 212 | WXDLLEXPORT void wxSleep(int nSecs); |
c801d85f | 213 | |
afb74891 VZ |
214 | // Sleep for a given amount of milliseconds |
215 | WXDLLEXPORT void wxUsleep(unsigned long milliseconds); | |
216 | ||
c801d85f | 217 | // Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX) |
afb74891 | 218 | WXDLLEXPORT long wxGetFreeMemory(); |
c801d85f | 219 | |
a37a5a73 VZ |
220 | // should wxApp::OnFatalException() be called? |
221 | WXDLLEXPORT bool wxHandleFatalExceptions(bool doit = TRUE); | |
222 | ||
8fd0d89b VZ |
223 | // ---------------------------------------------------------------------------- |
224 | // Environment variables | |
225 | // ---------------------------------------------------------------------------- | |
226 | ||
308978f6 VZ |
227 | // returns TRUE if variable exists (value may be NULL if you just want to check |
228 | // for this) | |
229 | WXDLLEXPORT bool wxGetEnv(const wxString& var, wxString *value); | |
8fd0d89b VZ |
230 | |
231 | // set the env var name to the given value, return TRUE on success | |
232 | WXDLLEXPORT bool wxSetEnv(const wxString& var, const wxChar *value); | |
233 | ||
234 | // remove the env var from environment | |
235 | inline bool wxUnsetEnv(const wxString& var) { return wxSetEnv(var, NULL); } | |
236 | ||
d6b9496a VZ |
237 | // ---------------------------------------------------------------------------- |
238 | // Network and username functions. | |
239 | // ---------------------------------------------------------------------------- | |
c801d85f | 240 | |
d6b9496a | 241 | // NB: "char *" functions are deprecated, use wxString ones! |
c801d85f KB |
242 | |
243 | // Get eMail address | |
9d2f3c71 | 244 | WXDLLEXPORT bool wxGetEmailAddress(wxChar *buf, int maxSize); |
d6b9496a | 245 | WXDLLEXPORT wxString wxGetEmailAddress(); |
c801d85f KB |
246 | |
247 | // Get hostname. | |
9d2f3c71 | 248 | WXDLLEXPORT bool wxGetHostName(wxChar *buf, int maxSize); |
d6b9496a VZ |
249 | WXDLLEXPORT wxString wxGetHostName(); |
250 | ||
251 | // Get FQDN | |
252 | WXDLLEXPORT wxString wxGetFullHostName(); | |
96c5bd7f | 253 | WXDLLEXPORT bool wxGetFullHostName(wxChar *buf, int maxSize); |
c801d85f | 254 | |
d6b9496a | 255 | // Get user ID e.g. jacs (this is known as login name under Unix) |
9d2f3c71 | 256 | WXDLLEXPORT bool wxGetUserId(wxChar *buf, int maxSize); |
d6b9496a | 257 | WXDLLEXPORT wxString wxGetUserId(); |
c801d85f KB |
258 | |
259 | // Get user name e.g. Julian Smart | |
9d2f3c71 | 260 | WXDLLEXPORT bool wxGetUserName(wxChar *buf, int maxSize); |
d6b9496a VZ |
261 | WXDLLEXPORT wxString wxGetUserName(); |
262 | ||
263 | // Get current Home dir and copy to dest (returns pstr->c_str()) | |
c51deffc | 264 | WXDLLEXPORT wxString wxGetHomeDir(); |
9d2f3c71 | 265 | WXDLLEXPORT const wxChar* wxGetHomeDir(wxString *pstr); |
d6b9496a VZ |
266 | |
267 | // Get the user's home dir (caller must copy --- volatile) | |
268 | // returns NULL is no HOME dir is known | |
61ef57fc OK |
269 | #if defined(__UNIX__) && wxUSE_UNICODE |
270 | WXDLLEXPORT const wxMB2WXbuf wxGetUserHome(const wxString& user = wxEmptyString); | |
271 | #else | |
9d2f3c71 | 272 | WXDLLEXPORT wxChar* wxGetUserHome(const wxString& user = wxEmptyString); |
61ef57fc | 273 | #endif |
d6b9496a | 274 | |
eadd7bd2 VZ |
275 | // get number of total/free bytes on the disk where path belongs |
276 | WXDLLEXPORT bool wxGetDiskSpace(const wxString& path, | |
277 | wxLongLong *pTotal = NULL, | |
278 | wxLongLong *pFree = NULL); | |
279 | ||
e90c1d2a VZ |
280 | #if wxUSE_GUI // GUI only things from now on |
281 | ||
d6b9496a | 282 | // ---------------------------------------------------------------------------- |
974e8d94 | 283 | // Menu accelerators related things |
d6b9496a | 284 | // ---------------------------------------------------------------------------- |
c801d85f | 285 | |
bc87fd68 | 286 | WXDLLEXPORT wxChar* wxStripMenuCodes(const wxChar *in, wxChar *out = (wxChar *) NULL); |
184b5d99 | 287 | WXDLLEXPORT wxString wxStripMenuCodes(const wxString& str); |
c801d85f | 288 | |
974e8d94 VZ |
289 | #if wxUSE_ACCEL |
290 | class WXDLLEXPORT wxAcceleratorEntry; | |
291 | WXDLLEXPORT wxAcceleratorEntry *wxGetAccelFromString(const wxString& label); | |
292 | #endif // wxUSE_ACCEL | |
293 | ||
d6b9496a VZ |
294 | // ---------------------------------------------------------------------------- |
295 | // Window search | |
296 | // ---------------------------------------------------------------------------- | |
297 | ||
c801d85f KB |
298 | // Find the window/widget with the given title or label. |
299 | // Pass a parent to begin the search from, or NULL to look through | |
300 | // all windows. | |
184b5d99 | 301 | WXDLLEXPORT wxWindow* wxFindWindowByLabel(const wxString& title, wxWindow *parent = (wxWindow *) NULL); |
c801d85f KB |
302 | |
303 | // Find window by name, and if that fails, by label. | |
184b5d99 | 304 | WXDLLEXPORT wxWindow* wxFindWindowByName(const wxString& name, wxWindow *parent = (wxWindow *) NULL); |
c801d85f KB |
305 | |
306 | // Returns menu item id or -1 if none. | |
184b5d99 | 307 | WXDLLEXPORT int wxFindMenuItemId(wxFrame *frame, const wxString& menuString, const wxString& itemString); |
c801d85f | 308 | |
57591e0e JS |
309 | // Find the wxWindow at the given point. wxGenericFindWindowAtPoint |
310 | // is always present but may be less reliable than a native version. | |
311 | WXDLLEXPORT wxWindow* wxGenericFindWindowAtPoint(const wxPoint& pt); | |
59a12e90 JS |
312 | WXDLLEXPORT wxWindow* wxFindWindowAtPoint(const wxPoint& pt); |
313 | ||
d6b9496a VZ |
314 | // ---------------------------------------------------------------------------- |
315 | // Message/event queue helpers | |
316 | // ---------------------------------------------------------------------------- | |
c801d85f KB |
317 | |
318 | // Yield to other apps/messages | |
afb74891 | 319 | WXDLLEXPORT bool wxYield(); |
c801d85f | 320 | |
cb2713bf JS |
321 | // Like wxYield, but fails silently if the yield is recursive. |
322 | WXDLLEXPORT bool wxYieldIfNeeded(); | |
323 | ||
ead7ce10 KB |
324 | // Yield to other apps/messages and disable user input |
325 | WXDLLEXPORT bool wxSafeYield(wxWindow *win = NULL); | |
326 | ||
95dee651 KB |
327 | // Enable or disable input to all top level windows |
328 | WXDLLEXPORT void wxEnableTopLevelWindows(bool enable = TRUE); | |
329 | ||
d6b9496a VZ |
330 | // Check whether this window wants to process messages, e.g. Stop button |
331 | // in long calculations. | |
332 | WXDLLEXPORT bool wxCheckForInterrupt(wxWindow *wnd); | |
333 | ||
334 | // Consume all events until no more left | |
335 | WXDLLEXPORT void wxFlushEvents(); | |
336 | ||
cd6ce4a9 VZ |
337 | // a class which disables all windows (except, may be, thegiven one) in its |
338 | // ctor and enables them back in its dtor | |
339 | class WXDLLEXPORT wxWindowDisabler | |
340 | { | |
341 | public: | |
342 | wxWindowDisabler(wxWindow *winToSkip = (wxWindow *)NULL); | |
343 | ~wxWindowDisabler(); | |
344 | ||
345 | private: | |
346 | wxWindowList *m_winDisabled; | |
347 | }; | |
348 | ||
d6b9496a VZ |
349 | // ---------------------------------------------------------------------------- |
350 | // Cursors | |
351 | // ---------------------------------------------------------------------------- | |
c801d85f KB |
352 | |
353 | // Set the cursor to the busy cursor for all windows | |
354 | class WXDLLEXPORT wxCursor; | |
355 | WXDLLEXPORT_DATA(extern wxCursor*) wxHOURGLASS_CURSOR; | |
184b5d99 | 356 | WXDLLEXPORT void wxBeginBusyCursor(wxCursor *cursor = wxHOURGLASS_CURSOR); |
e2a6f233 | 357 | |
c801d85f | 358 | // Restore cursor to normal |
afb74891 | 359 | WXDLLEXPORT void wxEndBusyCursor(); |
d6b9496a | 360 | |
c801d85f | 361 | // TRUE if we're between the above two calls |
afb74891 | 362 | WXDLLEXPORT bool wxIsBusy(); |
c801d85f | 363 | |
e2a6f233 JS |
364 | // Convenience class so we can just create a wxBusyCursor object on the stack |
365 | class WXDLLEXPORT wxBusyCursor | |
366 | { | |
afb74891 VZ |
367 | public: |
368 | wxBusyCursor(wxCursor* cursor = wxHOURGLASS_CURSOR) | |
369 | { wxBeginBusyCursor(cursor); } | |
f6bcfd97 | 370 | ~wxBusyCursor() |
afb74891 | 371 | { wxEndBusyCursor(); } |
e2a6f233 | 372 | |
f6bcfd97 BP |
373 | // FIXME: These two methods are currently only implemented (and needed?) |
374 | // in wxGTK. BusyCursor handling should probably be moved to | |
375 | // common code since the wxGTK and wxMSW implementations are very | |
376 | // similar except for wxMSW using HCURSOR directly instead of | |
377 | // wxCursor.. -- RL. | |
378 | static const wxCursor &GetStoredCursor(); | |
379 | static const wxCursor GetBusyCursor(); | |
380 | }; | |
c801d85f | 381 | |
c801d85f | 382 | |
d6b9496a | 383 | // ---------------------------------------------------------------------------- |
c801d85f | 384 | // Reading and writing resources (eg WIN.INI, .Xdefaults) |
d6b9496a VZ |
385 | // ---------------------------------------------------------------------------- |
386 | ||
47d67540 | 387 | #if wxUSE_RESOURCES |
62448488 JS |
388 | WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, const wxString& value, const wxString& file = wxEmptyString); |
389 | WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, float value, const wxString& file = wxEmptyString); | |
390 | WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, long value, const wxString& file = wxEmptyString); | |
391 | WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, int value, const wxString& file = wxEmptyString); | |
392 | ||
9d2f3c71 | 393 | WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, wxChar **value, const wxString& file = wxEmptyString); |
62448488 JS |
394 | WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, float *value, const wxString& file = wxEmptyString); |
395 | WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, long *value, const wxString& file = wxEmptyString); | |
396 | WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, int *value, const wxString& file = wxEmptyString); | |
47d67540 | 397 | #endif // wxUSE_RESOURCES |
c801d85f | 398 | |
c801d85f KB |
399 | void WXDLLEXPORT wxGetMousePosition( int* x, int* y ); |
400 | ||
401 | // MSW only: get user-defined resource from the .res file. | |
402 | // Returns NULL or newly-allocated memory, so use delete[] to clean up. | |
2049ba38 | 403 | #ifdef __WXMSW__ |
373658eb VZ |
404 | WXDLLEXPORT extern const wxChar* wxUserResourceStr; |
405 | WXDLLEXPORT wxChar* wxLoadUserResource(const wxString& resourceName, const wxString& resourceType = wxUserResourceStr); | |
d6b9496a VZ |
406 | #endif // MSW |
407 | ||
408 | // ---------------------------------------------------------------------------- | |
409 | // Display and colorss (X only) | |
410 | // ---------------------------------------------------------------------------- | |
c801d85f | 411 | |
d111a89a VZ |
412 | #ifdef __WXGTK__ |
413 | void *wxGetDisplay(); | |
414 | #endif | |
415 | ||
c801d85f | 416 | #ifdef __X__ |
d6b9496a VZ |
417 | WXDisplay *wxGetDisplay(); |
418 | bool wxSetDisplay(const wxString& display_name); | |
419 | wxString wxGetDisplayName(); | |
d111a89a | 420 | #endif // X or GTK+ |
c801d85f KB |
421 | |
422 | #ifdef __X__ | |
423 | ||
338dd992 JJ |
424 | #ifdef __VMS__ // Xlib.h for VMS is not (yet) compatible with C++ |
425 | // The resulting warnings are switched off here | |
426 | #pragma message disable nosimpint | |
427 | #endif | |
7266b672 | 428 | // #include <X11/Xlib.h> |
338dd992 JJ |
429 | #ifdef __VMS__ |
430 | #pragma message enable nosimpint | |
431 | #endif | |
c801d85f | 432 | |
c801d85f KB |
433 | #endif //__X__ |
434 | ||
e90c1d2a VZ |
435 | #endif // wxUSE_GUI |
436 | ||
f6bcfd97 BP |
437 | // ---------------------------------------------------------------------------- |
438 | // Error message functions used by wxWindows (deprecated, use wxLog) | |
439 | // ---------------------------------------------------------------------------- | |
440 | ||
441 | // Format a message on the standard error (UNIX) or the debugging | |
442 | // stream (Windows) | |
443 | WXDLLEXPORT void wxDebugMsg(const wxChar *fmt ...); | |
444 | ||
445 | // Non-fatal error (continues) | |
446 | WXDLLEXPORT_DATA(extern const wxChar*) wxInternalErrorStr; | |
447 | WXDLLEXPORT void wxError(const wxString& msg, const wxString& title = wxInternalErrorStr); | |
448 | ||
449 | // Fatal error (exits) | |
450 | WXDLLEXPORT_DATA(extern const wxChar*) wxFatalErrorStr; | |
451 | WXDLLEXPORT void wxFatalError(const wxString& msg, const wxString& title = wxFatalErrorStr); | |
452 | ||
453 | ||
c801d85f | 454 | #endif |
34138703 | 455 | // _WX_UTILSH__ |