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