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