]> git.saurik.com Git - wxWidgets.git/blame - src/common/utilscmn.cpp
fixed bug in wxHtmlWindow: HistoryBack/Forward now correctly preserves last entry...
[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
3f4a0c5b 9// Licence: wxWindows license
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
e90c1d2a
VZ
32 #include "wx/defs.h"
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"
40 #include "wx/menu.h"
41 #include "wx/frame.h"
42 #include "wx/msgdlg.h"
43 #include "wx/textdlg.h"
974e8d94
VZ
44 #if wxUSE_ACCEL
45 #include "wx/menuitem.h"
46 #include "wx/accel.h"
47 #endif // wxUSE_ACCEL
e90c1d2a
VZ
48 #endif // wxUSE_GUI
49#endif // WX_PRECOMP
c801d85f 50
669f7a11 51#ifndef __WIN16__
cd6ce4a9
VZ
52#include "wx/process.h"
53#include "wx/txtstrm.h"
669f7a11 54#endif
cd6ce4a9 55
c801d85f
KB
56#include <ctype.h>
57#include <stdio.h>
58#include <stdlib.h>
59#include <string.h>
e90c1d2a 60
c801d85f 61#if !defined(__WATCOMC__)
3f4a0c5b
VZ
62 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
63 #include <errno.h>
64 #endif
c801d85f 65#endif
e90c1d2a 66
91b4c08d
VZ
67#if wxUSE_GUI
68 #include "wx/colordlg.h"
d1c8aaa3
JS
69 #include "wx/notebook.h"
70 #include "wx/frame.h"
71 #include "wx/statusbr.h"
72 #include "wx/toolbar.h"
91b4c08d
VZ
73#endif // wxUSE_GUI
74
c801d85f 75#include <time.h>
e90c1d2a 76
469e1e5c 77#ifndef __MWERKS__
e90c1d2a
VZ
78 #include <sys/types.h>
79 #include <sys/stat.h>
469e1e5c 80#endif
c801d85f 81
ce3ed50d 82#ifdef __SALFORDC__
e90c1d2a 83 #include <clib.h>
ce3ed50d
JS
84#endif
85
2049ba38 86#ifdef __WXMSW__
5e1febfa 87 #include "wx/msw/private.h"
c801d85f
KB
88#endif
89
e90c1d2a
VZ
90// ----------------------------------------------------------------------------
91// function protoypes
92// ----------------------------------------------------------------------------
93
94#if wxUSE_GUI
95 static wxWindow *wxFindWindowByLabel1(const wxString& title, wxWindow *parent);
96 static wxWindow *wxFindWindowByName1 (const wxString& title, wxWindow *parent);
97#endif // wxUSE_GUI
c801d85f 98
e90c1d2a
VZ
99// ============================================================================
100// implementation
101// ============================================================================
c801d85f 102
e146b8c8 103// ----------------------------------------------------------------------------
e90c1d2a 104// string functions
e146b8c8
VZ
105// ----------------------------------------------------------------------------
106
17dff81c
SC
107#ifdef __WXMAC__
108int strcasecmp(const char *str_1, const char *str_2)
109{
110 register char c1, c2;
111 do {
112 c1 = tolower(*str_1++);
113 c2 = tolower(*str_2++);
114 } while ( c1 && (c1 == c2) );
115
116 return c1 - c2;
117}
118
119int strncasecmp(const char *str_1, const char *str_2, size_t maxchar)
120{
121
122 register char c1, c2;
3f4a0c5b 123 while( maxchar--)
17dff81c
SC
124 {
125 c1 = tolower(*str_1++);
126 c2 = tolower(*str_2++);
3f4a0c5b 127
17dff81c 128 if ( !c1 || c1!=c2 )
3f4a0c5b
VZ
129 return c1 - c2;
130
17dff81c
SC
131 } ;
132
133 return 0 ;
134
135}
e90c1d2a
VZ
136#endif // wxMAC
137
7e72d7aa 138#if defined( __VMS__ ) && ( __VMS_VER < 70000000 )
c801d85f
KB
139// we have no strI functions under VMS, therefore I have implemented
140// an inefficient but portable version: convert copies of strings to lowercase
141// and then use the normal comparison
142static void myLowerString(char *s)
143{
144 while(*s){
145 if(isalpha(*s)) *s = (char)tolower(*s);
146 s++;
147 }
148}
149
150int strcasecmp(const char *str_1, const char *str_2)
151{
152 char *temp1 = new char[strlen(str_1)+1];
153 char *temp2 = new char[strlen(str_2)+1];
154 strcpy(temp1,str_1);
155 strcpy(temp2,str_2);
156 myLowerString(temp1);
157 myLowerString(temp2);
158
81c67e27 159 int result = wxStrcmp(temp1,temp2);
c801d85f
KB
160 delete[] temp1;
161 delete[] temp2;
162
163 return(result);
164}
165
166int strncasecmp(const char *str_1, const char *str_2, size_t maxchar)
167{
168 char *temp1 = new char[strlen(str_1)+1];
169 char *temp2 = new char[strlen(str_2)+1];
170 strcpy(temp1,str_1);
171 strcpy(temp2,str_2);
172 myLowerString(temp1);
173 myLowerString(temp2);
174
175 int result = strncmp(temp1,temp2,maxchar);
176 delete[] temp1;
177 delete[] temp2;
178
179 return(result);
180}
e90c1d2a 181#endif // __VMS__
c801d85f 182
34138703 183#ifdef __WINDOWS__
c801d85f
KB
184
185#ifndef __GNUWIN32__
469e1e5c 186#ifndef __MWERKS__
c801d85f
KB
187#define strcasecmp stricmp
188#define strncasecmp strnicmp
469e1e5c
SC
189#else
190#define strcasecmp _stricmp
191#define strncasecmp _strnicmp
192#endif
c801d85f
KB
193#endif
194
c801d85f 195#else
91b8de8d
RR
196
197#ifdef __EMX__
198#define strcasecmp stricmp
199#define strncasecmp strnicmp
200#endif
201
c801d85f
KB
202// This declaration is missing in SunOS!
203// (Yes, I know it is NOT ANSI-C but its in BSD libc)
204#if defined(__xlC) || defined(__AIX__) || defined(__GNUG__)
205extern "C"
206{
207 int strcasecmp (const char *, const char *);
208 int strncasecmp (const char *, const char *, size_t);
209}
210#endif
3f4a0c5b 211#endif /* __WXMSW__ */
c801d85f 212
717b9bf2
DW
213#ifdef __WXPM__
214#define strcasecmp stricmp
215#define strncasecmp strnicmp
216#endif
c801d85f 217
0080691b
OK
218wxChar *
219copystring (const wxChar *s)
c801d85f 220{
223d09f6 221 if (s == NULL) s = wxT("");
0080691b 222 size_t len = wxStrlen (s) + 1;
c801d85f 223
0080691b
OK
224 wxChar *news = new wxChar[len];
225 memcpy (news, s, len * sizeof(wxChar)); // Should be the fastest
c801d85f
KB
226
227 return news;
228}
229
230// Id generation
231static long wxCurrentId = 100;
232
3f4a0c5b 233long
c801d85f
KB
234wxNewId (void)
235{
236 return wxCurrentId++;
237}
238
239long
240wxGetCurrentId(void) { return wxCurrentId; }
241
3f4a0c5b 242void
c801d85f
KB
243wxRegisterId (long id)
244{
245 if (id >= wxCurrentId)
246 wxCurrentId = id + 1;
247}
248
3f4a0c5b 249void
0080691b 250StringToFloat (wxChar *s, float *number)
c801d85f
KB
251{
252 if (s && *s && number)
0080691b 253 *number = (float) wxStrtod (s, (wxChar **) NULL);
c801d85f
KB
254}
255
3f4a0c5b 256void
0080691b 257StringToDouble (wxChar *s, double *number)
c801d85f
KB
258{
259 if (s && *s && number)
0080691b 260 *number = wxStrtod (s, (wxChar **) NULL);
c801d85f
KB
261}
262
0080691b
OK
263wxChar *
264FloatToString (float number, const wxChar *fmt)
c801d85f 265{
0080691b 266 static wxChar buf[256];
c801d85f
KB
267
268// sprintf (buf, "%.2f", number);
0080691b 269 wxSprintf (buf, fmt, number);
c801d85f
KB
270 return buf;
271}
272
0080691b
OK
273wxChar *
274DoubleToString (double number, const wxChar *fmt)
c801d85f 275{
0080691b 276 static wxChar buf[256];
c801d85f 277
0080691b 278 wxSprintf (buf, fmt, number);
c801d85f
KB
279 return buf;
280}
281
3f4a0c5b 282void
0080691b 283StringToInt (wxChar *s, int *number)
c801d85f
KB
284{
285 if (s && *s && number)
0080691b 286 *number = (int) wxStrtol (s, (wxChar **) NULL, 10);
c801d85f
KB
287}
288
3f4a0c5b 289void
0080691b 290StringToLong (wxChar *s, long *number)
c801d85f
KB
291{
292 if (s && *s && number)
0080691b 293 *number = wxStrtol (s, (wxChar **) NULL, 10);
c801d85f
KB
294}
295
84fff0b3 296wxChar *
c801d85f
KB
297IntToString (int number)
298{
84fff0b3 299 static wxChar buf[20];
c801d85f 300
223d09f6 301 wxSprintf (buf, wxT("%d"), number);
c801d85f
KB
302 return buf;
303}
304
84fff0b3 305wxChar *
c801d85f
KB
306LongToString (long number)
307{
84fff0b3 308 static wxChar buf[20];
c801d85f 309
223d09f6 310 wxSprintf (buf, wxT("%ld"), number);
c801d85f
KB
311 return buf;
312}
313
314// Array used in DecToHex conversion routine.
223d09f6 315static wxChar hexArray[] = wxT("0123456789ABCDEF");
c801d85f
KB
316
317// Convert 2-digit hex number to decimal
fd71308f 318int wxHexToDec(const wxString& buf)
c801d85f
KB
319{
320 int firstDigit, secondDigit;
3f4a0c5b 321
223d09f6
KB
322 if (buf.GetChar(0) >= wxT('A'))
323 firstDigit = buf.GetChar(0) - wxT('A') + 10;
c801d85f 324 else
223d09f6 325 firstDigit = buf.GetChar(0) - wxT('0');
c801d85f 326
223d09f6
KB
327 if (buf.GetChar(1) >= wxT('A'))
328 secondDigit = buf.GetChar(1) - wxT('A') + 10;
c801d85f 329 else
223d09f6 330 secondDigit = buf.GetChar(1) - wxT('0');
3f4a0c5b 331
c801d85f
KB
332 return firstDigit * 16 + secondDigit;
333}
334
335// Convert decimal integer to 2-character hex string
84fff0b3 336void wxDecToHex(int dec, wxChar *buf)
c801d85f
KB
337{
338 int firstDigit = (int)(dec/16.0);
339 int secondDigit = (int)(dec - (firstDigit*16.0));
340 buf[0] = hexArray[firstDigit];
341 buf[1] = hexArray[secondDigit];
342 buf[2] = 0;
343}
344
fd71308f
JS
345// Convert decimal integer to 2-character hex string
346wxString wxDecToHex(int dec)
347{
84fff0b3 348 wxChar buf[3];
fd71308f
JS
349 wxDecToHex(dec, buf);
350 return wxString(buf);
351}
352
c801d85f 353// Match a string INDEPENDENT OF CASE
3f4a0c5b 354bool
c801d85f
KB
355StringMatch (char *str1, char *str2, bool subString, bool exact)
356{
357 if (str1 == NULL || str2 == NULL)
358 return FALSE;
359 if (str1 == str2)
360 return TRUE;
361
362 if (subString)
363 {
364 int len1 = strlen (str1);
365 int len2 = strlen (str2);
366 int i;
367
368 // Search for str1 in str2
369 // Slow .... but acceptable for short strings
370 for (i = 0; i <= len2 - len1; i++)
3f4a0c5b
VZ
371 {
372 if (strncasecmp (str1, str2 + i, len1) == 0)
373 return TRUE;
374 }
c801d85f
KB
375 }
376 else if (exact)
377 {
378 if (strcasecmp (str1, str2) == 0)
3f4a0c5b 379 return TRUE;
c801d85f
KB
380 }
381 else
382 {
383 int len1 = strlen (str1);
384 int len2 = strlen (str2);
385
386 if (strncasecmp (str1, str2, wxMin (len1, len2)) == 0)
3f4a0c5b 387 return TRUE;
c801d85f
KB
388 }
389
390 return FALSE;
391}
392
393// Return the current date/time
394// [volatile]
e90c1d2a 395wxString wxNow()
c801d85f 396{
c67daf87 397 time_t now = time((time_t *) NULL);
3f4a0c5b 398 char *date = ctime(&now);
c801d85f
KB
399 date[24] = '\0';
400 return wxString(date);
401}
402
e90c1d2a
VZ
403#if wxUSE_GUI
404
405// ----------------------------------------------------------------------------
974e8d94 406// Menu accelerators related functions
e90c1d2a 407// ----------------------------------------------------------------------------
c801d85f 408
0080691b 409wxChar *wxStripMenuCodes (wxChar *in, wxChar *out)
c801d85f
KB
410{
411 if (!in)
0080691b 412 return (wxChar *) NULL;
3f4a0c5b 413
c801d85f
KB
414 if (!out)
415 out = copystring(in);
416
0080691b 417 wxChar *tmpOut = out;
3f4a0c5b 418
c801d85f
KB
419 while (*in)
420 {
223d09f6 421 if (*in == wxT('&'))
3f4a0c5b
VZ
422 {
423 // Check && -> &, &x -> x
223d09f6 424 if (*++in == wxT('&'))
3f4a0c5b
VZ
425 *out++ = *in++;
426 }
223d09f6 427 else if (*in == wxT('\t'))
3f4a0c5b 428 {
c801d85f
KB
429 // Remove all stuff after \t in X mode, and let the stuff as is
430 // in Windows mode.
431 // Accelerators are handled in wx_item.cc for Motif, and are not
432 // YET supported in XView
3f4a0c5b
VZ
433 break;
434 }
c801d85f 435 else
3f4a0c5b
VZ
436 *out++ = *in++;
437 } // while
c801d85f 438
223d09f6 439 *out = wxT('\0');
c801d85f
KB
440
441 return tmpOut;
442}
443
47bc1060
JS
444wxString wxStripMenuCodes(const wxString& str)
445{
84fff0b3
OK
446 wxChar *buf = new wxChar[str.Length() + 1];
447 wxStripMenuCodes(WXSTRINGCAST str, buf);
47bc1060
JS
448 wxString str1(buf);
449 delete[] buf;
450 return str1;
451}
c801d85f 452
974e8d94
VZ
453#if wxUSE_ACCEL
454
455// return wxAcceleratorEntry for the given menu string or NULL if none
456// specified
457wxAcceleratorEntry *wxGetAccelFromString(const wxString& label)
458{
459 // check for accelerators: they are given after '\t'
460 int posTab = label.Find(wxT('\t'));
461 if ( posTab != wxNOT_FOUND ) {
462 // parse the accelerator string
463 int keyCode = 0;
464 int accelFlags = wxACCEL_NORMAL;
465 wxString current;
466 for ( size_t n = (size_t)posTab + 1; n < label.Len(); n++ ) {
467 if ( (label[n] == '+') || (label[n] == '-') ) {
468 if ( current == _("ctrl") )
469 accelFlags |= wxACCEL_CTRL;
470 else if ( current == _("alt") )
471 accelFlags |= wxACCEL_ALT;
472 else if ( current == _("shift") )
473 accelFlags |= wxACCEL_SHIFT;
474 else {
475 wxLogDebug(wxT("Unknown accel modifier: '%s'"),
476 current.c_str());
477 }
478
479 current.Empty();
480 }
481 else {
482 current += wxTolower(label[n]);
483 }
484 }
485
486 if ( current.IsEmpty() ) {
487 wxLogDebug(wxT("No accel key found, accel string ignored."));
488 }
489 else {
490 if ( current.Len() == 1 ) {
491 // it's a letter
492 keyCode = wxToupper(current[0U]);
493 }
494 else {
495 // is it a function key?
496 if ( current[0U] == 'f' && isdigit(current[1U]) &&
497 (current.Len() == 2 ||
498 (current.Len() == 3 && isdigit(current[2U]))) ) {
499 int n;
500 wxSscanf(current.c_str() + 1, wxT("%d"), &n);
501
502 keyCode = WXK_F1 + n - 1;
503 }
504 else {
974e8d94
VZ
505 // several special cases
506 current.MakeUpper();
507 if ( current == wxT("DEL") ) {
3ca6a5f0 508 keyCode = WXK_DELETE;
974e8d94 509 }
3ca6a5f0
BP
510 else if ( current == wxT("DELETE") ) {
511 keyCode = WXK_DELETE;
512 }
513 else if ( current == wxT("INS") ) {
514 keyCode = WXK_INSERT;
515 }
516 else if ( current == wxT("INSERT") ) {
517 keyCode = WXK_INSERT;
518 }
519#if 0
974e8d94
VZ
520 else if ( current == wxT("PGUP") ) {
521 keyCode = VK_PRIOR;
522 }
523 else if ( current == wxT("PGDN") ) {
524 keyCode = VK_NEXT;
525 }
3ca6a5f0 526#endif
974e8d94 527 else
974e8d94 528 {
f6bcfd97
BP
529 wxLogDebug(wxT("Unrecognized accel key '%s', accel string ignored."),
530 current.c_str());
974e8d94
VZ
531 }
532 }
533 }
534 }
535
536 if ( keyCode ) {
537 // we do have something
538 return new wxAcceleratorEntry(accelFlags, keyCode);
539 }
540 }
541
bbeb6c2b 542 return (wxAcceleratorEntry *)NULL;
974e8d94
VZ
543}
544
545#endif // wxUSE_ACCEL
546
e90c1d2a
VZ
547// ----------------------------------------------------------------------------
548// Window search functions
549// ----------------------------------------------------------------------------
c801d85f
KB
550
551/*
552 * If parent is non-NULL, look through children for a label or title
553 * matching the specified string. If NULL, look through all top-level windows.
554 *
555 */
556
c801d85f
KB
557wxWindow *
558wxFindWindowByLabel (const wxString& title, wxWindow * parent)
559{
e146b8c8 560 if (parent)
c801d85f 561 {
e146b8c8 562 return wxFindWindowByLabel1(title, parent);
c801d85f 563 }
e146b8c8 564 else
c801d85f 565 {
e146b8c8
VZ
566 for ( wxWindowList::Node * node = wxTopLevelWindows.GetFirst();
567 node;
568 node = node->GetNext() )
3f4a0c5b 569 {
e146b8c8
VZ
570 wxWindow *win = node->GetData();
571 wxWindow *retwin = wxFindWindowByLabel1 (title, win);
572 if (retwin)
573 return retwin;
3f4a0c5b 574 } // for()
c801d85f
KB
575
576 }
e146b8c8 577 return (wxWindow *) NULL;
c801d85f
KB
578}
579
580// Recursive
581static wxWindow *
582wxFindWindowByLabel1 (const wxString& title, wxWindow * parent)
583{
e146b8c8 584 if (parent)
c801d85f 585 {
e146b8c8
VZ
586 if (parent->GetLabel() == title)
587 return parent;
c801d85f
KB
588 }
589
e146b8c8 590 if (parent)
c801d85f 591 {
f03fc89f 592 for ( wxWindowList::Node * node = parent->GetChildren().GetFirst();
e146b8c8
VZ
593 node;
594 node = node->GetNext() )
3f4a0c5b 595 {
e146b8c8
VZ
596 wxWindow *win = (wxWindow *)node->GetData();
597 wxWindow *retwin = wxFindWindowByLabel1 (title, win);
598 if (retwin)
599 return retwin;
600 }
c801d85f
KB
601
602 }
603
e146b8c8 604 return (wxWindow *) NULL; // Not found
c801d85f
KB
605}
606
607/*
608 * If parent is non-NULL, look through children for a name
609 * matching the specified string. If NULL, look through all top-level windows.
610 *
611 */
612
c801d85f
KB
613wxWindow *
614wxFindWindowByName (const wxString& title, wxWindow * parent)
615{
e146b8c8 616 if (parent)
c801d85f 617 {
e146b8c8 618 return wxFindWindowByName1 (title, parent);
c801d85f 619 }
e146b8c8 620 else
c801d85f 621 {
e146b8c8
VZ
622 for ( wxWindowList::Node * node = wxTopLevelWindows.GetFirst();
623 node;
624 node = node->GetNext() )
3f4a0c5b 625 {
e146b8c8
VZ
626 wxWindow *win = node->GetData();
627 wxWindow *retwin = wxFindWindowByName1 (title, win);
628 if (retwin)
629 return retwin;
630 }
c801d85f
KB
631
632 }
e146b8c8
VZ
633
634 // Failed? Try by label instead.
635 return wxFindWindowByLabel(title, parent);
c801d85f
KB
636}
637
638// Recursive
639static wxWindow *
640wxFindWindowByName1 (const wxString& title, wxWindow * parent)
641{
642 if (parent)
643 {
3f4a0c5b
VZ
644 if ( parent->GetName() == title )
645 return parent;
c801d85f
KB
646 }
647
648 if (parent)
649 {
c0ed460c 650 for (wxNode * node = parent->GetChildren().First (); node; node = node->Next ())
3f4a0c5b
VZ
651 {
652 wxWindow *win = (wxWindow *) node->Data ();
653 wxWindow *retwin = wxFindWindowByName1 (title, win);
654 if (retwin)
655 return retwin;
656 } // for()
c801d85f
KB
657
658 }
659
3f4a0c5b 660 return (wxWindow *) NULL; // Not found
c801d85f
KB
661
662}
663
664// Returns menu item id or -1 if none.
3f4a0c5b 665int
c801d85f
KB
666wxFindMenuItemId (wxFrame * frame, const wxString& menuString, const wxString& itemString)
667{
668 wxMenuBar *menuBar = frame->GetMenuBar ();
669 if (!menuBar)
670 return -1;
671 return menuBar->FindMenuItem (menuString, itemString);
59a12e90
JS
672}
673
d1c8aaa3
JS
674// Try to find the deepest child that contains 'pt'.
675// We go backwards, to try to allow for controls that are spacially
676// within other controls, but are still siblings (e.g. buttons within
677// static boxes). Static boxes are likely to be created _before_ controls
678// that sit inside them.
59a12e90
JS
679wxWindow* wxFindWindowAtPoint(wxWindow* win, const wxPoint& pt)
680{
d1c8aaa3
JS
681 if (!win->IsShown())
682 return NULL;
683
684 // Hack for wxNotebook case: at least in wxGTK, all pages
685 // claim to be shown, so we must only deal with the selected one.
686 if (win->IsKindOf(CLASSINFO(wxNotebook)))
687 {
688 wxNotebook* nb = (wxNotebook*) win;
689 int sel = nb->GetSelection();
690 if (sel >= 0)
691 {
692 wxWindow* child = nb->GetPage(sel);
693 wxWindow* foundWin = wxFindWindowAtPoint(child, pt);
694 if (foundWin)
695 return foundWin;
696 }
697 }
698 /* Doesn't work
699 // Frame case
700 else if (win->IsKindOf(CLASSINFO(wxFrame)))
701 {
702 // Pseudo-children that may not be mentioned in the child list
703 wxWindowList extraChildren;
704 wxFrame* frame = (wxFrame*) win;
705 if (frame->GetStatusBar())
706 extraChildren.Append(frame->GetStatusBar());
707 if (frame->GetToolBar())
708 extraChildren.Append(frame->GetToolBar());
709
710 wxNode* node = extraChildren.First();
711 while (node)
712 {
713 wxWindow* child = (wxWindow*) node->Data();
714 wxWindow* foundWin = wxFindWindowAtPoint(child, pt);
715 if (foundWin)
716 return foundWin;
717 node = node->Next();
718 }
719 }
720 */
721
722 wxNode* node = win->GetChildren().Last();
59a12e90
JS
723 while (node)
724 {
725 wxWindow* child = (wxWindow*) node->Data();
726 wxWindow* foundWin = wxFindWindowAtPoint(child, pt);
727 if (foundWin)
d1c8aaa3
JS
728 return foundWin;
729 node = node->Previous();
59a12e90
JS
730 }
731
732 wxPoint pos = win->GetPosition();
733 wxSize sz = win->GetSize();
734 if (win->GetParent())
735 {
736 pos = win->GetParent()->ClientToScreen(pos);
737 }
738
739 wxRect rect(pos, sz);
740 if (rect.Inside(pt))
741 return win;
742 else
743 return NULL;
744}
745
57591e0e 746wxWindow* wxGenericFindWindowAtPoint(const wxPoint& pt)
59a12e90 747{
57591e0e
JS
748 // Go backwards through the list since windows
749 // on top are likely to have been appended most
750 // recently.
751 wxNode* node = wxTopLevelWindows.Last();
59a12e90
JS
752 while (node)
753 {
754 wxWindow* win = (wxWindow*) node->Data();
755 wxWindow* found = wxFindWindowAtPoint(win, pt);
756 if (found)
757 return found;
57591e0e 758 node = node->Previous();
59a12e90
JS
759 }
760 return NULL;
c801d85f
KB
761}
762
e90c1d2a
VZ
763#endif // wxUSE_GUI
764
c801d85f
KB
765/*
766On Fri, 21 Jul 1995, Paul Craven wrote:
767
768> Is there a way to find the path of running program's executable? I can get
769> my home directory, and the current directory, but I don't know how to get the
770> executable directory.
3f4a0c5b 771>
c801d85f
KB
772
773The code below (warty as it is), does what you want on most Unix,
774DOS, and Mac platforms (it's from the ALS Prolog main).
775
3f4a0c5b 776|| Ken Bowen Applied Logic Systems, Inc. PO Box 180,
c801d85f
KB
777||==== Voice: +1 (617)965-9191 Newton Centre,
778|| FAX: +1 (617)965-1636 MA 02159 USA
779 Email: ken@als.com WWW: http://www.als.com
780------------------------------------------------------------------------
781*/
782
783// This code is commented out but it may be integrated with wxWin at
784// a later date, after testing. Thanks Ken!
785#if 0
786
787/*--------------------------------------------------------------------*
788 | whereami is given a filename f in the form: whereami(argv[0])
3f4a0c5b
VZ
789 | It returns the directory in which the executable file (containing
790 | this code [main.c] ) may be found. A dot will be returned to indicate
c801d85f
KB
791 | the current directory.
792 *--------------------------------------------------------------------*/
793
794static void
795whereami(name)
796 char *name;
797{
3f4a0c5b 798 register char *cutoff = NULL; /* stifle -Wall */
c801d85f
KB
799 register char *s;
800 register char *t;
801 int cc;
802 char ebuf[4096];
803
804 /*
805 * See if the file is accessible either through the current directory
806 * or through an absolute path.
807 */
808
809 if (access(name, R_OK) == 0) {
810
3f4a0c5b
VZ
811 /*-------------------------------------------------------------*
812 * The file was accessible without any other work. But the current
813 * working directory might change on us, so if it was accessible
814 * through the cwd, then we should get it for later accesses.
815 *-------------------------------------------------------------*/
c801d85f 816
3f4a0c5b
VZ
817 t = imagedir;
818 if (!absolute_pathname(name)) {
c801d85f 819#if defined(DOS) || defined(__WIN32__)
3f4a0c5b
VZ
820 int drive;
821 char *newrbuf;
c801d85f 822
3f4a0c5b 823 newrbuf = imagedir;
c801d85f 824#ifndef __DJGPP__
3f4a0c5b
VZ
825 if (*(name + 1) == ':') {
826 if (*name >= 'a' && *name <= 'z')
827 drive = (int) (*name - 'a' + 1);
828 else
829 drive = (int) (*name - 'A' + 1);
830 *newrbuf++ = *name;
831 *newrbuf++ = *(name + 1);
832 *newrbuf++ = DIR_SEPARATOR;
833 }
834 else {
835 drive = 0;
836 *newrbuf++ = DIR_SEPARATOR;
837 }
838 if (getcwd(newrbuf, drive) == 0) { /* } */
c801d85f 839#else
3f4a0c5b 840 if (getcwd(newrbuf, 1024) == 0) { /* } */
c801d85f
KB
841#endif
842#else /* DOS */
843#ifdef HAVE_GETWD
3f4a0c5b 844 if (getwd(imagedir) == 0) { /* } */
c801d85f 845#else /* !HAVE_GETWD */
3f4a0c5b 846 if (getcwd(imagedir, 1024) == 0) {
c801d85f
KB
847#endif /* !HAVE_GETWD */
848#endif /* DOS */
3f4a0c5b
VZ
849 fatal_error(FE_GETCWD, 0);
850 }
851 for (; *t; t++) /* Set t to end of buffer */
852 ;
853 if (*(t - 1) == DIR_SEPARATOR) /* leave slash if already
854 * last char
855 */
856 cutoff = t - 1;
857 else {
858 cutoff = t; /* otherwise put one in */
859 *t++ = DIR_SEPARATOR;
860 }
861 }
c801d85f 862#if (!defined(__MAC__) && !defined(__DJGPP__) && !defined(__GO32__) && !defined(__WIN32__))
3f4a0c5b
VZ
863 else
864 (*t++ = DIR_SEPARATOR);
c801d85f
KB
865#endif
866
3f4a0c5b
VZ
867 /*-------------------------------------------------------------*
868 * Copy the rest of the string and set the cutoff if it was not
869 * already set. If the first character of name is a slash, cutoff
870 * is not presently set but will be on the first iteration of the
871 * loop below.
872 *-------------------------------------------------------------*/
c801d85f 873
3f4a0c5b
VZ
874 for ((*name == DIR_SEPARATOR ? (s = name+1) : (s = name));;) {
875 if (*s == DIR_SEPARATOR)
876 cutoff = t;
877 if (!(*t++ = *s++))
878 break;
879 }
c801d85f
KB
880
881 }
882 else {
883
3f4a0c5b
VZ
884 /*-------------------------------------------------------------*
885 * Get the path list from the environment. If the path list is
886 * inaccessible for any reason, leave with fatal error.
887 *-------------------------------------------------------------*/
c801d85f
KB
888
889#ifdef __MAC__
3f4a0c5b 890 if ((s = getenv("Commands")) == (char *) 0)
c801d85f 891#else
3f4a0c5b 892 if ((s = getenv("PATH")) == (char *) 0)
c801d85f 893#endif
3f4a0c5b
VZ
894 fatal_error(FE_PATH, 0);
895
896 /*
897 * Copy path list into ebuf and set the source pointer to the
898 * beginning of this buffer.
899 */
900
901 strcpy(ebuf, s);
902 s = ebuf;
903
904 for (;;) {
905 t = imagedir;
906 while (*s && *s != PATH_SEPARATOR)
907 *t++ = *s++;
908 if (t > imagedir && *(t - 1) == DIR_SEPARATOR)
909 ; /* do nothing -- slash already is in place */
910 else
911 *t++ = DIR_SEPARATOR; /* put in the slash */
912 cutoff = t - 1; /* set cutoff */
913 strcpy(t, name);
914 if (access(imagedir, R_OK) == 0)
915 break;
916
917 if (*s)
918 s++; /* advance source pointer */
919 else
920 fatal_error(FE_INFND, 0);
921 }
c801d85f
KB
922
923 }
924
925 /*-------------------------------------------------------------*
926 | At this point the full pathname should exist in imagedir and
927 | cutoff should be set to the final slash. We must now determine
928 | whether the file name is a symbolic link or not and chase it down
929 | if it is. Note that we reuse ebuf for getting the link.
930 *-------------------------------------------------------------*/
931
932#ifdef HAVE_SYMLINK
933 while ((cc = readlink(imagedir, ebuf, 512)) != -1) {
3f4a0c5b
VZ
934 ebuf[cc] = 0;
935 s = ebuf;
936 if (*s == DIR_SEPARATOR) {
937 t = imagedir;
938 }
939 else {
940 t = cutoff + 1;
941 }
942 for (;;) {
943 if (*s == DIR_SEPARATOR)
944 cutoff = t; /* mark the last slash seen */
945 if (!(*t++ = *s++)) /* copy the character */
946 break;
947 }
c801d85f
KB
948 }
949
950#endif /* HAVE_SYMLINK */
951
3f4a0c5b
VZ
952 strcpy(imagename, cutoff + 1); /* keep the image name */
953 *(cutoff + 1) = 0; /* chop off the filename part */
c801d85f
KB
954}
955
956#endif
ead7ce10 957
e90c1d2a
VZ
958#if wxUSE_GUI
959
960// ----------------------------------------------------------------------------
961// GUI helpers
962// ----------------------------------------------------------------------------
ead7ce10 963
dfad0599
JS
964/*
965 * N.B. these convenience functions must be separate from msgdlgg.cpp, textdlgg.cpp
966 * since otherwise the generic code may be pulled in unnecessarily.
967 */
968
969int wxMessageBox(const wxString& message, const wxString& caption, long style,
970 wxWindow *parent, int WXUNUSED(x), int WXUNUSED(y) )
971{
972 wxMessageDialog dialog(parent, message, caption, style);
973
974 int ans = dialog.ShowModal();
975 switch ( ans )
976 {
977 case wxID_OK:
978 return wxOK;
dfad0599
JS
979 case wxID_YES:
980 return wxYES;
dfad0599
JS
981 case wxID_NO:
982 return wxNO;
dfad0599
JS
983 case wxID_CANCEL:
984 return wxCANCEL;
dfad0599 985 }
3ca6a5f0
BP
986
987 wxFAIL_MSG( _T("unexpected return code from wxMessageDialog") );
988
989 return wxCANCEL;
dfad0599
JS
990}
991
88ac883a 992#if wxUSE_TEXTDLG
dfad0599
JS
993wxString wxGetTextFromUser(const wxString& message, const wxString& caption,
994 const wxString& defaultValue, wxWindow *parent,
995 int x, int y, bool WXUNUSED(centre) )
996{
d2f50933 997 wxString str;
dfad0599
JS
998 wxTextEntryDialog dialog(parent, message, caption, defaultValue, wxOK|wxCANCEL, wxPoint(x, y));
999 if (dialog.ShowModal() == wxID_OK)
d2f50933
VZ
1000 {
1001 str = dialog.GetValue();
1002 }
1003
1004 return str;
dfad0599 1005}
d2f50933
VZ
1006
1007wxString wxGetPasswordFromUser(const wxString& message,
1008 const wxString& caption,
1009 const wxString& defaultValue,
1010 wxWindow *parent)
1011{
1012 wxString str;
1013 wxTextEntryDialog dialog(parent, message, caption, defaultValue,
1014 wxOK | wxCANCEL | wxTE_PASSWORD);
1015 if ( dialog.ShowModal() == wxID_OK )
1016 {
1017 str = dialog.GetValue();
1018 }
1019
1020 return str;
1021}
1022
88ac883a 1023#endif // wxUSE_TEXTDLG
dfad0599 1024
91b4c08d
VZ
1025wxColour wxGetColourFromUser(wxWindow *parent, const wxColour& colInit)
1026{
1027 wxColourData data;
1028 data.SetChooseFull(TRUE);
1029 if ( colInit.Ok() )
1030 {
1031 data.SetColour((wxColour &)colInit); // const_cast
1032 }
1033
1034 wxColour colRet;
1035 wxColourDialog dialog(parent, &data);
1036 if ( dialog.ShowModal() == wxID_OK )
1037 {
1038 colRet = dialog.GetColourData().GetColour();
1039 }
1040 //else: leave it invalid
1041
1042 return colRet;
1043}
1044
1045// ----------------------------------------------------------------------------
1046// missing C RTL functions (FIXME shouldn't be here at all)
1047// ----------------------------------------------------------------------------
1048
469e1e5c 1049#ifdef __MWERKS__
3f4a0c5b 1050char *strdup(const char *s)
469e1e5c 1051{
3f4a0c5b 1052 return strcpy( (char*) malloc( strlen( s ) + 1 ) , s ) ;
469e1e5c
SC
1053}
1054
3f4a0c5b 1055int isascii( int c )
469e1e5c 1056{
3f4a0c5b 1057 return ( c >= 0 && c < 128 ) ;
469e1e5c 1058}
e90c1d2a
VZ
1059#endif // __MWERKS__
1060
1061// ----------------------------------------------------------------------------
cbc66a27 1062// wxSafeYield and supporting functions
e90c1d2a
VZ
1063// ----------------------------------------------------------------------------
1064
1065void wxEnableTopLevelWindows(bool enable)
1066{
225fe9d6
VZ
1067 wxWindowList::Node *node;
1068 for ( node = wxTopLevelWindows.GetFirst(); node; node = node->GetNext() )
1069 node->GetData()->Enable(enable);
e90c1d2a
VZ
1070}
1071
cd6ce4a9 1072wxWindowDisabler::wxWindowDisabler(wxWindow *winToSkip)
e90c1d2a 1073{
5e1febfa 1074#ifdef __WXMSW__
62ea79f3 1075#ifdef __WIN32__
5e1febfa
VZ
1076 // and the top level window too
1077 HWND hwndFG = ::GetForegroundWindow();
1078 m_winTop = hwndFG ? wxFindWinFromHandle((WXHWND)hwndFG) : (wxWindow *)NULL;
62ea79f3 1079#else
669f7a11 1080 HWND hwndFG = ::GetTopWindow(0);
62ea79f3
JS
1081 m_winTop = hwndFG ? wxFindWinFromHandle((WXHWND)hwndFG) : (wxWindow *)NULL;
1082#endif
5e1febfa
VZ
1083#endif // MSW
1084
79f585d9
VZ
1085 // remember the top level windows which were already disabled, so that we
1086 // don't reenable them later
1087 m_winDisabled = NULL;
1088
225fe9d6
VZ
1089 wxWindowList::Node *node;
1090 for ( node = wxTopLevelWindows.GetFirst(); node; node = node->GetNext() )
1091 {
1092 wxWindow *winTop = node->GetData();
79f585d9
VZ
1093 if ( winTop == winToSkip )
1094 continue;
1095
1096 if ( winTop->IsEnabled() )
1097 {
1098 winTop->Disable();
1099 }
1100 else
cd6ce4a9 1101 {
79f585d9
VZ
1102 if ( !m_winDisabled )
1103 {
1104 m_winDisabled = new wxWindowList;
1105 }
225fe9d6 1106
cd6ce4a9 1107 m_winDisabled->Append(winTop);
cd6ce4a9 1108 }
225fe9d6 1109 }
cd6ce4a9 1110}
225fe9d6 1111
cd6ce4a9
VZ
1112wxWindowDisabler::~wxWindowDisabler()
1113{
1114 wxWindowList::Node *node;
79f585d9 1115 for ( node = wxTopLevelWindows.GetFirst(); node; node = node->GetNext() )
225fe9d6 1116 {
79f585d9
VZ
1117 wxWindow *winTop = node->GetData();
1118 if ( !m_winDisabled || !m_winDisabled->Find(winTop) )
1119 {
1120 winTop->Enable();
1121 }
1122 //else: had been already disabled, don't reenable
225fe9d6
VZ
1123 }
1124
cd6ce4a9 1125 delete m_winDisabled;
5e1febfa
VZ
1126
1127#ifdef __WXMSW__
62ea79f3 1128#ifdef __WIN32__
5e1febfa
VZ
1129 if ( m_winTop )
1130 {
1131 if ( !::SetForegroundWindow(GetHwndOf(m_winTop)) )
1132 {
f6bcfd97 1133 wxLogLastError(wxT("SetForegroundWindow"));
5e1febfa
VZ
1134 }
1135 }
62ea79f3
JS
1136#else
1137 if ( m_winTop )
1138 {
1139 // 16-bit SetForegroundWindow() replacement
1140 RECT reWin;
669f7a11
JS
1141 GetWindowRect((HWND) m_winTop, &reWin);
1142 SetWindowPos ((HWND) m_winTop, HWND_TOP,
62ea79f3
JS
1143 reWin.left, reWin.top,
1144 reWin.right - reWin.left, reWin.bottom,
1145 SWP_SHOWWINDOW);
1146 }
1147#endif
5e1febfa 1148#endif // MSW
cd6ce4a9
VZ
1149}
1150
1151// Yield to other apps/messages and disable user input to all windows except
1152// the given one
1153bool wxSafeYield(wxWindow *win)
1154{
bc1dcfc1 1155 wxWindowDisabler wd(win);
cd6ce4a9
VZ
1156
1157 bool rc = wxYield();
1158
225fe9d6 1159 return rc;
e90c1d2a
VZ
1160}
1161
cbc66a27
VZ
1162// ----------------------------------------------------------------------------
1163// misc functions
1164// ----------------------------------------------------------------------------
1165
e90c1d2a
VZ
1166// Don't synthesize KeyUp events holding down a key and producing KeyDown
1167// events with autorepeat. On by default and always on in wxMSW. wxGTK version
1168// in utilsgtk.cpp.
1169#ifndef __WXGTK__
1170bool wxSetDetectableAutoRepeat( bool WXUNUSED(flag) )
1171{
225fe9d6 1172 return TRUE; // detectable auto-repeat is the only mode MSW supports
e90c1d2a
VZ
1173}
1174#endif // !wxGTK
1175
1176#endif // wxUSE_GUI
e2a6f233 1177
0fb67cd1
VZ
1178// ----------------------------------------------------------------------------
1179// network and user id functions
1180// ----------------------------------------------------------------------------
1181
1182// Get Full RFC822 style email address
84fff0b3 1183bool wxGetEmailAddress(wxChar *address, int maxSize)
e2a6f233 1184{
0fb67cd1
VZ
1185 wxString email = wxGetEmailAddress();
1186 if ( !email )
e2a6f233 1187 return FALSE;
0fb67cd1 1188
84fff0b3 1189 wxStrncpy(address, email, maxSize - 1);
223d09f6 1190 address[maxSize - 1] = wxT('\0');
0fb67cd1
VZ
1191
1192 return TRUE;
e2a6f233
JS
1193}
1194
0fb67cd1 1195wxString wxGetEmailAddress()
e2a6f233 1196{
0fb67cd1
VZ
1197 wxString email;
1198
1f0500b3 1199 wxString host = wxGetFullHostName();
0fb67cd1 1200 if ( !!host )
e2a6f233 1201 {
0fb67cd1
VZ
1202 wxString user = wxGetUserId();
1203 if ( !!user )
1204 {
1f0500b3 1205 email << user << wxT('@') << host;
0fb67cd1 1206 }
e2a6f233 1207 }
0fb67cd1
VZ
1208
1209 return email;
1210}
1211
1212wxString wxGetUserId()
1213{
1214 static const int maxLoginLen = 256; // FIXME arbitrary number
1215
1216 wxString buf;
1217 bool ok = wxGetUserId(buf.GetWriteBuf(maxLoginLen), maxLoginLen);
1218 buf.UngetWriteBuf();
1219
1220 if ( !ok )
1221 buf.Empty();
1222
1223 return buf;
1224}
1225
1226wxString wxGetUserName()
1227{
1228 static const int maxUserNameLen = 1024; // FIXME arbitrary number
1229
1230 wxString buf;
1231 bool ok = wxGetUserName(buf.GetWriteBuf(maxUserNameLen), maxUserNameLen);
1232 buf.UngetWriteBuf();
1233
1234 if ( !ok )
1235 buf.Empty();
1236
1237 return buf;
e2a6f233
JS
1238}
1239
0fb67cd1 1240wxString wxGetHostName()
518b5d2f
VZ
1241{
1242 static const size_t hostnameSize = 257;
0fb67cd1
VZ
1243
1244 wxString buf;
518b5d2f
VZ
1245 bool ok = wxGetHostName(buf.GetWriteBuf(hostnameSize), hostnameSize);
1246
1247 buf.UngetWriteBuf();
1248
0fb67cd1
VZ
1249 if ( !ok )
1250 buf.Empty();
1251
1252 return buf;
518b5d2f
VZ
1253}
1254
96c5bd7f
KB
1255wxString wxGetFullHostName()
1256{
1257 static const size_t hostnameSize = 257;
1258
1259 wxString buf;
1260 bool ok = wxGetFullHostName(buf.GetWriteBuf(hostnameSize), hostnameSize);
1261
1262 buf.UngetWriteBuf();
1263
1264 if ( !ok )
1265 buf.Empty();
1266
1267 return buf;
1268}
1269
c51deffc
VZ
1270wxString wxGetHomeDir()
1271{
1272 wxString home;
1273 wxGetHomeDir(&home);
1274
1275 return home;
1276}
bc385ba9
VZ
1277
1278#if 0
1279
1280wxString wxGetCurrentDir()
1281{
1282 wxString dir;
1283 size_t len = 1024;
1284 bool ok;
1285 do
1286 {
1287 ok = getcwd(dir.GetWriteBuf(len + 1), len) != NULL;
1288 dir.UngetWriteBuf();
1289
1290 if ( !ok )
1291 {
1292 if ( errno != ERANGE )
1293 {
1294 wxLogSysError(_T("Failed to get current directory"));
1295
1296 return wxEmptyString;
1297 }
1298 else
1299 {
1300 // buffer was too small, retry with a larger one
1301 len *= 2;
1302 }
1303 }
1304 //else: ok
1305 } while ( !ok );
1306
1307 return dir;
1308}
1309
1310#endif // 0
cd6ce4a9
VZ
1311
1312// ----------------------------------------------------------------------------
1313// wxExecute
1314// ----------------------------------------------------------------------------
1315
f6bcfd97
BP
1316// this is a private function because it hasn't a clean interface: the first
1317// array is passed by reference, the second by pointer - instead we have 2
1318// public versions of wxExecute() below
1319static long wxDoExecuteWithCapture(const wxString& command,
1320 wxArrayString& output,
1321 wxArrayString* error)
cd6ce4a9 1322{
669f7a11
JS
1323#ifdef __WIN16__
1324 wxFAIL_MSG("Sorry, this version of wxExecute not implemented on WIN16.");
f6bcfd97 1325
669f7a11 1326 return 0;
f6bcfd97 1327#else // !Win16
cd6ce4a9
VZ
1328 // create a wxProcess which will capture the output
1329 wxProcess *process = new wxProcess;
1330 process->Redirect();
1331
1332 long rc = wxExecute(command, TRUE /* sync */, process);
f6bcfd97
BP
1333
1334#if wxUSE_STREAMS
cd6ce4a9
VZ
1335 if ( rc != -1 )
1336 {
f6bcfd97
BP
1337 wxInputStream* is = process->GetInputStream();
1338 wxCHECK_MSG( is, -1, _T("if wxExecute() succeded, stream can't be NULL") );
1339 wxTextInputStream tis(*is);
1340
1341 wxTextInputStream *tes = NULL;
1342 wxInputStream *es = NULL;
1343 if ( error )
cd6ce4a9 1344 {
f6bcfd97
BP
1345 es = process->GetErrorStream();
1346
1347 wxCHECK_MSG( es, -1, _T("stderr can't be NULL") );
1348
1349 tes = new wxTextInputStream(*es);
1350 }
1351
1352 bool cont;
1353 do
1354 {
1355 cont = FALSE;
1356
1357 if ( !is->Eof() && is->IsOk() )
1358 {
1359 wxString line = tis.ReadLine();
1360 if ( is->LastError() )
1361 break;
1362
1363 cont = TRUE;
1364
1365 output.Add(line);
1366 }
1367
1368 if ( error && !es->Eof() && es->IsOk() )
1369 {
1370 wxString line = tes->ReadLine();
1371 if ( es->LastError() )
1372 break;
1373
1374 cont = TRUE;
cd6ce4a9 1375
f6bcfd97
BP
1376 error->Add(line);
1377 }
cd6ce4a9 1378 }
f6bcfd97
BP
1379 while ( cont );
1380
1381 delete tes;
cd6ce4a9 1382 }
f6bcfd97
BP
1383#endif // wxUSE_STREAMS
1384
1385 delete process;
cd6ce4a9
VZ
1386
1387 return rc;
f6bcfd97
BP
1388#endif // IO redirection supoprted
1389}
1390
1391long wxExecute(const wxString& command, wxArrayString& output)
1392{
1393 return wxDoExecuteWithCapture(command, output, NULL);
1394}
1395
1396long wxExecute(const wxString& command,
1397 wxArrayString& output,
1398 wxArrayString& error)
1399{
1400 return wxDoExecuteWithCapture(command, output, &error);
cd6ce4a9 1401}