]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
3452f00b | 2 | // Name: src/common/utilscmn.cpp |
c801d85f KB |
3 | // Purpose: Miscellaneous utility functions and classes |
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 | ||
e90c1d2a VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
c801d85f KB |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
e90c1d2a | 24 | #pragma hdrstop |
c801d85f KB |
25 | #endif |
26 | ||
27 | #ifndef WX_PRECOMP | |
fcdb9b38 | 28 | #include "wx/app.h" |
e90c1d2a VZ |
29 | #include "wx/string.h" |
30 | #include "wx/utils.h" | |
974e8d94 VZ |
31 | #include "wx/intl.h" |
32 | #include "wx/log.h" | |
e90c1d2a VZ |
33 | |
34 | #if wxUSE_GUI | |
35 | #include "wx/window.h" | |
e90c1d2a | 36 | #include "wx/frame.h" |
1e6feb95 | 37 | #include "wx/menu.h" |
e90c1d2a VZ |
38 | #include "wx/msgdlg.h" |
39 | #include "wx/textdlg.h" | |
78bcfcfc | 40 | #include "wx/textctrl.h" // for wxTE_PASSWORD |
974e8d94 VZ |
41 | #if wxUSE_ACCEL |
42 | #include "wx/menuitem.h" | |
43 | #include "wx/accel.h" | |
44 | #endif // wxUSE_ACCEL | |
e90c1d2a VZ |
45 | #endif // wxUSE_GUI |
46 | #endif // WX_PRECOMP | |
c801d85f | 47 | |
2739d4f0 VZ |
48 | #include "wx/apptrait.h" |
49 | ||
cd6ce4a9 VZ |
50 | #include "wx/process.h" |
51 | #include "wx/txtstrm.h" | |
498a1eeb RN |
52 | #include "wx/uri.h" |
53 | #include "wx/mimetype.h" | |
54 | #include "wx/config.h" | |
cd6ce4a9 | 55 | |
4676948b JS |
56 | #if defined(__WXWINCE__) && wxUSE_DATETIME |
57 | #include "wx/datetime.h" | |
58 | #endif | |
59 | ||
c801d85f KB |
60 | #include <ctype.h> |
61 | #include <stdio.h> | |
62 | #include <stdlib.h> | |
63 | #include <string.h> | |
e90c1d2a | 64 | |
13ff2485 | 65 | #if !wxONLY_WATCOM_EARLIER_THAN(1,4) |
3f4a0c5b VZ |
66 | #if !(defined(_MSC_VER) && (_MSC_VER > 800)) |
67 | #include <errno.h> | |
68 | #endif | |
c801d85f | 69 | #endif |
e90c1d2a | 70 | |
91b4c08d VZ |
71 | #if wxUSE_GUI |
72 | #include "wx/colordlg.h" | |
bf31fa26 | 73 | #include "wx/fontdlg.h" |
d1c8aaa3 | 74 | #include "wx/notebook.h" |
d1c8aaa3 | 75 | #include "wx/statusbr.h" |
91b4c08d VZ |
76 | #endif // wxUSE_GUI |
77 | ||
1c193821 | 78 | #ifndef __WXWINCE__ |
c801d85f | 79 | #include <time.h> |
1c193821 JS |
80 | #else |
81 | #include "wx/msw/wince/time.h" | |
82 | #endif | |
e90c1d2a | 83 | |
f14d6dd1 JS |
84 | #ifdef __WXMAC__ |
85 | #include "wx/mac/private.h" | |
86 | #ifndef __DARWIN__ | |
87 | #include "InternetConfig.h" | |
88 | #endif | |
89 | #endif | |
90 | ||
4676948b | 91 | #if !defined(__MWERKS__) && !defined(__WXWINCE__) |
e90c1d2a VZ |
92 | #include <sys/types.h> |
93 | #include <sys/stat.h> | |
469e1e5c | 94 | #endif |
c801d85f | 95 | |
82ef81ed | 96 | #if defined(__WXMSW__) |
5e1febfa | 97 | #include "wx/msw/private.h" |
3452f00b | 98 | #include "wx/msw/registry.h" |
b21d68c6 | 99 | #include <shellapi.h> // needed for SHELLEXECUTEINFO |
c801d85f KB |
100 | #endif |
101 | ||
ec67cff1 | 102 | #if wxUSE_BASE |
7c072018 | 103 | |
73deed44 VZ |
104 | // ---------------------------------------------------------------------------- |
105 | // common data | |
106 | // ---------------------------------------------------------------------------- | |
107 | ||
e90c1d2a VZ |
108 | // ============================================================================ |
109 | // implementation | |
110 | // ============================================================================ | |
c801d85f | 111 | |
7c072018 VZ |
112 | #if WXWIN_COMPATIBILITY_2_4 |
113 | ||
0080691b OK |
114 | wxChar * |
115 | copystring (const wxChar *s) | |
c801d85f | 116 | { |
657a7545 WS |
117 | if (s == NULL) s = wxEmptyString; |
118 | size_t len = wxStrlen (s) + 1; | |
c801d85f | 119 | |
657a7545 WS |
120 | wxChar *news = new wxChar[len]; |
121 | memcpy (news, s, len * sizeof(wxChar)); // Should be the fastest | |
c801d85f | 122 | |
657a7545 | 123 | return news; |
c801d85f KB |
124 | } |
125 | ||
7c072018 VZ |
126 | #endif // WXWIN_COMPATIBILITY_2_4 |
127 | ||
e12c92c2 VZ |
128 | // ---------------------------------------------------------------------------- |
129 | // String <-> Number conversions (deprecated) | |
130 | // ---------------------------------------------------------------------------- | |
131 | ||
132 | #if WXWIN_COMPATIBILITY_2_4 | |
133 | ||
fd242375 VS |
134 | WXDLLIMPEXP_DATA_BASE(const wxChar *) wxFloatToStringStr = wxT("%.2f"); |
135 | WXDLLIMPEXP_DATA_BASE(const wxChar *) wxDoubleToStringStr = wxT("%.2f"); | |
e12c92c2 | 136 | |
3f4a0c5b | 137 | void |
bc87fd68 | 138 | StringToFloat (const wxChar *s, float *number) |
c801d85f | 139 | { |
657a7545 WS |
140 | if (s && *s && number) |
141 | *number = (float) wxStrtod (s, (wxChar **) NULL); | |
c801d85f KB |
142 | } |
143 | ||
3f4a0c5b | 144 | void |
bc87fd68 | 145 | StringToDouble (const wxChar *s, double *number) |
c801d85f | 146 | { |
657a7545 WS |
147 | if (s && *s && number) |
148 | *number = wxStrtod (s, (wxChar **) NULL); | |
c801d85f KB |
149 | } |
150 | ||
0080691b OK |
151 | wxChar * |
152 | FloatToString (float number, const wxChar *fmt) | |
c801d85f | 153 | { |
657a7545 | 154 | static wxChar buf[256]; |
c801d85f | 155 | |
657a7545 WS |
156 | wxSprintf (buf, fmt, number); |
157 | return buf; | |
c801d85f KB |
158 | } |
159 | ||
0080691b OK |
160 | wxChar * |
161 | DoubleToString (double number, const wxChar *fmt) | |
c801d85f | 162 | { |
657a7545 | 163 | static wxChar buf[256]; |
c801d85f | 164 | |
657a7545 WS |
165 | wxSprintf (buf, fmt, number); |
166 | return buf; | |
c801d85f KB |
167 | } |
168 | ||
3f4a0c5b | 169 | void |
bc87fd68 | 170 | StringToInt (const wxChar *s, int *number) |
c801d85f | 171 | { |
657a7545 WS |
172 | if (s && *s && number) |
173 | *number = (int) wxStrtol (s, (wxChar **) NULL, 10); | |
c801d85f KB |
174 | } |
175 | ||
3f4a0c5b | 176 | void |
bc87fd68 | 177 | StringToLong (const wxChar *s, long *number) |
c801d85f | 178 | { |
657a7545 WS |
179 | if (s && *s && number) |
180 | *number = wxStrtol (s, (wxChar **) NULL, 10); | |
c801d85f KB |
181 | } |
182 | ||
84fff0b3 | 183 | wxChar * |
c801d85f KB |
184 | IntToString (int number) |
185 | { | |
657a7545 | 186 | static wxChar buf[20]; |
c801d85f | 187 | |
657a7545 WS |
188 | wxSprintf (buf, wxT("%d"), number); |
189 | return buf; | |
c801d85f KB |
190 | } |
191 | ||
84fff0b3 | 192 | wxChar * |
c801d85f KB |
193 | LongToString (long number) |
194 | { | |
657a7545 | 195 | static wxChar buf[20]; |
c801d85f | 196 | |
657a7545 WS |
197 | wxSprintf (buf, wxT("%ld"), number); |
198 | return buf; | |
c801d85f KB |
199 | } |
200 | ||
e12c92c2 VZ |
201 | #endif // WXWIN_COMPATIBILITY_2_4 |
202 | ||
c801d85f | 203 | // Array used in DecToHex conversion routine. |
223d09f6 | 204 | static wxChar hexArray[] = wxT("0123456789ABCDEF"); |
c801d85f KB |
205 | |
206 | // Convert 2-digit hex number to decimal | |
fd71308f | 207 | int wxHexToDec(const wxString& buf) |
c801d85f | 208 | { |
657a7545 | 209 | int firstDigit, secondDigit; |
3f4a0c5b | 210 | |
657a7545 WS |
211 | if (buf.GetChar(0) >= wxT('A')) |
212 | firstDigit = buf.GetChar(0) - wxT('A') + 10; | |
213 | else | |
214 | firstDigit = buf.GetChar(0) - wxT('0'); | |
c801d85f | 215 | |
657a7545 WS |
216 | if (buf.GetChar(1) >= wxT('A')) |
217 | secondDigit = buf.GetChar(1) - wxT('A') + 10; | |
218 | else | |
219 | secondDigit = buf.GetChar(1) - wxT('0'); | |
3f4a0c5b | 220 | |
657a7545 | 221 | return (firstDigit & 0xF) * 16 + (secondDigit & 0xF ); |
c801d85f KB |
222 | } |
223 | ||
224 | // Convert decimal integer to 2-character hex string | |
84fff0b3 | 225 | void wxDecToHex(int dec, wxChar *buf) |
c801d85f | 226 | { |
657a7545 WS |
227 | int firstDigit = (int)(dec/16.0); |
228 | int secondDigit = (int)(dec - (firstDigit*16.0)); | |
229 | buf[0] = hexArray[firstDigit]; | |
230 | buf[1] = hexArray[secondDigit]; | |
231 | buf[2] = 0; | |
c801d85f KB |
232 | } |
233 | ||
fd71308f JS |
234 | // Convert decimal integer to 2-character hex string |
235 | wxString wxDecToHex(int dec) | |
236 | { | |
84fff0b3 | 237 | wxChar buf[3]; |
fd71308f JS |
238 | wxDecToHex(dec, buf); |
239 | return wxString(buf); | |
240 | } | |
241 | ||
7c072018 VZ |
242 | // ---------------------------------------------------------------------------- |
243 | // misc functions | |
244 | // ---------------------------------------------------------------------------- | |
c801d85f KB |
245 | |
246 | // Return the current date/time | |
e90c1d2a | 247 | wxString wxNow() |
c801d85f | 248 | { |
4676948b JS |
249 | #ifdef __WXWINCE__ |
250 | #if wxUSE_DATETIME | |
251 | wxDateTime now = wxDateTime::Now(); | |
252 | return now.Format(); | |
253 | #else | |
254 | return wxEmptyString; | |
255 | #endif | |
256 | #else | |
2b5f62a0 VZ |
257 | time_t now = time((time_t *) NULL); |
258 | char *date = ctime(&now); | |
259 | date[24] = '\0'; | |
260 | return wxString::FromAscii(date); | |
4676948b | 261 | #endif |
c801d85f KB |
262 | } |
263 | ||
08873d36 VZ |
264 | void wxUsleep(unsigned long milliseconds) |
265 | { | |
266 | wxMilliSleep(milliseconds); | |
267 | } | |
268 | ||
7c072018 VZ |
269 | const wxChar *wxGetInstallPrefix() |
270 | { | |
271 | wxString prefix; | |
272 | ||
273 | if ( wxGetEnv(wxT("WXPREFIX"), &prefix) ) | |
274 | return prefix.c_str(); | |
275 | ||
276 | #ifdef wxINSTALL_PREFIX | |
277 | return wxT(wxINSTALL_PREFIX); | |
278 | #else | |
525d8583 | 279 | return wxEmptyString; |
7c072018 VZ |
280 | #endif |
281 | } | |
282 | ||
283 | wxString wxGetDataDir() | |
284 | { | |
10f206ad RL |
285 | wxString dir = wxGetInstallPrefix(); |
286 | dir << wxFILE_SEP_PATH << wxT("share") << wxFILE_SEP_PATH << wxT("wx"); | |
7c072018 VZ |
287 | return dir; |
288 | } | |
e90c1d2a | 289 | |
8bb6b2c0 | 290 | bool wxIsPlatformLittleEndian() |
2739d4f0 | 291 | { |
8bb6b2c0 VZ |
292 | // Are we little or big endian? This method is from Harbison & Steele. |
293 | union | |
294 | { | |
295 | long l; | |
296 | char c[sizeof(long)]; | |
297 | } u; | |
298 | u.l = 1; | |
299 | ||
300 | return u.c[0] == 1; | |
2739d4f0 | 301 | } |
1e6feb95 | 302 | |
8bb6b2c0 | 303 | |
230c9077 JS |
304 | /* |
305 | * Class to make it easier to specify platform-dependent values | |
306 | */ | |
307 | ||
308 | wxArrayInt* wxPlatform::sm_customPlatforms = NULL; | |
309 | ||
4bfec179 | 310 | void wxPlatform::Copy(const wxPlatform& platform) |
230c9077 | 311 | { |
4bfec179 JS |
312 | m_longValue = platform.m_longValue; |
313 | m_doubleValue = platform.m_doubleValue; | |
314 | m_stringValue = platform.m_stringValue; | |
315 | } | |
316 | ||
317 | wxPlatform wxPlatform::If(int platform, long value) | |
318 | { | |
319 | if (Is(platform)) | |
320 | return wxPlatform(value); | |
321 | else | |
322 | return wxPlatform(); | |
323 | } | |
324 | ||
325 | wxPlatform wxPlatform::IfNot(int platform, long value) | |
326 | { | |
327 | if (!Is(platform)) | |
328 | return wxPlatform(value); | |
329 | else | |
330 | return wxPlatform(); | |
331 | } | |
332 | ||
333 | wxPlatform& wxPlatform::ElseIf(int platform, long value) | |
334 | { | |
335 | if (Is(platform)) | |
230c9077 JS |
336 | m_longValue = value; |
337 | return *this; | |
338 | } | |
339 | ||
4bfec179 | 340 | wxPlatform& wxPlatform::ElseIfNot(int platform, long value) |
230c9077 | 341 | { |
4bfec179 | 342 | if (!Is(platform)) |
230c9077 JS |
343 | m_longValue = value; |
344 | return *this; | |
345 | } | |
346 | ||
4bfec179 | 347 | wxPlatform wxPlatform::If(int platform, double value) |
230c9077 | 348 | { |
4bfec179 JS |
349 | if (Is(platform)) |
350 | return wxPlatform(value); | |
351 | else | |
352 | return wxPlatform(); | |
353 | } | |
354 | ||
355 | wxPlatform wxPlatform::IfNot(int platform, double value) | |
356 | { | |
357 | if (!Is(platform)) | |
358 | return wxPlatform(value); | |
359 | else | |
360 | return wxPlatform(); | |
361 | } | |
362 | ||
363 | wxPlatform& wxPlatform::ElseIf(int platform, double value) | |
364 | { | |
365 | if (Is(platform)) | |
230c9077 JS |
366 | m_doubleValue = value; |
367 | return *this; | |
368 | } | |
369 | ||
4bfec179 | 370 | wxPlatform& wxPlatform::ElseIfNot(int platform, double value) |
230c9077 | 371 | { |
4bfec179 | 372 | if (!Is(platform)) |
230c9077 JS |
373 | m_doubleValue = value; |
374 | return *this; | |
375 | } | |
376 | ||
4bfec179 JS |
377 | wxPlatform wxPlatform::If(int platform, const wxString& value) |
378 | { | |
379 | if (Is(platform)) | |
380 | return wxPlatform(value); | |
381 | else | |
382 | return wxPlatform(); | |
383 | } | |
384 | ||
385 | wxPlatform wxPlatform::IfNot(int platform, const wxString& value) | |
386 | { | |
387 | if (!Is(platform)) | |
388 | return wxPlatform(value); | |
389 | else | |
390 | return wxPlatform(); | |
391 | } | |
392 | ||
393 | wxPlatform& wxPlatform::ElseIf(int platform, const wxString& value) | |
230c9077 | 394 | { |
4bfec179 | 395 | if (Is(platform)) |
230c9077 JS |
396 | m_stringValue = value; |
397 | return *this; | |
398 | } | |
399 | ||
4bfec179 | 400 | wxPlatform& wxPlatform::ElseIfNot(int platform, const wxString& value) |
230c9077 | 401 | { |
4bfec179 | 402 | if (!Is(platform)) |
230c9077 JS |
403 | m_stringValue = value; |
404 | return *this; | |
405 | } | |
406 | ||
4bfec179 | 407 | wxPlatform& wxPlatform::Else(long value) |
230c9077 JS |
408 | { |
409 | m_longValue = value; | |
410 | return *this; | |
411 | } | |
412 | ||
4bfec179 | 413 | wxPlatform& wxPlatform::Else(double value) |
230c9077 JS |
414 | { |
415 | m_doubleValue = value; | |
416 | return *this; | |
417 | } | |
418 | ||
4bfec179 | 419 | wxPlatform& wxPlatform::Else(const wxString& value) |
230c9077 JS |
420 | { |
421 | m_stringValue = value; | |
422 | return *this; | |
423 | } | |
424 | ||
425 | void wxPlatform::AddPlatform(int platform) | |
426 | { | |
427 | if (!sm_customPlatforms) | |
428 | sm_customPlatforms = new wxArrayInt; | |
429 | sm_customPlatforms->Add(platform); | |
430 | } | |
431 | ||
432 | void wxPlatform::ClearPlatforms() | |
433 | { | |
434 | delete sm_customPlatforms; | |
435 | sm_customPlatforms = NULL; | |
436 | } | |
437 | ||
438 | /// Function for testing current platform | |
439 | ||
4bfec179 | 440 | bool wxPlatform::Is(int platform) |
230c9077 JS |
441 | { |
442 | #ifdef __WXMSW__ | |
216c3543 | 443 | if (platform == wxOS_WINDOWS) |
230c9077 JS |
444 | return true; |
445 | #endif | |
446 | #ifdef __WXWINCE__ | |
216c3543 | 447 | if (platform == wxOS_WINDOWS_CE) |
230c9077 JS |
448 | return true; |
449 | #endif | |
a6e8c584 WS |
450 | |
451 | #if 0 | |
452 | ||
453 | // FIXME: wxWinPocketPC and wxWinSmartPhone are unknown symbols | |
454 | ||
230c9077 JS |
455 | #if defined(__WXWINCE__) && defined(__POCKETPC__) |
456 | if (platform == wxWinPocketPC) | |
457 | return true; | |
458 | #endif | |
459 | #if defined(__WXWINCE__) && defined(__SMARTPHONE__) | |
6aa68c25 | 460 | if (platform == wxWinSmartPhone) |
230c9077 JS |
461 | return true; |
462 | #endif | |
a6e8c584 WS |
463 | |
464 | #endif | |
465 | ||
230c9077 | 466 | #ifdef __WXGTK__ |
216c3543 | 467 | if (platform == wxPORT_GTK) |
230c9077 JS |
468 | return true; |
469 | #endif | |
470 | #ifdef __WXMAC__ | |
216c3543 | 471 | if (platform == wxPORT_MAC) |
230c9077 JS |
472 | return true; |
473 | #endif | |
474 | #ifdef __WXX11__ | |
216c3543 | 475 | if (platform == wxPORT_X11) |
230c9077 JS |
476 | return true; |
477 | #endif | |
478 | #ifdef __UNIX__ | |
216c3543 | 479 | if (platform == wxOS_UNIX) |
230c9077 JS |
480 | return true; |
481 | #endif | |
482 | #ifdef __WXMGL__ | |
216c3543 | 483 | if (platform == wxPORT_MGL) |
230c9077 JS |
484 | return true; |
485 | #endif | |
486 | #ifdef __WXOS2__ | |
216c3543 | 487 | if (platform == wxPORT_OS2) |
230c9077 JS |
488 | return true; |
489 | #endif | |
55d452c6 | 490 | #ifdef __WXCOCOA__ |
216c3543 | 491 | if (platform == wxPORT_MAC) |
230c9077 JS |
492 | return true; |
493 | #endif | |
494 | ||
495 | if (sm_customPlatforms && sm_customPlatforms->Index(platform) != wxNOT_FOUND) | |
496 | return true; | |
497 | ||
498 | return false; | |
499 | } | |
500 | ||
e90c1d2a | 501 | // ---------------------------------------------------------------------------- |
7c072018 | 502 | // network and user id functions |
e90c1d2a | 503 | // ---------------------------------------------------------------------------- |
c801d85f | 504 | |
7c072018 VZ |
505 | // Get Full RFC822 style email address |
506 | bool wxGetEmailAddress(wxChar *address, int maxSize) | |
c801d85f | 507 | { |
7c072018 VZ |
508 | wxString email = wxGetEmailAddress(); |
509 | if ( !email ) | |
cb719f2e | 510 | return false; |
c801d85f | 511 | |
7c072018 VZ |
512 | wxStrncpy(address, email, maxSize - 1); |
513 | address[maxSize - 1] = wxT('\0'); | |
514 | ||
cb719f2e | 515 | return true; |
c801d85f KB |
516 | } |
517 | ||
7c072018 | 518 | wxString wxGetEmailAddress() |
47bc1060 | 519 | { |
7c072018 | 520 | wxString email; |
974e8d94 | 521 | |
7c072018 | 522 | wxString host = wxGetFullHostName(); |
4055ed82 | 523 | if ( !host.empty() ) |
1e6feb95 | 524 | { |
7c072018 | 525 | wxString user = wxGetUserId(); |
4055ed82 | 526 | if ( !user.empty() ) |
1e6feb95 | 527 | { |
7c072018 | 528 | email << user << wxT('@') << host; |
974e8d94 | 529 | } |
974e8d94 VZ |
530 | } |
531 | ||
7c072018 | 532 | return email; |
974e8d94 VZ |
533 | } |
534 | ||
7c072018 | 535 | wxString wxGetUserId() |
c801d85f | 536 | { |
7c072018 | 537 | static const int maxLoginLen = 256; // FIXME arbitrary number |
c801d85f | 538 | |
7c072018 | 539 | wxString buf; |
4c3ebca9 | 540 | bool ok = wxGetUserId(wxStringBuffer(buf, maxLoginLen), maxLoginLen); |
c801d85f | 541 | |
7c072018 VZ |
542 | if ( !ok ) |
543 | buf.Empty(); | |
c801d85f | 544 | |
7c072018 | 545 | return buf; |
c801d85f KB |
546 | } |
547 | ||
7c072018 | 548 | wxString wxGetUserName() |
c801d85f | 549 | { |
7c072018 | 550 | static const int maxUserNameLen = 1024; // FIXME arbitrary number |
1e6feb95 | 551 | |
7c072018 | 552 | wxString buf; |
4c3ebca9 | 553 | bool ok = wxGetUserName(wxStringBuffer(buf, maxUserNameLen), maxUserNameLen); |
7c072018 VZ |
554 | |
555 | if ( !ok ) | |
556 | buf.Empty(); | |
557 | ||
558 | return buf; | |
59a12e90 JS |
559 | } |
560 | ||
7c072018 | 561 | wxString wxGetHostName() |
59a12e90 | 562 | { |
7c072018 | 563 | static const size_t hostnameSize = 257; |
c67d6888 | 564 | |
7c072018 | 565 | wxString buf; |
4c3ebca9 | 566 | bool ok = wxGetHostName(wxStringBuffer(buf, hostnameSize), hostnameSize); |
59a12e90 | 567 | |
7c072018 VZ |
568 | if ( !ok ) |
569 | buf.Empty(); | |
59a12e90 | 570 | |
7c072018 | 571 | return buf; |
59a12e90 JS |
572 | } |
573 | ||
7c072018 | 574 | wxString wxGetFullHostName() |
59a12e90 | 575 | { |
7c072018 | 576 | static const size_t hostnameSize = 257; |
c801d85f | 577 | |
7c072018 | 578 | wxString buf; |
4c3ebca9 | 579 | bool ok = wxGetFullHostName(wxStringBuffer(buf, hostnameSize), hostnameSize); |
7c072018 VZ |
580 | |
581 | if ( !ok ) | |
582 | buf.Empty(); | |
c801d85f | 583 | |
7c072018 VZ |
584 | return buf; |
585 | } | |
c801d85f | 586 | |
7c072018 VZ |
587 | wxString wxGetHomeDir() |
588 | { | |
589 | wxString home; | |
590 | wxGetHomeDir(&home); | |
c801d85f | 591 | |
7c072018 VZ |
592 | return home; |
593 | } | |
c801d85f | 594 | |
c801d85f KB |
595 | #if 0 |
596 | ||
7c072018 | 597 | wxString wxGetCurrentDir() |
c801d85f | 598 | { |
7c072018 VZ |
599 | wxString dir; |
600 | size_t len = 1024; | |
601 | bool ok; | |
602 | do | |
603 | { | |
604 | ok = getcwd(dir.GetWriteBuf(len + 1), len) != NULL; | |
605 | dir.UngetWriteBuf(); | |
c801d85f | 606 | |
7c072018 VZ |
607 | if ( !ok ) |
608 | { | |
609 | if ( errno != ERANGE ) | |
610 | { | |
611 | wxLogSysError(_T("Failed to get current directory")); | |
c801d85f | 612 | |
7c072018 VZ |
613 | return wxEmptyString; |
614 | } | |
3f4a0c5b | 615 | else |
7c072018 VZ |
616 | { |
617 | // buffer was too small, retry with a larger one | |
618 | len *= 2; | |
619 | } | |
3f4a0c5b | 620 | } |
7c072018 VZ |
621 | //else: ok |
622 | } while ( !ok ); | |
c801d85f | 623 | |
7c072018 | 624 | return dir; |
c801d85f KB |
625 | } |
626 | ||
7c072018 | 627 | #endif // 0 |
e90c1d2a VZ |
628 | |
629 | // ---------------------------------------------------------------------------- | |
7c072018 | 630 | // wxExecute |
e90c1d2a | 631 | // ---------------------------------------------------------------------------- |
ead7ce10 | 632 | |
7c072018 VZ |
633 | // wxDoExecuteWithCapture() helper: reads an entire stream into one array |
634 | // | |
cb719f2e | 635 | // returns true if ok, false if error |
7c072018 VZ |
636 | #if wxUSE_STREAMS |
637 | static bool ReadAll(wxInputStream *is, wxArrayString& output) | |
dfad0599 | 638 | { |
cb719f2e | 639 | wxCHECK_MSG( is, false, _T("NULL stream in wxExecute()?") ); |
dfad0599 | 640 | |
7c072018 VZ |
641 | // the stream could be already at EOF or in wxSTREAM_BROKEN_PIPE state |
642 | is->Reset(); | |
1e6feb95 | 643 | |
7c072018 | 644 | wxTextInputStream tis(*is); |
1e6feb95 | 645 | |
cb719f2e | 646 | bool cont = true; |
7c072018 | 647 | while ( cont ) |
d2f50933 | 648 | { |
7c072018 VZ |
649 | wxString line = tis.ReadLine(); |
650 | if ( is->Eof() ) | |
651 | break; | |
652 | ||
653 | if ( !*is ) | |
654 | { | |
cb719f2e | 655 | cont = false; |
7c072018 VZ |
656 | } |
657 | else | |
658 | { | |
659 | output.Add(line); | |
660 | } | |
d2f50933 VZ |
661 | } |
662 | ||
7c072018 | 663 | return cont; |
dfad0599 | 664 | } |
7c072018 | 665 | #endif // wxUSE_STREAMS |
d2f50933 | 666 | |
7c072018 VZ |
667 | // this is a private function because it hasn't a clean interface: the first |
668 | // array is passed by reference, the second by pointer - instead we have 2 | |
669 | // public versions of wxExecute() below | |
670 | static long wxDoExecuteWithCapture(const wxString& command, | |
671 | wxArrayString& output, | |
4d172154 VZ |
672 | wxArrayString* error, |
673 | int flags) | |
d2f50933 | 674 | { |
7c072018 VZ |
675 | // create a wxProcess which will capture the output |
676 | wxProcess *process = new wxProcess; | |
677 | process->Redirect(); | |
dfad0599 | 678 | |
4d172154 | 679 | long rc = wxExecute(command, wxEXEC_SYNC | flags, process); |
1e6feb95 | 680 | |
7c072018 VZ |
681 | #if wxUSE_STREAMS |
682 | if ( rc != -1 ) | |
bf31fa26 | 683 | { |
7c072018 VZ |
684 | if ( !ReadAll(process->GetInputStream(), output) ) |
685 | rc = -1; | |
91b4c08d | 686 | |
7c072018 VZ |
687 | if ( error ) |
688 | { | |
689 | if ( !ReadAll(process->GetErrorStream(), *error) ) | |
690 | rc = -1; | |
691 | } | |
91b4c08d | 692 | |
7c072018 | 693 | } |
e70ba80d WS |
694 | #else |
695 | wxUnusedVar(output); | |
696 | wxUnusedVar(error); | |
697 | #endif // wxUSE_STREAMS/!wxUSE_STREAMS | |
91b4c08d | 698 | |
7c072018 | 699 | delete process; |
1e6feb95 | 700 | |
7c072018 | 701 | return rc; |
7c072018 | 702 | } |
bf31fa26 | 703 | |
4d172154 | 704 | long wxExecute(const wxString& command, wxArrayString& output, int flags) |
bf31fa26 | 705 | { |
4d172154 | 706 | return wxDoExecuteWithCapture(command, output, NULL, flags); |
7c072018 | 707 | } |
bf31fa26 | 708 | |
7c072018 VZ |
709 | long wxExecute(const wxString& command, |
710 | wxArrayString& output, | |
4d172154 VZ |
711 | wxArrayString& error, |
712 | int flags) | |
7c072018 | 713 | { |
4d172154 | 714 | return wxDoExecuteWithCapture(command, output, &error, flags); |
bf31fa26 VZ |
715 | } |
716 | ||
498a1eeb RN |
717 | // ---------------------------------------------------------------------------- |
718 | // Launch default browser | |
719 | // ---------------------------------------------------------------------------- | |
720 | ||
42d0df00 | 721 | bool wxLaunchDefaultBrowser(const wxString& urlOrig, int flags) |
498a1eeb | 722 | { |
42d0df00 VZ |
723 | wxUnusedVar(flags); |
724 | ||
7999124f VZ |
725 | // set the scheme of url to http if it does not have one |
726 | wxString url(urlOrig); | |
727 | if ( !wxURI(url).HasScheme() ) | |
728 | url.Prepend(wxT("http://")); | |
532d575b | 729 | |
7999124f | 730 | #if defined(__WXMSW__) |
5ccb95f6 WS |
731 | |
732 | #if wxUSE_IPC | |
42d0df00 VZ |
733 | if ( flags & wxBROWSER_NEW_WINDOW ) |
734 | { | |
735 | // ShellExecuteEx() opens the URL in an existing window by default so | |
736 | // we can't use it if we need a new window | |
737 | wxRegKey key(wxRegKey::HKCR, url.BeforeFirst(':') + _T("\\shell\\open")); | |
738 | if ( key.Exists() ) | |
739 | { | |
740 | wxRegKey keyDDE(key, wxT("DDEExec")); | |
741 | if ( keyDDE.Exists() ) | |
742 | { | |
743 | const wxString ddeTopic = wxRegKey(keyDDE, wxT("topic")); | |
744 | ||
745 | // we only know the syntax of WWW_OpenURL DDE request for IE, | |
746 | // optimistically assume that all other browsers are compatible | |
747 | // with it | |
748 | wxString ddeCmd; | |
749 | bool ok = ddeTopic == wxT("WWW_OpenURL"); | |
750 | if ( ok ) | |
751 | { | |
588c80de | 752 | ddeCmd = keyDDE.QueryDefaultValue(); |
42d0df00 VZ |
753 | ok = !ddeCmd.empty(); |
754 | } | |
755 | ||
756 | if ( ok ) | |
757 | { | |
758 | // for WWW_OpenURL, the index of the window to open the URL | |
759 | // in is -1 (meaning "current") by default, replace it with | |
760 | // 0 which means "new" (see KB article 160957) | |
761 | ok = ddeCmd.Replace(wxT("-1"), wxT("0"), | |
762 | false /* only first occurence */) == 1; | |
763 | } | |
764 | ||
765 | if ( ok ) | |
766 | { | |
767 | // and also replace the parameters: the topic should | |
768 | // contain a placeholder for the URL | |
769 | ok = ddeCmd.Replace(wxT("%1"), url, false) == 1; | |
770 | } | |
771 | ||
772 | if ( ok ) | |
773 | { | |
774 | // try to send it the DDE request now but ignore the errors | |
775 | wxLogNull noLog; | |
776 | ||
777 | const wxString ddeServer = wxRegKey(keyDDE, wxT("application")); | |
778 | if ( wxExecuteDDE(ddeServer, ddeTopic, ddeCmd) ) | |
779 | return true; | |
780 | ||
781 | // this is not necessarily an error: maybe browser is | |
782 | // simply not running, but no matter, in any case we're | |
783 | // going to launch it using ShellExecuteEx() below now and | |
784 | // we shouldn't try to open a new window if we open a new | |
785 | // browser anyhow | |
786 | } | |
787 | } | |
788 | } | |
789 | } | |
5ccb95f6 | 790 | #endif // wxUSE_IPC |
42d0df00 | 791 | |
7999124f VZ |
792 | WinStruct<SHELLEXECUTEINFO> sei; |
793 | sei.lpFile = url.c_str(); | |
794 | sei.lpVerb = _T("open"); | |
795 | sei.nShow = SW_SHOWNORMAL; | |
498a1eeb | 796 | |
7999124f | 797 | ::ShellExecuteEx(&sei); |
657a7545 | 798 | |
7999124f | 799 | const int nResult = (int) sei.hInstApp; |
498a1eeb | 800 | |
7999124f VZ |
801 | // Firefox returns file not found for some reason, so make an exception |
802 | // for it | |
803 | if ( nResult > 32 || nResult == SE_ERR_FNF ) | |
498a1eeb | 804 | { |
657a7545 | 805 | #ifdef __WXDEBUG__ |
498a1eeb | 806 | // Log something if SE_ERR_FNF happens |
7999124f VZ |
807 | if ( nResult == SE_ERR_FNF ) |
808 | wxLogDebug(wxT("SE_ERR_FNF from ShellExecute -- maybe FireFox?")); | |
809 | #endif // __WXDEBUG__ | |
810 | return true; | |
657a7545 | 811 | } |
f14d6dd1 JS |
812 | #elif defined(__WXMAC__) |
813 | OSStatus err; | |
814 | ICInstance inst; | |
815 | SInt32 startSel; | |
816 | SInt32 endSel; | |
817 | ||
818 | err = ICStart(&inst, 'STKA'); // put your app creator code here | |
13a1e96f DS |
819 | if (err == noErr) |
820 | { | |
f14d6dd1 | 821 | #if !TARGET_CARBON |
13a1e96f | 822 | err = ICFindConfigFile(inst, 0, NULL); |
f14d6dd1 JS |
823 | #endif |
824 | if (err == noErr) | |
825 | { | |
826 | ConstStr255Param hint = 0; | |
827 | startSel = 0; | |
76b49cf4 | 828 | endSel = url.length(); |
f14d6dd1 JS |
829 | err = ICLaunchURL(inst, hint, url.fn_str(), endSel, &startSel, &endSel); |
830 | if (err != noErr) | |
831 | wxLogDebug(wxT("ICLaunchURL error %d"), (int) err); | |
832 | } | |
833 | ICStop(inst); | |
834 | return true; | |
835 | } | |
836 | else | |
837 | { | |
838 | wxLogDebug(wxT("ICStart error %d"), (int) err); | |
839 | return false; | |
840 | } | |
657a7545 | 841 | #elif wxUSE_MIMETYPE |
498a1eeb | 842 | // Non-windows way |
13a1e96f DS |
843 | bool ok = false; |
844 | wxString cmd; | |
845 | ||
846 | wxFileType *ft = wxTheMimeTypesManager->GetFileTypeFromExtension(_T("html")); | |
7999124f | 847 | if ( ft ) |
657a7545 | 848 | { |
7999124f VZ |
849 | wxString mt; |
850 | ft->GetMimeType(&mt); | |
498a1eeb | 851 | |
13a1e96f | 852 | ok = ft->GetOpenCommand(&cmd, wxFileType::MessageParameters(url)); |
7999124f | 853 | delete ft; |
498a1eeb | 854 | } |
13a1e96f DS |
855 | |
856 | if ( !ok || cmd.empty() ) | |
2830b4a4 | 857 | { |
13a1e96f DS |
858 | // fallback to checking for the BROWSER environment variable |
859 | cmd = wxGetenv(wxT("BROWSER")); | |
860 | if ( !cmd.empty() ) | |
861 | cmd << _T(' ') << url; | |
2830b4a4 | 862 | } |
13a1e96f DS |
863 | |
864 | ok = ( !cmd.empty() && wxExecute(cmd) ); | |
865 | if (ok) | |
866 | return ok; | |
867 | ||
868 | // no file type for HTML extension | |
869 | wxLogError(_T("No default application configured for HTML files.")); | |
870 | ||
7999124f | 871 | #endif // !wxUSE_MIMETYPE && !__WXMSW__ |
532d575b | 872 | |
7999124f VZ |
873 | wxLogSysError(_T("Failed to open URL \"%s\" in default browser."), |
874 | url.c_str()); | |
657a7545 | 875 | |
7999124f | 876 | return false; |
498a1eeb RN |
877 | } |
878 | ||
91b4c08d | 879 | // ---------------------------------------------------------------------------- |
7c072018 | 880 | // wxApp::Yield() wrappers for backwards compatibility |
91b4c08d VZ |
881 | // ---------------------------------------------------------------------------- |
882 | ||
7c072018 | 883 | bool wxYield() |
469e1e5c | 884 | { |
7c072018 | 885 | return wxTheApp && wxTheApp->Yield(); |
469e1e5c | 886 | } |
7c072018 VZ |
887 | |
888 | bool wxYieldIfNeeded() | |
469e1e5c | 889 | { |
cb719f2e | 890 | return wxTheApp && wxTheApp->Yield(true); |
469e1e5c | 891 | } |
7c072018 | 892 | |
ec67cff1 | 893 | #endif // wxUSE_BASE |
7c072018 VZ |
894 | |
895 | // ============================================================================ | |
896 | // GUI-only functions from now on | |
897 | // ============================================================================ | |
898 | ||
899 | #if wxUSE_GUI | |
900 | ||
4c3ebca9 MB |
901 | // Id generation |
902 | static long wxCurrentId = 100; | |
903 | ||
c838b68e | 904 | long wxNewId() |
4c3ebca9 | 905 | { |
c838b68e VS |
906 | // skip the part of IDs space that contains hard-coded values: |
907 | if (wxCurrentId == wxID_LOWEST) | |
908 | wxCurrentId = wxID_HIGHEST + 1; | |
909 | ||
910 | return wxCurrentId++; | |
4c3ebca9 MB |
911 | } |
912 | ||
913 | long | |
914 | wxGetCurrentId(void) { return wxCurrentId; } | |
915 | ||
916 | void | |
917 | wxRegisterId (long id) | |
918 | { | |
919 | if (id >= wxCurrentId) | |
920 | wxCurrentId = id + 1; | |
921 | } | |
922 | ||
e90c1d2a | 923 | // ---------------------------------------------------------------------------- |
7c072018 | 924 | // Menu accelerators related functions |
e90c1d2a VZ |
925 | // ---------------------------------------------------------------------------- |
926 | ||
7c072018 | 927 | wxChar *wxStripMenuCodes(const wxChar *in, wxChar *out) |
e90c1d2a | 928 | { |
9a6384ca | 929 | #if wxUSE_MENUS |
7c072018 | 930 | wxString s = wxMenuItem::GetLabelFromText(in); |
9a6384ca WS |
931 | #else |
932 | wxString str(in); | |
933 | wxString s = wxStripMenuCodes(str); | |
934 | #endif // wxUSE_MENUS | |
7c072018 VZ |
935 | if ( out ) |
936 | { | |
937 | // go smash their buffer if it's not big enough - I love char * params | |
938 | memcpy(out, s.c_str(), s.length() * sizeof(wxChar)); | |
939 | } | |
940 | else | |
941 | { | |
f526f752 MB |
942 | // MYcopystring - for easier search... |
943 | out = new wxChar[s.length() + 1]; | |
944 | wxStrcpy(out, s.c_str()); | |
7c072018 VZ |
945 | } |
946 | ||
947 | return out; | |
e90c1d2a VZ |
948 | } |
949 | ||
74639764 | 950 | wxString wxStripMenuCodes(const wxString& in, int flags) |
e90c1d2a | 951 | { |
74639764 VZ |
952 | wxASSERT_MSG( flags, _T("this is useless to call without any flags") ); |
953 | ||
7c072018 | 954 | wxString out; |
79f585d9 | 955 | |
7c072018 VZ |
956 | size_t len = in.length(); |
957 | out.reserve(len); | |
79f585d9 | 958 | |
7c072018 VZ |
959 | for ( size_t n = 0; n < len; n++ ) |
960 | { | |
961 | wxChar ch = in[n]; | |
74639764 | 962 | if ( (flags & wxStrip_Mnemonics) && ch == _T('&') ) |
cd6ce4a9 | 963 | { |
7c072018 VZ |
964 | // skip it, it is used to introduce the accel char (or to quote |
965 | // itself in which case it should still be skipped): note that it | |
966 | // can't be the last character of the string | |
967 | if ( ++n == len ) | |
79f585d9 | 968 | { |
7c072018 VZ |
969 | wxLogDebug(_T("Invalid menu string '%s'"), in.c_str()); |
970 | } | |
971 | else | |
972 | { | |
973 | // use the next char instead | |
974 | ch = in[n]; | |
79f585d9 | 975 | } |
cd6ce4a9 | 976 | } |
74639764 | 977 | else if ( (flags & wxStrip_Accel) && ch == _T('\t') ) |
79f585d9 | 978 | { |
7c072018 VZ |
979 | // everything after TAB is accel string, exit the loop |
980 | break; | |
79f585d9 | 981 | } |
7c072018 VZ |
982 | |
983 | out += ch; | |
225fe9d6 VZ |
984 | } |
985 | ||
7c072018 | 986 | return out; |
cd6ce4a9 VZ |
987 | } |
988 | ||
cbc66a27 | 989 | // ---------------------------------------------------------------------------- |
7c072018 | 990 | // Window search functions |
cbc66a27 VZ |
991 | // ---------------------------------------------------------------------------- |
992 | ||
7c072018 VZ |
993 | /* |
994 | * If parent is non-NULL, look through children for a label or title | |
995 | * matching the specified string. If NULL, look through all top-level windows. | |
996 | * | |
997 | */ | |
e2a6f233 | 998 | |
7c072018 VZ |
999 | wxWindow * |
1000 | wxFindWindowByLabel (const wxString& title, wxWindow * parent) | |
134677bd | 1001 | { |
7c072018 VZ |
1002 | return wxWindow::FindWindowByLabel( title, parent ); |
1003 | } | |
b829bf55 | 1004 | |
b829bf55 | 1005 | |
7c072018 VZ |
1006 | /* |
1007 | * If parent is non-NULL, look through children for a name | |
1008 | * matching the specified string. If NULL, look through all top-level windows. | |
1009 | * | |
1010 | */ | |
134677bd | 1011 | |
7c072018 VZ |
1012 | wxWindow * |
1013 | wxFindWindowByName (const wxString& name, wxWindow * parent) | |
2c18f21d | 1014 | { |
7c072018 | 1015 | return wxWindow::FindWindowByName( name, parent ); |
2c18f21d VS |
1016 | } |
1017 | ||
cb719f2e | 1018 | // Returns menu item id or wxNOT_FOUND if none. |
7c072018 VZ |
1019 | int |
1020 | wxFindMenuItemId (wxFrame * frame, const wxString& menuString, const wxString& itemString) | |
e2a6f233 | 1021 | { |
7c072018 | 1022 | #if wxUSE_MENUS |
9a6384ca WS |
1023 | wxMenuBar *menuBar = frame->GetMenuBar (); |
1024 | if ( menuBar ) | |
1025 | return menuBar->FindMenuItem (menuString, itemString); | |
7c072018 | 1026 | #endif // wxUSE_MENUS |
0fb67cd1 | 1027 | |
9a6384ca | 1028 | return wxNOT_FOUND; |
e2a6f233 JS |
1029 | } |
1030 | ||
7c072018 VZ |
1031 | // Try to find the deepest child that contains 'pt'. |
1032 | // We go backwards, to try to allow for controls that are spacially | |
1033 | // within other controls, but are still siblings (e.g. buttons within | |
1034 | // static boxes). Static boxes are likely to be created _before_ controls | |
1035 | // that sit inside them. | |
1036 | wxWindow* wxFindWindowAtPoint(wxWindow* win, const wxPoint& pt) | |
e2a6f233 | 1037 | { |
7c072018 VZ |
1038 | if (!win->IsShown()) |
1039 | return NULL; | |
0fb67cd1 | 1040 | |
7c072018 VZ |
1041 | // Hack for wxNotebook case: at least in wxGTK, all pages |
1042 | // claim to be shown, so we must only deal with the selected one. | |
1043 | #if wxUSE_NOTEBOOK | |
1044 | if (win->IsKindOf(CLASSINFO(wxNotebook))) | |
e2a6f233 | 1045 | { |
7c072018 VZ |
1046 | wxNotebook* nb = (wxNotebook*) win; |
1047 | int sel = nb->GetSelection(); | |
1048 | if (sel >= 0) | |
1049 | { | |
1050 | wxWindow* child = nb->GetPage(sel); | |
1051 | wxWindow* foundWin = wxFindWindowAtPoint(child, pt); | |
1052 | if (foundWin) | |
1053 | return foundWin; | |
1054 | } | |
e2a6f233 | 1055 | } |
7c072018 | 1056 | #endif |
0fb67cd1 | 1057 | |
df5168c4 | 1058 | wxWindowList::compatibility_iterator node = win->GetChildren().GetLast(); |
7c072018 VZ |
1059 | while (node) |
1060 | { | |
1061 | wxWindow* child = node->GetData(); | |
1062 | wxWindow* foundWin = wxFindWindowAtPoint(child, pt); | |
1063 | if (foundWin) | |
1064 | return foundWin; | |
1065 | node = node->GetPrevious(); | |
1066 | } | |
1067 | ||
1068 | wxPoint pos = win->GetPosition(); | |
1069 | wxSize sz = win->GetSize(); | |
7aa7d2d4 | 1070 | if ( !win->IsTopLevel() && win->GetParent() ) |
7c072018 VZ |
1071 | { |
1072 | pos = win->GetParent()->ClientToScreen(pos); | |
1073 | } | |
1074 | ||
1075 | wxRect rect(pos, sz); | |
1076 | if (rect.Inside(pt)) | |
1077 | return win; | |
622eb786 VZ |
1078 | |
1079 | return NULL; | |
0fb67cd1 VZ |
1080 | } |
1081 | ||
7c072018 | 1082 | wxWindow* wxGenericFindWindowAtPoint(const wxPoint& pt) |
0fb67cd1 | 1083 | { |
7c072018 VZ |
1084 | // Go backwards through the list since windows |
1085 | // on top are likely to have been appended most | |
1086 | // recently. | |
df5168c4 | 1087 | wxWindowList::compatibility_iterator node = wxTopLevelWindows.GetLast(); |
7c072018 VZ |
1088 | while (node) |
1089 | { | |
1090 | wxWindow* win = node->GetData(); | |
1091 | wxWindow* found = wxFindWindowAtPoint(win, pt); | |
1092 | if (found) | |
1093 | return found; | |
1094 | node = node->GetPrevious(); | |
1095 | } | |
1096 | return NULL; | |
1097 | } | |
0fb67cd1 | 1098 | |
7c072018 VZ |
1099 | // ---------------------------------------------------------------------------- |
1100 | // GUI helpers | |
1101 | // ---------------------------------------------------------------------------- | |
0fb67cd1 | 1102 | |
7c072018 VZ |
1103 | /* |
1104 | * N.B. these convenience functions must be separate from msgdlgg.cpp, textdlgg.cpp | |
1105 | * since otherwise the generic code may be pulled in unnecessarily. | |
1106 | */ | |
0fb67cd1 | 1107 | |
7c072018 | 1108 | #if wxUSE_MSGDLG |
0fb67cd1 | 1109 | |
7c072018 VZ |
1110 | int wxMessageBox(const wxString& message, const wxString& caption, long style, |
1111 | wxWindow *parent, int WXUNUSED(x), int WXUNUSED(y) ) | |
0fb67cd1 | 1112 | { |
53a6ac21 DS |
1113 | long decorated_style = style; |
1114 | ||
1115 | if ( ( style & ( wxICON_EXCLAMATION | wxICON_HAND | wxICON_INFORMATION | wxICON_QUESTION ) ) == 0 ) | |
1116 | { | |
1117 | decorated_style |= ( style & wxYES ) ? wxICON_QUESTION : wxICON_INFORMATION ; | |
1118 | } | |
1119 | ||
1120 | wxMessageDialog dialog(parent, message, caption, decorated_style); | |
0fb67cd1 | 1121 | |
7c072018 VZ |
1122 | int ans = dialog.ShowModal(); |
1123 | switch ( ans ) | |
1124 | { | |
1125 | case wxID_OK: | |
1126 | return wxOK; | |
1127 | case wxID_YES: | |
1128 | return wxYES; | |
1129 | case wxID_NO: | |
1130 | return wxNO; | |
1131 | case wxID_CANCEL: | |
1132 | return wxCANCEL; | |
1133 | } | |
0fb67cd1 | 1134 | |
7c072018 | 1135 | wxFAIL_MSG( _T("unexpected return code from wxMessageDialog") ); |
0fb67cd1 | 1136 | |
7c072018 | 1137 | return wxCANCEL; |
e2a6f233 JS |
1138 | } |
1139 | ||
7c072018 | 1140 | #endif // wxUSE_MSGDLG |
518b5d2f | 1141 | |
7c072018 | 1142 | #if wxUSE_TEXTDLG |
518b5d2f | 1143 | |
7c072018 VZ |
1144 | wxString wxGetTextFromUser(const wxString& message, const wxString& caption, |
1145 | const wxString& defaultValue, wxWindow *parent, | |
13d13a9e | 1146 | wxCoord x, wxCoord y, bool centre ) |
7c072018 VZ |
1147 | { |
1148 | wxString str; | |
13d13a9e WS |
1149 | long style = wxTextEntryDialogStyle; |
1150 | ||
1151 | if (centre) | |
1152 | style |= wxCENTRE; | |
1153 | else | |
1154 | style &= ~wxCENTRE; | |
1155 | ||
1156 | wxTextEntryDialog dialog(parent, message, caption, defaultValue, style, wxPoint(x, y)); | |
1157 | ||
7c072018 VZ |
1158 | if (dialog.ShowModal() == wxID_OK) |
1159 | { | |
1160 | str = dialog.GetValue(); | |
1161 | } | |
0fb67cd1 | 1162 | |
7c072018 | 1163 | return str; |
518b5d2f VZ |
1164 | } |
1165 | ||
7c072018 VZ |
1166 | wxString wxGetPasswordFromUser(const wxString& message, |
1167 | const wxString& caption, | |
1168 | const wxString& defaultValue, | |
b3bb2a74 KH |
1169 | wxWindow *parent, |
1170 | wxCoord x, wxCoord y, bool centre ) | |
96c5bd7f | 1171 | { |
7c072018 | 1172 | wxString str; |
b3bb2a74 KH |
1173 | long style = wxTextEntryDialogStyle; |
1174 | ||
1175 | if (centre) | |
1176 | style |= wxCENTRE; | |
1177 | else | |
1178 | style &= ~wxCENTRE; | |
1179 | ||
12cfa304 KH |
1180 | wxPasswordEntryDialog dialog(parent, message, caption, defaultValue, |
1181 | style, wxPoint(x, y)); | |
7c072018 VZ |
1182 | if ( dialog.ShowModal() == wxID_OK ) |
1183 | { | |
1184 | str = dialog.GetValue(); | |
1185 | } | |
96c5bd7f | 1186 | |
7c072018 VZ |
1187 | return str; |
1188 | } | |
96c5bd7f | 1189 | |
7c072018 | 1190 | #endif // wxUSE_TEXTDLG |
96c5bd7f | 1191 | |
7c072018 | 1192 | #if wxUSE_COLOURDLG |
96c5bd7f | 1193 | |
f14d6dd1 | 1194 | wxColour wxGetColourFromUser(wxWindow *parent, const wxColour& colInit, const wxString& caption) |
c51deffc | 1195 | { |
7c072018 | 1196 | wxColourData data; |
cb719f2e | 1197 | data.SetChooseFull(true); |
7c072018 VZ |
1198 | if ( colInit.Ok() ) |
1199 | { | |
1200 | data.SetColour((wxColour &)colInit); // const_cast | |
1201 | } | |
c51deffc | 1202 | |
7c072018 VZ |
1203 | wxColour colRet; |
1204 | wxColourDialog dialog(parent, &data); | |
76b49cf4 | 1205 | if (!caption.empty()) |
f14d6dd1 | 1206 | dialog.SetTitle(caption); |
7c072018 VZ |
1207 | if ( dialog.ShowModal() == wxID_OK ) |
1208 | { | |
1209 | colRet = dialog.GetColourData().GetColour(); | |
1210 | } | |
1211 | //else: leave it invalid | |
1212 | ||
1213 | return colRet; | |
c51deffc | 1214 | } |
bc385ba9 | 1215 | |
7c072018 | 1216 | #endif // wxUSE_COLOURDLG |
bc385ba9 | 1217 | |
7c072018 VZ |
1218 | #if wxUSE_FONTDLG |
1219 | ||
f14d6dd1 | 1220 | wxFont wxGetFontFromUser(wxWindow *parent, const wxFont& fontInit, const wxString& caption) |
bc385ba9 | 1221 | { |
7c072018 VZ |
1222 | wxFontData data; |
1223 | if ( fontInit.Ok() ) | |
bc385ba9 | 1224 | { |
7c072018 VZ |
1225 | data.SetInitialFont(fontInit); |
1226 | } | |
bc385ba9 | 1227 | |
7c072018 VZ |
1228 | wxFont fontRet; |
1229 | wxFontDialog dialog(parent, data); | |
76b49cf4 | 1230 | if (!caption.empty()) |
f14d6dd1 | 1231 | dialog.SetTitle(caption); |
7c072018 VZ |
1232 | if ( dialog.ShowModal() == wxID_OK ) |
1233 | { | |
1234 | fontRet = dialog.GetFontData().GetChosenFont(); | |
1235 | } | |
1236 | //else: leave it invalid | |
bc385ba9 | 1237 | |
7c072018 | 1238 | return fontRet; |
bc385ba9 VZ |
1239 | } |
1240 | ||
7c072018 | 1241 | #endif // wxUSE_FONTDLG |
2b5f62a0 | 1242 | |
7c072018 VZ |
1243 | // ---------------------------------------------------------------------------- |
1244 | // wxSafeYield and supporting functions | |
1245 | // ---------------------------------------------------------------------------- | |
2b5f62a0 | 1246 | |
7c072018 VZ |
1247 | void wxEnableTopLevelWindows(bool enable) |
1248 | { | |
df5168c4 | 1249 | wxWindowList::compatibility_iterator node; |
7c072018 VZ |
1250 | for ( node = wxTopLevelWindows.GetFirst(); node; node = node->GetNext() ) |
1251 | node->GetData()->Enable(enable); | |
1252 | } | |
2b5f62a0 | 1253 | |
7c072018 VZ |
1254 | wxWindowDisabler::wxWindowDisabler(wxWindow *winToSkip) |
1255 | { | |
1256 | // remember the top level windows which were already disabled, so that we | |
1257 | // don't reenable them later | |
1258 | m_winDisabled = NULL; | |
1259 | ||
df5168c4 | 1260 | wxWindowList::compatibility_iterator node; |
7c072018 | 1261 | for ( node = wxTopLevelWindows.GetFirst(); node; node = node->GetNext() ) |
2b5f62a0 | 1262 | { |
7c072018 VZ |
1263 | wxWindow *winTop = node->GetData(); |
1264 | if ( winTop == winToSkip ) | |
1265 | continue; | |
2b5f62a0 | 1266 | |
7c072018 VZ |
1267 | // we don't need to disable the hidden or already disabled windows |
1268 | if ( winTop->IsEnabled() && winTop->IsShown() ) | |
2b5f62a0 | 1269 | { |
7c072018 | 1270 | winTop->Disable(); |
2b5f62a0 VZ |
1271 | } |
1272 | else | |
1273 | { | |
7c072018 VZ |
1274 | if ( !m_winDisabled ) |
1275 | { | |
1276 | m_winDisabled = new wxWindowList; | |
1277 | } | |
1278 | ||
1279 | m_winDisabled->Append(winTop); | |
2b5f62a0 VZ |
1280 | } |
1281 | } | |
2b5f62a0 VZ |
1282 | } |
1283 | ||
7c072018 | 1284 | wxWindowDisabler::~wxWindowDisabler() |
cd6ce4a9 | 1285 | { |
df5168c4 | 1286 | wxWindowList::compatibility_iterator node; |
7c072018 | 1287 | for ( node = wxTopLevelWindows.GetFirst(); node; node = node->GetNext() ) |
cd6ce4a9 | 1288 | { |
7c072018 VZ |
1289 | wxWindow *winTop = node->GetData(); |
1290 | if ( !m_winDisabled || !m_winDisabled->Find(winTop) ) | |
cd6ce4a9 | 1291 | { |
7c072018 | 1292 | winTop->Enable(); |
cd6ce4a9 | 1293 | } |
7c072018 | 1294 | //else: had been already disabled, don't reenable |
cd6ce4a9 | 1295 | } |
f6bcfd97 | 1296 | |
7c072018 | 1297 | delete m_winDisabled; |
f6bcfd97 BP |
1298 | } |
1299 | ||
7c072018 VZ |
1300 | // Yield to other apps/messages and disable user input to all windows except |
1301 | // the given one | |
1302 | bool wxSafeYield(wxWindow *win, bool onlyIfNeeded) | |
f6bcfd97 | 1303 | { |
7c072018 | 1304 | wxWindowDisabler wd(win); |
21709999 | 1305 | |
7c072018 VZ |
1306 | bool rc; |
1307 | if (onlyIfNeeded) | |
1308 | rc = wxYieldIfNeeded(); | |
1309 | else | |
1310 | rc = wxYield(); | |
8461e4c2 | 1311 | |
7c072018 | 1312 | return rc; |
8461e4c2 VZ |
1313 | } |
1314 | ||
7c072018 VZ |
1315 | // Don't synthesize KeyUp events holding down a key and producing KeyDown |
1316 | // events with autorepeat. On by default and always on in wxMSW. wxGTK version | |
1317 | // in utilsgtk.cpp. | |
1318 | #ifndef __WXGTK__ | |
1319 | bool wxSetDetectableAutoRepeat( bool WXUNUSED(flag) ) | |
8461e4c2 | 1320 | { |
cb719f2e | 1321 | return true; // detectable auto-repeat is the only mode MSW supports |
8461e4c2 | 1322 | } |
7c072018 VZ |
1323 | #endif // !wxGTK |
1324 | ||
1325 | #endif // wxUSE_GUI |