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