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