]> git.saurik.com Git - wxWidgets.git/blame - src/common/utilscmn.cpp
Apply patch that prevents a crash when more than
[wxWidgets.git] / src / common / utilscmn.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: utilscmn.cpp
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
e4844687
SN
20#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) && !defined(__EMX__)
21// Some older compilers (such as EMX) cannot handle
13d13a9e 22// #pragma interface/implementation correctly, iff
e4844687
SN
23// #pragma implementation is used in _two_ translation
24// units (as created by e.g. event.cpp compiled for
25// libwx_base and event.cpp compiled for libwx_gui_core).
26// So we must not use those pragmas for those compilers in
27// such files.
e90c1d2a 28 #pragma implementation "utils.h"
c801d85f
KB
29#endif
30
31// For compilers that support precompilation, includes "wx.h".
32#include "wx/wxprec.h"
33
34#ifdef __BORLANDC__
e90c1d2a 35 #pragma hdrstop
c801d85f
KB
36#endif
37
38#ifndef WX_PRECOMP
fcdb9b38 39 #include "wx/app.h"
e90c1d2a
VZ
40 #include "wx/string.h"
41 #include "wx/utils.h"
974e8d94
VZ
42 #include "wx/intl.h"
43 #include "wx/log.h"
e90c1d2a
VZ
44
45 #if wxUSE_GUI
46 #include "wx/window.h"
e90c1d2a 47 #include "wx/frame.h"
1e6feb95 48 #include "wx/menu.h"
e90c1d2a
VZ
49 #include "wx/msgdlg.h"
50 #include "wx/textdlg.h"
78bcfcfc 51 #include "wx/textctrl.h" // for wxTE_PASSWORD
974e8d94
VZ
52 #if wxUSE_ACCEL
53 #include "wx/menuitem.h"
54 #include "wx/accel.h"
55 #endif // wxUSE_ACCEL
e90c1d2a
VZ
56 #endif // wxUSE_GUI
57#endif // WX_PRECOMP
c801d85f 58
2739d4f0
VZ
59#include "wx/apptrait.h"
60
cd6ce4a9
VZ
61#include "wx/process.h"
62#include "wx/txtstrm.h"
498a1eeb
RN
63#include "wx/uri.h"
64#include "wx/mimetype.h"
65#include "wx/config.h"
cd6ce4a9 66
4676948b
JS
67#if defined(__WXWINCE__) && wxUSE_DATETIME
68#include "wx/datetime.h"
69#endif
70
c801d85f
KB
71#include <ctype.h>
72#include <stdio.h>
73#include <stdlib.h>
74#include <string.h>
e90c1d2a 75
c801d85f 76#if !defined(__WATCOMC__)
3f4a0c5b
VZ
77 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
78 #include <errno.h>
79 #endif
c801d85f 80#endif
e90c1d2a 81
91b4c08d
VZ
82#if wxUSE_GUI
83 #include "wx/colordlg.h"
bf31fa26 84 #include "wx/fontdlg.h"
d1c8aaa3
JS
85 #include "wx/notebook.h"
86 #include "wx/frame.h"
87 #include "wx/statusbr.h"
91b4c08d
VZ
88#endif // wxUSE_GUI
89
1c193821 90#ifndef __WXWINCE__
c801d85f 91#include <time.h>
1c193821
JS
92#else
93#include "wx/msw/wince/time.h"
94#endif
e90c1d2a 95
4676948b 96#if !defined(__MWERKS__) && !defined(__WXWINCE__)
e90c1d2a
VZ
97 #include <sys/types.h>
98 #include <sys/stat.h>
469e1e5c 99#endif
c801d85f 100
82ef81ed 101#if defined(__WXMSW__)
5e1febfa 102 #include "wx/msw/private.h"
c801d85f
KB
103#endif
104
ec67cff1 105#if wxUSE_BASE
7c072018 106
73deed44
VZ
107// ----------------------------------------------------------------------------
108// common data
109// ----------------------------------------------------------------------------
110
111#if WXWIN_COMPATIBILITY_2_2
77ffb593
JS
112 const wxChar *wxInternalErrorStr = wxT("wxWidgets Internal Error");
113 const wxChar *wxFatalErrorStr = wxT("wxWidgets Fatal Error");
73deed44
VZ
114#endif // WXWIN_COMPATIBILITY_2_2
115
e90c1d2a
VZ
116// ============================================================================
117// implementation
118// ============================================================================
c801d85f 119
7c072018
VZ
120#if WXWIN_COMPATIBILITY_2_4
121
0080691b
OK
122wxChar *
123copystring (const wxChar *s)
c801d85f 124{
525d8583 125 if (s == NULL) s = wxEmptyString;
0080691b 126 size_t len = wxStrlen (s) + 1;
c801d85f 127
0080691b
OK
128 wxChar *news = new wxChar[len];
129 memcpy (news, s, len * sizeof(wxChar)); // Should be the fastest
c801d85f
KB
130
131 return news;
132}
133
7c072018
VZ
134#endif // WXWIN_COMPATIBILITY_2_4
135
e12c92c2
VZ
136// ----------------------------------------------------------------------------
137// String <-> Number conversions (deprecated)
138// ----------------------------------------------------------------------------
139
140#if WXWIN_COMPATIBILITY_2_4
141
fd242375
VS
142WXDLLIMPEXP_DATA_BASE(const wxChar *) wxFloatToStringStr = wxT("%.2f");
143WXDLLIMPEXP_DATA_BASE(const wxChar *) wxDoubleToStringStr = wxT("%.2f");
e12c92c2 144
3f4a0c5b 145void
bc87fd68 146StringToFloat (const wxChar *s, float *number)
c801d85f
KB
147{
148 if (s && *s && number)
0080691b 149 *number = (float) wxStrtod (s, (wxChar **) NULL);
c801d85f
KB
150}
151
3f4a0c5b 152void
bc87fd68 153StringToDouble (const wxChar *s, double *number)
c801d85f
KB
154{
155 if (s && *s && number)
0080691b 156 *number = wxStrtod (s, (wxChar **) NULL);
c801d85f
KB
157}
158
0080691b
OK
159wxChar *
160FloatToString (float number, const wxChar *fmt)
c801d85f 161{
0080691b 162 static wxChar buf[256];
c801d85f 163
0080691b 164 wxSprintf (buf, fmt, number);
c801d85f
KB
165 return buf;
166}
167
0080691b
OK
168wxChar *
169DoubleToString (double number, const wxChar *fmt)
c801d85f 170{
0080691b 171 static wxChar buf[256];
c801d85f 172
0080691b 173 wxSprintf (buf, fmt, number);
c801d85f
KB
174 return buf;
175}
176
3f4a0c5b 177void
bc87fd68 178StringToInt (const wxChar *s, int *number)
c801d85f
KB
179{
180 if (s && *s && number)
0080691b 181 *number = (int) wxStrtol (s, (wxChar **) NULL, 10);
c801d85f
KB
182}
183
3f4a0c5b 184void
bc87fd68 185StringToLong (const wxChar *s, long *number)
c801d85f
KB
186{
187 if (s && *s && number)
0080691b 188 *number = wxStrtol (s, (wxChar **) NULL, 10);
c801d85f
KB
189}
190
84fff0b3 191wxChar *
c801d85f
KB
192IntToString (int number)
193{
84fff0b3 194 static wxChar buf[20];
c801d85f 195
223d09f6 196 wxSprintf (buf, wxT("%d"), number);
c801d85f
KB
197 return buf;
198}
199
84fff0b3 200wxChar *
c801d85f
KB
201LongToString (long number)
202{
84fff0b3 203 static wxChar buf[20];
c801d85f 204
223d09f6 205 wxSprintf (buf, wxT("%ld"), number);
c801d85f
KB
206 return buf;
207}
208
e12c92c2
VZ
209#endif // WXWIN_COMPATIBILITY_2_4
210
c801d85f 211// Array used in DecToHex conversion routine.
223d09f6 212static wxChar hexArray[] = wxT("0123456789ABCDEF");
c801d85f
KB
213
214// Convert 2-digit hex number to decimal
fd71308f 215int wxHexToDec(const wxString& buf)
c801d85f
KB
216{
217 int firstDigit, secondDigit;
3f4a0c5b 218
223d09f6
KB
219 if (buf.GetChar(0) >= wxT('A'))
220 firstDigit = buf.GetChar(0) - wxT('A') + 10;
c801d85f 221 else
223d09f6 222 firstDigit = buf.GetChar(0) - wxT('0');
c801d85f 223
223d09f6
KB
224 if (buf.GetChar(1) >= wxT('A'))
225 secondDigit = buf.GetChar(1) - wxT('A') + 10;
c801d85f 226 else
223d09f6 227 secondDigit = buf.GetChar(1) - wxT('0');
3f4a0c5b 228
4b1f6faa 229 return (firstDigit & 0xF) * 16 + (secondDigit & 0xF );
c801d85f
KB
230}
231
232// Convert decimal integer to 2-character hex string
84fff0b3 233void wxDecToHex(int dec, wxChar *buf)
c801d85f
KB
234{
235 int firstDigit = (int)(dec/16.0);
236 int secondDigit = (int)(dec - (firstDigit*16.0));
237 buf[0] = hexArray[firstDigit];
238 buf[1] = hexArray[secondDigit];
239 buf[2] = 0;
240}
241
fd71308f
JS
242// Convert decimal integer to 2-character hex string
243wxString wxDecToHex(int dec)
244{
84fff0b3 245 wxChar buf[3];
fd71308f
JS
246 wxDecToHex(dec, buf);
247 return wxString(buf);
248}
249
7c072018
VZ
250// ----------------------------------------------------------------------------
251// misc functions
252// ----------------------------------------------------------------------------
c801d85f
KB
253
254// Return the current date/time
e90c1d2a 255wxString wxNow()
c801d85f 256{
4676948b
JS
257#ifdef __WXWINCE__
258#if wxUSE_DATETIME
259 wxDateTime now = wxDateTime::Now();
260 return now.Format();
261#else
262 return wxEmptyString;
263#endif
264#else
2b5f62a0
VZ
265 time_t now = time((time_t *) NULL);
266 char *date = ctime(&now);
267 date[24] = '\0';
268 return wxString::FromAscii(date);
4676948b 269#endif
c801d85f
KB
270}
271
08873d36
VZ
272void wxUsleep(unsigned long milliseconds)
273{
274 wxMilliSleep(milliseconds);
275}
276
7c072018
VZ
277const wxChar *wxGetInstallPrefix()
278{
279 wxString prefix;
280
281 if ( wxGetEnv(wxT("WXPREFIX"), &prefix) )
282 return prefix.c_str();
283
284#ifdef wxINSTALL_PREFIX
285 return wxT(wxINSTALL_PREFIX);
286#else
525d8583 287 return wxEmptyString;
7c072018
VZ
288#endif
289}
290
291wxString wxGetDataDir()
292{
10f206ad
RL
293 wxString dir = wxGetInstallPrefix();
294 dir << wxFILE_SEP_PATH << wxT("share") << wxFILE_SEP_PATH << wxT("wx");
7c072018
VZ
295 return dir;
296}
e90c1d2a 297
2739d4f0
VZ
298int wxGetOsVersion(int *verMaj, int *verMin)
299{
300 // we want this function to work even if there is no wxApp
301 wxConsoleAppTraits traitsConsole;
302 wxAppTraits *traits = wxTheApp ? wxTheApp->GetTraits() : NULL;
303 if ( ! traits )
304 traits = &traitsConsole;
305
324899f6 306 wxToolkitInfo& info = traits->GetToolkitInfo();
a8eaaeb2 307 if ( verMaj )
324899f6 308 *verMaj = info.versionMajor;
a8eaaeb2 309 if ( verMin )
324899f6
VS
310 *verMin = info.versionMinor;
311 return info.os;
2739d4f0 312}
1e6feb95 313
e90c1d2a 314// ----------------------------------------------------------------------------
7c072018 315// network and user id functions
e90c1d2a 316// ----------------------------------------------------------------------------
c801d85f 317
7c072018
VZ
318// Get Full RFC822 style email address
319bool wxGetEmailAddress(wxChar *address, int maxSize)
c801d85f 320{
7c072018
VZ
321 wxString email = wxGetEmailAddress();
322 if ( !email )
cb719f2e 323 return false;
c801d85f 324
7c072018
VZ
325 wxStrncpy(address, email, maxSize - 1);
326 address[maxSize - 1] = wxT('\0');
327
cb719f2e 328 return true;
c801d85f
KB
329}
330
7c072018 331wxString wxGetEmailAddress()
47bc1060 332{
7c072018 333 wxString email;
974e8d94 334
7c072018 335 wxString host = wxGetFullHostName();
4055ed82 336 if ( !host.empty() )
1e6feb95 337 {
7c072018 338 wxString user = wxGetUserId();
4055ed82 339 if ( !user.empty() )
1e6feb95 340 {
7c072018 341 email << user << wxT('@') << host;
974e8d94 342 }
974e8d94
VZ
343 }
344
7c072018 345 return email;
974e8d94
VZ
346}
347
7c072018 348wxString wxGetUserId()
c801d85f 349{
7c072018 350 static const int maxLoginLen = 256; // FIXME arbitrary number
c801d85f 351
7c072018 352 wxString buf;
4c3ebca9 353 bool ok = wxGetUserId(wxStringBuffer(buf, maxLoginLen), maxLoginLen);
c801d85f 354
7c072018
VZ
355 if ( !ok )
356 buf.Empty();
c801d85f 357
7c072018 358 return buf;
c801d85f
KB
359}
360
7c072018 361wxString wxGetUserName()
c801d85f 362{
7c072018 363 static const int maxUserNameLen = 1024; // FIXME arbitrary number
1e6feb95 364
7c072018 365 wxString buf;
4c3ebca9 366 bool ok = wxGetUserName(wxStringBuffer(buf, maxUserNameLen), maxUserNameLen);
7c072018
VZ
367
368 if ( !ok )
369 buf.Empty();
370
371 return buf;
59a12e90
JS
372}
373
7c072018 374wxString wxGetHostName()
59a12e90 375{
7c072018 376 static const size_t hostnameSize = 257;
c67d6888 377
7c072018 378 wxString buf;
4c3ebca9 379 bool ok = wxGetHostName(wxStringBuffer(buf, hostnameSize), hostnameSize);
59a12e90 380
7c072018
VZ
381 if ( !ok )
382 buf.Empty();
59a12e90 383
7c072018 384 return buf;
59a12e90
JS
385}
386
7c072018 387wxString wxGetFullHostName()
59a12e90 388{
7c072018 389 static const size_t hostnameSize = 257;
c801d85f 390
7c072018 391 wxString buf;
4c3ebca9 392 bool ok = wxGetFullHostName(wxStringBuffer(buf, hostnameSize), hostnameSize);
7c072018
VZ
393
394 if ( !ok )
395 buf.Empty();
c801d85f 396
7c072018
VZ
397 return buf;
398}
c801d85f 399
7c072018
VZ
400wxString wxGetHomeDir()
401{
402 wxString home;
403 wxGetHomeDir(&home);
c801d85f 404
7c072018
VZ
405 return home;
406}
c801d85f 407
c801d85f
KB
408#if 0
409
7c072018 410wxString wxGetCurrentDir()
c801d85f 411{
7c072018
VZ
412 wxString dir;
413 size_t len = 1024;
414 bool ok;
415 do
416 {
417 ok = getcwd(dir.GetWriteBuf(len + 1), len) != NULL;
418 dir.UngetWriteBuf();
c801d85f 419
7c072018
VZ
420 if ( !ok )
421 {
422 if ( errno != ERANGE )
423 {
424 wxLogSysError(_T("Failed to get current directory"));
c801d85f 425
7c072018
VZ
426 return wxEmptyString;
427 }
3f4a0c5b 428 else
7c072018
VZ
429 {
430 // buffer was too small, retry with a larger one
431 len *= 2;
432 }
3f4a0c5b 433 }
7c072018
VZ
434 //else: ok
435 } while ( !ok );
c801d85f 436
7c072018 437 return dir;
c801d85f
KB
438}
439
7c072018 440#endif // 0
e90c1d2a
VZ
441
442// ----------------------------------------------------------------------------
7c072018 443// wxExecute
e90c1d2a 444// ----------------------------------------------------------------------------
ead7ce10 445
7c072018
VZ
446// wxDoExecuteWithCapture() helper: reads an entire stream into one array
447//
cb719f2e 448// returns true if ok, false if error
7c072018
VZ
449#if wxUSE_STREAMS
450static bool ReadAll(wxInputStream *is, wxArrayString& output)
dfad0599 451{
cb719f2e 452 wxCHECK_MSG( is, false, _T("NULL stream in wxExecute()?") );
dfad0599 453
7c072018
VZ
454 // the stream could be already at EOF or in wxSTREAM_BROKEN_PIPE state
455 is->Reset();
1e6feb95 456
7c072018 457 wxTextInputStream tis(*is);
1e6feb95 458
cb719f2e 459 bool cont = true;
7c072018 460 while ( cont )
d2f50933 461 {
7c072018
VZ
462 wxString line = tis.ReadLine();
463 if ( is->Eof() )
464 break;
465
466 if ( !*is )
467 {
cb719f2e 468 cont = false;
7c072018
VZ
469 }
470 else
471 {
472 output.Add(line);
473 }
d2f50933
VZ
474 }
475
7c072018 476 return cont;
dfad0599 477}
7c072018 478#endif // wxUSE_STREAMS
d2f50933 479
7c072018
VZ
480// this is a private function because it hasn't a clean interface: the first
481// array is passed by reference, the second by pointer - instead we have 2
482// public versions of wxExecute() below
483static long wxDoExecuteWithCapture(const wxString& command,
484 wxArrayString& output,
4d172154
VZ
485 wxArrayString* error,
486 int flags)
d2f50933 487{
7c072018
VZ
488 // create a wxProcess which will capture the output
489 wxProcess *process = new wxProcess;
490 process->Redirect();
dfad0599 491
4d172154 492 long rc = wxExecute(command, wxEXEC_SYNC | flags, process);
1e6feb95 493
7c072018
VZ
494#if wxUSE_STREAMS
495 if ( rc != -1 )
bf31fa26 496 {
7c072018
VZ
497 if ( !ReadAll(process->GetInputStream(), output) )
498 rc = -1;
91b4c08d 499
7c072018
VZ
500 if ( error )
501 {
502 if ( !ReadAll(process->GetErrorStream(), *error) )
503 rc = -1;
504 }
91b4c08d 505
7c072018 506 }
e70ba80d
WS
507#else
508 wxUnusedVar(output);
509 wxUnusedVar(error);
510#endif // wxUSE_STREAMS/!wxUSE_STREAMS
91b4c08d 511
7c072018 512 delete process;
1e6feb95 513
7c072018 514 return rc;
7c072018 515}
bf31fa26 516
4d172154 517long wxExecute(const wxString& command, wxArrayString& output, int flags)
bf31fa26 518{
4d172154 519 return wxDoExecuteWithCapture(command, output, NULL, flags);
7c072018 520}
bf31fa26 521
7c072018
VZ
522long wxExecute(const wxString& command,
523 wxArrayString& output,
4d172154
VZ
524 wxArrayString& error,
525 int flags)
7c072018 526{
4d172154 527 return wxDoExecuteWithCapture(command, output, &error, flags);
bf31fa26
VZ
528}
529
498a1eeb
RN
530// ----------------------------------------------------------------------------
531// Launch default browser
532// ----------------------------------------------------------------------------
533
534bool wxLaunchDefaultBrowser(const wxString& url)
535{
536 wxString finalurl = url;
537
538 //if it isn't a full url, try appending http:// to it
539 if(wxURI(url).IsReference())
540 finalurl = wxString(wxT("http://")) + url;
541
542#ifdef __WINDOWS__
543 wxString command;
544
545 // ShellExecute() always opens in the same window,
546 // so do it manually for new window (from Mahogany)
547 wxRegKey key(wxRegKey::HKCR, url.BeforeFirst(':') + wxT("\\shell\\open"));
548 if ( key.Exists() )
549 {
550 wxRegKey keyDDE(key, wxT("DDEExec"));
551 if ( keyDDE.Exists() )
552 {
553 wxString ddeTopic = wxRegKey(keyDDE, wxT("topic"));
554
555 // we only know the syntax of WWW_OpenURL DDE request
556 if ( ddeTopic == wxT("WWW_OpenURL") )
557 {
558 wxString ddeCmd = keyDDE;
559
560 // this is a bit naive but should work as -1 can't appear
561 // elsewhere in the DDE topic, normally
562 if ( ddeCmd.Replace(wxT("-1"), wxT("0"),
563 FALSE /* only first occurence */) == 1 )
564 {
565 // and also replace the parameters
566 if ( ddeCmd.Replace(wxT("%1"), url, FALSE) == 1 )
567 {
568 // magic incantation understood by wxMSW
569 command << wxT("WX_DDE#")
570 << wxRegKey(key, wxT("command")).QueryDefaultValue() << wxT('#')
571 << wxRegKey(keyDDE, wxT("application")).QueryDefaultValue()
572 << wxT('#') << ddeTopic << wxT('#')
573 << ddeCmd;
574 }
575 }
576 }
577 }
578 }
579
580 //Try wxExecute - if it doesn't work or the regkey stuff
581 //above failed, fallback to opening the file in the same
582 //browser window
583 if ( command.empty() || wxExecute(command) == -1)
584 {
585 // CYGWIN and MINGW may have problems - so load ShellExecute
586 // dynamically
587 typedef HINSTANCE (*LPShellExecute)(HWND hwnd, const wxChar* lpOperation,
588 const wxChar* lpFile,
589 const wxChar* lpParameters,
590 const wxChar* lpDirectory,
591 INT nShowCmd);
592
593 HINSTANCE hShellDll = ::LoadLibrary(wxT("shell32.dll"));
594 if(hShellDll == NULL)
595 return false;
596
597 LPShellExecute lpShellExecute =
598 (LPShellExecute) ::GetProcAddress(hShellDll,
599 wxString::Format(wxT("ShellExecute%s"),
eb5b252d 600
498a1eeb
RN
601#ifdef __WXUNICODE__
602 wxT("W")
603#else
604 wxT("A")
605#endif
eb5b252d 606#ifdef __WXWINCE__
498a1eeb 607 )
eb5b252d
RN
608#else
609 ).mb_str(wxConvLocal)
610#endif
611 );
498a1eeb
RN
612 if(lpShellExecute == NULL)
613 return false;
614
615 // Windows sometimes doesn't open the browser correctly when using mime
616 // types, so do ShellExecute - i.e. start <url> (from James Carroll)
617 unsigned int nResult = (int) (*lpShellExecute)(NULL, NULL, finalurl.c_str(),
618 NULL, wxT(""), SW_SHOWNORMAL);
619
620 // Unload Shell32.dll
621 ::FreeLibrary(hShellDll);
622
623 // Hack for Firefox (returns file not found for some reason)
624 // from Angelo Mandato's wxHyperlinksCtrl
625 // HINSTANCE_ERROR == 32
626 if (nResult <= HINSTANCE_ERROR && nResult != SE_ERR_FNF)
627 return false;
628
629 # ifdef __WXDEBUG__
630 // Log something if SE_ERR_FNF happens
631 if(nResult == SE_ERR_FNF)
632 wxLogDebug(wxT("Got SE_ERR_FNF from ShellExecute - maybe FireFox"));
633 # endif
634 }
635
636#else
d6a7c33a 637#if wxUSE_MIMETYPE
498a1eeb
RN
638 // Non-windows way
639 wxFileType *ft =
640 wxTheMimeTypesManager->GetFileTypeFromExtension (_T("html"));
641 if (!ft)
642 {
643 wxLogError(_T("No default application can open .html extension"));
644 return false;
645 }
646
647 wxString mt;
648 ft->GetMimeType(&mt);
649
650 wxString cmd;
651 bool ok =
652 ft->GetOpenCommand (&cmd,
653 wxFileType::MessageParameters (finalurl.c_str(),
654 _T("")));
655 delete ft;
656
657 if (ok)
658 {
659 if( wxExecute (cmd, wxEXEC_ASYNC) == -1 )
660 {
661 wxLogError(_T("Failed to launch application for wxLaunchDefaultBrowser"));
662 return false;
663 }
664 }
665 else
666 return false;
d6a7c33a
RN
667#else
668 return false;
669#endif //!wxUSE_MIMETYPE
670
498a1eeb
RN
671#endif
672
673 //success - hopefully
674 return true;
675}
676
91b4c08d 677// ----------------------------------------------------------------------------
7c072018 678// wxApp::Yield() wrappers for backwards compatibility
91b4c08d
VZ
679// ----------------------------------------------------------------------------
680
7c072018 681bool wxYield()
469e1e5c 682{
7c072018 683 return wxTheApp && wxTheApp->Yield();
469e1e5c 684}
7c072018
VZ
685
686bool wxYieldIfNeeded()
469e1e5c 687{
cb719f2e 688 return wxTheApp && wxTheApp->Yield(true);
469e1e5c 689}
7c072018 690
ec67cff1 691#endif // wxUSE_BASE
7c072018
VZ
692
693// ============================================================================
694// GUI-only functions from now on
695// ============================================================================
696
697#if wxUSE_GUI
698
4c3ebca9
MB
699// Id generation
700static long wxCurrentId = 100;
701
c838b68e 702long wxNewId()
4c3ebca9 703{
c838b68e
VS
704 // skip the part of IDs space that contains hard-coded values:
705 if (wxCurrentId == wxID_LOWEST)
706 wxCurrentId = wxID_HIGHEST + 1;
707
708 return wxCurrentId++;
4c3ebca9
MB
709}
710
711long
712wxGetCurrentId(void) { return wxCurrentId; }
713
714void
715wxRegisterId (long id)
716{
717 if (id >= wxCurrentId)
718 wxCurrentId = id + 1;
719}
720
7c072018 721#if wxUSE_MENUS
e90c1d2a
VZ
722
723// ----------------------------------------------------------------------------
7c072018 724// Menu accelerators related functions
e90c1d2a
VZ
725// ----------------------------------------------------------------------------
726
7c072018 727wxChar *wxStripMenuCodes(const wxChar *in, wxChar *out)
e90c1d2a 728{
7c072018
VZ
729 wxString s = wxMenuItem::GetLabelFromText(in);
730 if ( out )
731 {
732 // go smash their buffer if it's not big enough - I love char * params
733 memcpy(out, s.c_str(), s.length() * sizeof(wxChar));
734 }
735 else
736 {
f526f752
MB
737 // MYcopystring - for easier search...
738 out = new wxChar[s.length() + 1];
739 wxStrcpy(out, s.c_str());
7c072018
VZ
740 }
741
742 return out;
e90c1d2a
VZ
743}
744
7c072018 745wxString wxStripMenuCodes(const wxString& in)
e90c1d2a 746{
7c072018 747 wxString out;
79f585d9 748
7c072018
VZ
749 size_t len = in.length();
750 out.reserve(len);
79f585d9 751
7c072018
VZ
752 for ( size_t n = 0; n < len; n++ )
753 {
754 wxChar ch = in[n];
755 if ( ch == _T('&') )
cd6ce4a9 756 {
7c072018
VZ
757 // skip it, it is used to introduce the accel char (or to quote
758 // itself in which case it should still be skipped): note that it
759 // can't be the last character of the string
760 if ( ++n == len )
79f585d9 761 {
7c072018
VZ
762 wxLogDebug(_T("Invalid menu string '%s'"), in.c_str());
763 }
764 else
765 {
766 // use the next char instead
767 ch = in[n];
79f585d9 768 }
cd6ce4a9 769 }
7c072018 770 else if ( ch == _T('\t') )
79f585d9 771 {
7c072018
VZ
772 // everything after TAB is accel string, exit the loop
773 break;
79f585d9 774 }
7c072018
VZ
775
776 out += ch;
225fe9d6
VZ
777 }
778
7c072018 779 return out;
cd6ce4a9
VZ
780}
781
7c072018 782#endif // wxUSE_MENUS
e90c1d2a 783
cbc66a27 784// ----------------------------------------------------------------------------
7c072018 785// Window search functions
cbc66a27
VZ
786// ----------------------------------------------------------------------------
787
7c072018
VZ
788/*
789 * If parent is non-NULL, look through children for a label or title
790 * matching the specified string. If NULL, look through all top-level windows.
791 *
792 */
e2a6f233 793
7c072018
VZ
794wxWindow *
795wxFindWindowByLabel (const wxString& title, wxWindow * parent)
134677bd 796{
7c072018
VZ
797 return wxWindow::FindWindowByLabel( title, parent );
798}
b829bf55 799
b829bf55 800
7c072018
VZ
801/*
802 * If parent is non-NULL, look through children for a name
803 * matching the specified string. If NULL, look through all top-level windows.
804 *
805 */
134677bd 806
7c072018
VZ
807wxWindow *
808wxFindWindowByName (const wxString& name, wxWindow * parent)
2c18f21d 809{
7c072018 810 return wxWindow::FindWindowByName( name, parent );
2c18f21d
VS
811}
812
cb719f2e 813// Returns menu item id or wxNOT_FOUND if none.
7c072018
VZ
814int
815wxFindMenuItemId (wxFrame * frame, const wxString& menuString, const wxString& itemString)
e2a6f233 816{
7c072018
VZ
817#if wxUSE_MENUS
818 wxMenuBar *menuBar = frame->GetMenuBar ();
819 if ( menuBar )
820 return menuBar->FindMenuItem (menuString, itemString);
821#endif // wxUSE_MENUS
0fb67cd1 822
cb719f2e 823 return wxNOT_FOUND;
e2a6f233
JS
824}
825
7c072018
VZ
826// Try to find the deepest child that contains 'pt'.
827// We go backwards, to try to allow for controls that are spacially
828// within other controls, but are still siblings (e.g. buttons within
829// static boxes). Static boxes are likely to be created _before_ controls
830// that sit inside them.
831wxWindow* wxFindWindowAtPoint(wxWindow* win, const wxPoint& pt)
e2a6f233 832{
7c072018
VZ
833 if (!win->IsShown())
834 return NULL;
0fb67cd1 835
7c072018
VZ
836 // Hack for wxNotebook case: at least in wxGTK, all pages
837 // claim to be shown, so we must only deal with the selected one.
838#if wxUSE_NOTEBOOK
839 if (win->IsKindOf(CLASSINFO(wxNotebook)))
e2a6f233 840 {
7c072018
VZ
841 wxNotebook* nb = (wxNotebook*) win;
842 int sel = nb->GetSelection();
843 if (sel >= 0)
844 {
845 wxWindow* child = nb->GetPage(sel);
846 wxWindow* foundWin = wxFindWindowAtPoint(child, pt);
847 if (foundWin)
848 return foundWin;
849 }
e2a6f233 850 }
7c072018 851#endif
0fb67cd1 852
df5168c4 853 wxWindowList::compatibility_iterator node = win->GetChildren().GetLast();
7c072018
VZ
854 while (node)
855 {
856 wxWindow* child = node->GetData();
857 wxWindow* foundWin = wxFindWindowAtPoint(child, pt);
858 if (foundWin)
859 return foundWin;
860 node = node->GetPrevious();
861 }
862
863 wxPoint pos = win->GetPosition();
864 wxSize sz = win->GetSize();
865 if (win->GetParent())
866 {
867 pos = win->GetParent()->ClientToScreen(pos);
868 }
869
870 wxRect rect(pos, sz);
871 if (rect.Inside(pt))
872 return win;
873 else
874 return NULL;
0fb67cd1
VZ
875}
876
7c072018 877wxWindow* wxGenericFindWindowAtPoint(const wxPoint& pt)
0fb67cd1 878{
7c072018
VZ
879 // Go backwards through the list since windows
880 // on top are likely to have been appended most
881 // recently.
df5168c4 882 wxWindowList::compatibility_iterator node = wxTopLevelWindows.GetLast();
7c072018
VZ
883 while (node)
884 {
885 wxWindow* win = node->GetData();
886 wxWindow* found = wxFindWindowAtPoint(win, pt);
887 if (found)
888 return found;
889 node = node->GetPrevious();
890 }
891 return NULL;
892}
0fb67cd1 893
7c072018
VZ
894// ----------------------------------------------------------------------------
895// GUI helpers
896// ----------------------------------------------------------------------------
0fb67cd1 897
7c072018
VZ
898/*
899 * N.B. these convenience functions must be separate from msgdlgg.cpp, textdlgg.cpp
900 * since otherwise the generic code may be pulled in unnecessarily.
901 */
0fb67cd1 902
7c072018 903#if wxUSE_MSGDLG
0fb67cd1 904
7c072018
VZ
905int wxMessageBox(const wxString& message, const wxString& caption, long style,
906 wxWindow *parent, int WXUNUSED(x), int WXUNUSED(y) )
0fb67cd1 907{
53a6ac21
DS
908 long decorated_style = style;
909
910 if ( ( style & ( wxICON_EXCLAMATION | wxICON_HAND | wxICON_INFORMATION | wxICON_QUESTION ) ) == 0 )
911 {
912 decorated_style |= ( style & wxYES ) ? wxICON_QUESTION : wxICON_INFORMATION ;
913 }
914
915 wxMessageDialog dialog(parent, message, caption, decorated_style);
0fb67cd1 916
7c072018
VZ
917 int ans = dialog.ShowModal();
918 switch ( ans )
919 {
920 case wxID_OK:
921 return wxOK;
922 case wxID_YES:
923 return wxYES;
924 case wxID_NO:
925 return wxNO;
926 case wxID_CANCEL:
927 return wxCANCEL;
928 }
0fb67cd1 929
7c072018 930 wxFAIL_MSG( _T("unexpected return code from wxMessageDialog") );
0fb67cd1 931
7c072018 932 return wxCANCEL;
e2a6f233
JS
933}
934
7c072018 935#endif // wxUSE_MSGDLG
518b5d2f 936
7c072018 937#if wxUSE_TEXTDLG
518b5d2f 938
7c072018
VZ
939wxString wxGetTextFromUser(const wxString& message, const wxString& caption,
940 const wxString& defaultValue, wxWindow *parent,
13d13a9e 941 wxCoord x, wxCoord y, bool centre )
7c072018
VZ
942{
943 wxString str;
13d13a9e
WS
944 long style = wxTextEntryDialogStyle;
945
946 if (centre)
947 style |= wxCENTRE;
948 else
949 style &= ~wxCENTRE;
950
951 wxTextEntryDialog dialog(parent, message, caption, defaultValue, style, wxPoint(x, y));
952
7c072018
VZ
953 if (dialog.ShowModal() == wxID_OK)
954 {
955 str = dialog.GetValue();
956 }
0fb67cd1 957
7c072018 958 return str;
518b5d2f
VZ
959}
960
7c072018
VZ
961wxString wxGetPasswordFromUser(const wxString& message,
962 const wxString& caption,
963 const wxString& defaultValue,
b3bb2a74
KH
964 wxWindow *parent,
965 wxCoord x, wxCoord y, bool centre )
96c5bd7f 966{
7c072018 967 wxString str;
b3bb2a74
KH
968 long style = wxTextEntryDialogStyle;
969
970 if (centre)
971 style |= wxCENTRE;
972 else
973 style &= ~wxCENTRE;
974
12cfa304
KH
975 wxPasswordEntryDialog dialog(parent, message, caption, defaultValue,
976 style, wxPoint(x, y));
7c072018
VZ
977 if ( dialog.ShowModal() == wxID_OK )
978 {
979 str = dialog.GetValue();
980 }
96c5bd7f 981
7c072018
VZ
982 return str;
983}
96c5bd7f 984
7c072018 985#endif // wxUSE_TEXTDLG
96c5bd7f 986
7c072018 987#if wxUSE_COLOURDLG
96c5bd7f 988
7c072018 989wxColour wxGetColourFromUser(wxWindow *parent, const wxColour& colInit)
c51deffc 990{
7c072018 991 wxColourData data;
cb719f2e 992 data.SetChooseFull(true);
7c072018
VZ
993 if ( colInit.Ok() )
994 {
995 data.SetColour((wxColour &)colInit); // const_cast
996 }
c51deffc 997
7c072018
VZ
998 wxColour colRet;
999 wxColourDialog dialog(parent, &data);
1000 if ( dialog.ShowModal() == wxID_OK )
1001 {
1002 colRet = dialog.GetColourData().GetColour();
1003 }
1004 //else: leave it invalid
1005
1006 return colRet;
c51deffc 1007}
bc385ba9 1008
7c072018 1009#endif // wxUSE_COLOURDLG
bc385ba9 1010
7c072018
VZ
1011#if wxUSE_FONTDLG
1012
1013wxFont wxGetFontFromUser(wxWindow *parent, const wxFont& fontInit)
bc385ba9 1014{
7c072018
VZ
1015 wxFontData data;
1016 if ( fontInit.Ok() )
bc385ba9 1017 {
7c072018
VZ
1018 data.SetInitialFont(fontInit);
1019 }
bc385ba9 1020
7c072018
VZ
1021 wxFont fontRet;
1022 wxFontDialog dialog(parent, data);
1023 if ( dialog.ShowModal() == wxID_OK )
1024 {
1025 fontRet = dialog.GetFontData().GetChosenFont();
1026 }
1027 //else: leave it invalid
bc385ba9 1028
7c072018 1029 return fontRet;
bc385ba9
VZ
1030}
1031
7c072018 1032#endif // wxUSE_FONTDLG
2b5f62a0 1033
7c072018
VZ
1034// ----------------------------------------------------------------------------
1035// wxSafeYield and supporting functions
1036// ----------------------------------------------------------------------------
2b5f62a0 1037
7c072018
VZ
1038void wxEnableTopLevelWindows(bool enable)
1039{
df5168c4 1040 wxWindowList::compatibility_iterator node;
7c072018
VZ
1041 for ( node = wxTopLevelWindows.GetFirst(); node; node = node->GetNext() )
1042 node->GetData()->Enable(enable);
1043}
2b5f62a0 1044
7c072018
VZ
1045wxWindowDisabler::wxWindowDisabler(wxWindow *winToSkip)
1046{
1047 // remember the top level windows which were already disabled, so that we
1048 // don't reenable them later
1049 m_winDisabled = NULL;
1050
df5168c4 1051 wxWindowList::compatibility_iterator node;
7c072018 1052 for ( node = wxTopLevelWindows.GetFirst(); node; node = node->GetNext() )
2b5f62a0 1053 {
7c072018
VZ
1054 wxWindow *winTop = node->GetData();
1055 if ( winTop == winToSkip )
1056 continue;
2b5f62a0 1057
7c072018
VZ
1058 // we don't need to disable the hidden or already disabled windows
1059 if ( winTop->IsEnabled() && winTop->IsShown() )
2b5f62a0 1060 {
7c072018 1061 winTop->Disable();
2b5f62a0
VZ
1062 }
1063 else
1064 {
7c072018
VZ
1065 if ( !m_winDisabled )
1066 {
1067 m_winDisabled = new wxWindowList;
1068 }
1069
1070 m_winDisabled->Append(winTop);
2b5f62a0
VZ
1071 }
1072 }
2b5f62a0
VZ
1073}
1074
7c072018 1075wxWindowDisabler::~wxWindowDisabler()
cd6ce4a9 1076{
df5168c4 1077 wxWindowList::compatibility_iterator node;
7c072018 1078 for ( node = wxTopLevelWindows.GetFirst(); node; node = node->GetNext() )
cd6ce4a9 1079 {
7c072018
VZ
1080 wxWindow *winTop = node->GetData();
1081 if ( !m_winDisabled || !m_winDisabled->Find(winTop) )
cd6ce4a9 1082 {
7c072018 1083 winTop->Enable();
cd6ce4a9 1084 }
7c072018 1085 //else: had been already disabled, don't reenable
cd6ce4a9 1086 }
f6bcfd97 1087
7c072018 1088 delete m_winDisabled;
f6bcfd97
BP
1089}
1090
7c072018
VZ
1091// Yield to other apps/messages and disable user input to all windows except
1092// the given one
1093bool wxSafeYield(wxWindow *win, bool onlyIfNeeded)
f6bcfd97 1094{
7c072018 1095 wxWindowDisabler wd(win);
21709999 1096
7c072018
VZ
1097 bool rc;
1098 if (onlyIfNeeded)
1099 rc = wxYieldIfNeeded();
1100 else
1101 rc = wxYield();
8461e4c2 1102
7c072018 1103 return rc;
8461e4c2
VZ
1104}
1105
7c072018
VZ
1106// Don't synthesize KeyUp events holding down a key and producing KeyDown
1107// events with autorepeat. On by default and always on in wxMSW. wxGTK version
1108// in utilsgtk.cpp.
1109#ifndef __WXGTK__
1110bool wxSetDetectableAutoRepeat( bool WXUNUSED(flag) )
8461e4c2 1111{
cb719f2e 1112 return true; // detectable auto-repeat is the only mode MSW supports
8461e4c2 1113}
7c072018
VZ
1114#endif // !wxGTK
1115
1116#endif // wxUSE_GUI
21709999 1117