]>
git.saurik.com Git - wxWidgets.git/blob - src/common/utilscmn.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Miscellaneous utility functions and classes
4 // Author: Julian Smart
8 // Copyright: (c) 1998 Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "utils.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
26 #include "wx/window.h"
29 #include "wx/msgdlg.h"
30 #include "wx/textdlg.h"
33 #include "wx/ioswrap.h"
45 #if !defined(__WATCOMC__)
46 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
52 #include <sys/types.h>
60 // Pattern matching code.
61 // Yes, this path is deliberate (for Borland compilation)
62 #ifdef wx_mac /* MATTHEW: [5] Mac doesn't like paths with "/" */
65 #include "../common/glob.inc"
72 #define _MAXPATHLEN 500
74 extern wxChar
*wxBuffer
;
76 // ----------------------------------------------------------------------------
78 // ----------------------------------------------------------------------------
80 static wxWindow
*wxFindWindowByLabel1(const wxString
& title
, wxWindow
* parent
);
81 static wxWindow
*wxFindWindowByName1 (const wxString
& title
, wxWindow
* parent
);
84 int strcasecmp(const char *str_1
, const char *str_2
)
88 c1
= tolower(*str_1
++);
89 c2
= tolower(*str_2
++);
90 } while ( c1
&& (c1
== c2
) );
95 int strncasecmp(const char *str_1
, const char *str_2
, size_t maxchar
)
101 c1
= tolower(*str_1
++);
102 c2
= tolower(*str_2
++);
114 // we have no strI functions under VMS, therefore I have implemented
115 // an inefficient but portable version: convert copies of strings to lowercase
116 // and then use the normal comparison
117 static void myLowerString(char *s
)
120 if(isalpha(*s
)) *s
= (char)tolower(*s
);
125 int strcasecmp(const char *str_1
, const char *str_2
)
127 char *temp1
= new char[strlen(str_1
)+1];
128 char *temp2
= new char[strlen(str_2
)+1];
131 myLowerString(temp1
);
132 myLowerString(temp2
);
134 int result
= strcmp(temp1
,temp2
);
141 int strncasecmp(const char *str_1
, const char *str_2
, size_t maxchar
)
143 char *temp1
= new char[strlen(str_1
)+1];
144 char *temp2
= new char[strlen(str_2
)+1];
147 myLowerString(temp1
);
148 myLowerString(temp2
);
150 int result
= strncmp(temp1
,temp2
,maxchar
);
162 #define strcasecmp stricmp
163 #define strncasecmp strnicmp
165 #define strcasecmp _stricmp
166 #define strncasecmp _strnicmp
171 // This declaration is missing in SunOS!
172 // (Yes, I know it is NOT ANSI-C but its in BSD libc)
173 #if defined(__xlC) || defined(__AIX__) || defined(__GNUG__)
176 int strcasecmp (const char *, const char *);
177 int strncasecmp (const char *, const char *, size_t);
180 #endif /* __WXMSW__ */
184 copystring (const wxChar
*s
)
186 if (s
== NULL
) s
= _T("");
187 size_t len
= wxStrlen (s
) + 1;
189 wxChar
*news
= new wxChar
[len
];
190 memcpy (news
, s
, len
* sizeof(wxChar
)); // Should be the fastest
196 static long wxCurrentId
= 100;
201 return wxCurrentId
++;
205 wxGetCurrentId(void) { return wxCurrentId
; }
208 wxRegisterId (long id
)
210 if (id
>= wxCurrentId
)
211 wxCurrentId
= id
+ 1;
215 StringToFloat (wxChar
*s
, float *number
)
217 if (s
&& *s
&& number
)
218 *number
= (float) wxStrtod (s
, (wxChar
**) NULL
);
222 StringToDouble (wxChar
*s
, double *number
)
224 if (s
&& *s
&& number
)
225 *number
= wxStrtod (s
, (wxChar
**) NULL
);
229 FloatToString (float number
, const wxChar
*fmt
)
231 static wxChar buf
[256];
233 // sprintf (buf, "%.2f", number);
234 wxSprintf (buf
, fmt
, number
);
239 DoubleToString (double number
, const wxChar
*fmt
)
241 static wxChar buf
[256];
243 wxSprintf (buf
, fmt
, number
);
248 StringToInt (wxChar
*s
, int *number
)
250 if (s
&& *s
&& number
)
251 *number
= (int) wxStrtol (s
, (wxChar
**) NULL
, 10);
255 StringToLong (wxChar
*s
, long *number
)
257 if (s
&& *s
&& number
)
258 *number
= wxStrtol (s
, (wxChar
**) NULL
, 10);
262 IntToString (int number
)
264 static wxChar buf
[20];
266 wxSprintf (buf
, _T("%d"), number
);
271 LongToString (long number
)
273 static wxChar buf
[20];
275 wxSprintf (buf
, _T("%ld"), number
);
279 // Array used in DecToHex conversion routine.
280 static wxChar hexArray
[] = _T("0123456789ABCDEF");
282 // Convert 2-digit hex number to decimal
283 int wxHexToDec(const wxString
& buf
)
285 int firstDigit
, secondDigit
;
287 if (buf
.GetChar(0) >= _T('A'))
288 firstDigit
= buf
.GetChar(0) - _T('A') + 10;
290 firstDigit
= buf
.GetChar(0) - _T('0');
292 if (buf
.GetChar(1) >= _T('A'))
293 secondDigit
= buf
.GetChar(1) - _T('A') + 10;
295 secondDigit
= buf
.GetChar(1) - _T('0');
297 return firstDigit
* 16 + secondDigit
;
300 // Convert decimal integer to 2-character hex string
301 void wxDecToHex(int dec
, wxChar
*buf
)
303 int firstDigit
= (int)(dec
/16.0);
304 int secondDigit
= (int)(dec
- (firstDigit
*16.0));
305 buf
[0] = hexArray
[firstDigit
];
306 buf
[1] = hexArray
[secondDigit
];
310 // Convert decimal integer to 2-character hex string
311 wxString
wxDecToHex(int dec
)
314 wxDecToHex(dec
, buf
);
315 return wxString(buf
);
318 // Match a string INDEPENDENT OF CASE
320 StringMatch (char *str1
, char *str2
, bool subString
, bool exact
)
322 if (str1
== NULL
|| str2
== NULL
)
329 int len1
= strlen (str1
);
330 int len2
= strlen (str2
);
333 // Search for str1 in str2
334 // Slow .... but acceptable for short strings
335 for (i
= 0; i
<= len2
- len1
; i
++)
337 if (strncasecmp (str1
, str2
+ i
, len1
) == 0)
343 if (strcasecmp (str1
, str2
) == 0)
348 int len1
= strlen (str1
);
349 int len2
= strlen (str2
);
351 if (strncasecmp (str1
, str2
, wxMin (len1
, len2
)) == 0)
358 // Return the current date/time
360 wxString
wxNow( void )
362 time_t now
= time((time_t *) NULL
);
363 char *date
= ctime(&now
);
365 return wxString(date
);
369 * Strip out any menu codes
372 wxChar
*wxStripMenuCodes (wxChar
*in
, wxChar
*out
)
375 return (wxChar
*) NULL
;
378 out
= copystring(in
);
380 wxChar
*tmpOut
= out
;
386 // Check && -> &, &x -> x
387 if (*++in
== _T('&'))
390 else if (*in
== _T('\t'))
392 // Remove all stuff after \t in X mode, and let the stuff as is
394 // Accelerators are handled in wx_item.cc for Motif, and are not
395 // YET supported in XView
407 wxString
wxStripMenuCodes(const wxString
& str
)
409 wxChar
*buf
= new wxChar
[str
.Length() + 1];
410 wxStripMenuCodes(WXSTRINGCAST str
, buf
);
417 * Window search functions
422 * If parent is non-NULL, look through children for a label or title
423 * matching the specified string. If NULL, look through all top-level windows.
428 wxFindWindowByLabel (const wxString
& title
, wxWindow
* parent
)
432 return wxFindWindowByLabel1(title
, parent
);
436 for ( wxWindowList::Node
* node
= wxTopLevelWindows
.GetFirst();
438 node
= node
->GetNext() )
440 wxWindow
*win
= node
->GetData();
441 wxWindow
*retwin
= wxFindWindowByLabel1 (title
, win
);
447 return (wxWindow
*) NULL
;
452 wxFindWindowByLabel1 (const wxString
& title
, wxWindow
* parent
)
456 if (parent
->GetLabel() == title
)
462 for ( wxWindowList::Node
* node
= parent
->GetChildren().GetFirst();
464 node
= node
->GetNext() )
466 wxWindow
*win
= (wxWindow
*)node
->GetData();
467 wxWindow
*retwin
= wxFindWindowByLabel1 (title
, win
);
474 return (wxWindow
*) NULL
; // Not found
478 * If parent is non-NULL, look through children for a name
479 * matching the specified string. If NULL, look through all top-level windows.
484 wxFindWindowByName (const wxString
& title
, wxWindow
* parent
)
488 return wxFindWindowByName1 (title
, parent
);
492 for ( wxWindowList::Node
* node
= wxTopLevelWindows
.GetFirst();
494 node
= node
->GetNext() )
496 wxWindow
*win
= node
->GetData();
497 wxWindow
*retwin
= wxFindWindowByName1 (title
, win
);
504 // Failed? Try by label instead.
505 return wxFindWindowByLabel(title
, parent
);
510 wxFindWindowByName1 (const wxString
& title
, wxWindow
* parent
)
514 if ( parent
->GetName() == title
)
520 for (wxNode
* node
= parent
->GetChildren().First (); node
; node
= node
->Next ())
522 wxWindow
*win
= (wxWindow
*) node
->Data ();
523 wxWindow
*retwin
= wxFindWindowByName1 (title
, win
);
530 return (wxWindow
*) NULL
; // Not found
534 // Returns menu item id or -1 if none.
536 wxFindMenuItemId (wxFrame
* frame
, const wxString
& menuString
, const wxString
& itemString
)
538 wxMenuBar
*menuBar
= frame
->GetMenuBar ();
541 return menuBar
->FindMenuItem (menuString
, itemString
);
545 On Fri, 21 Jul 1995, Paul Craven wrote:
547 > Is there a way to find the path of running program's executable? I can get
548 > my home directory, and the current directory, but I don't know how to get the
549 > executable directory.
552 The code below (warty as it is), does what you want on most Unix,
553 DOS, and Mac platforms (it's from the ALS Prolog main).
555 || Ken Bowen Applied Logic Systems, Inc. PO Box 180,
556 ||==== Voice: +1 (617)965-9191 Newton Centre,
557 || FAX: +1 (617)965-1636 MA 02159 USA
558 Email: ken@als.com WWW: http://www.als.com
559 ------------------------------------------------------------------------
562 // This code is commented out but it may be integrated with wxWin at
563 // a later date, after testing. Thanks Ken!
566 /*--------------------------------------------------------------------*
567 | whereami is given a filename f in the form: whereami(argv[0])
568 | It returns the directory in which the executable file (containing
569 | this code [main.c] ) may be found. A dot will be returned to indicate
570 | the current directory.
571 *--------------------------------------------------------------------*/
577 register char *cutoff
= NULL
; /* stifle -Wall */
584 * See if the file is accessible either through the current directory
585 * or through an absolute path.
588 if (access(name
, R_OK
) == 0) {
590 /*-------------------------------------------------------------*
591 * The file was accessible without any other work. But the current
592 * working directory might change on us, so if it was accessible
593 * through the cwd, then we should get it for later accesses.
594 *-------------------------------------------------------------*/
597 if (!absolute_pathname(name
)) {
598 #if defined(DOS) || defined(__WIN32__)
604 if (*(name
+ 1) == ':') {
605 if (*name
>= 'a' && *name
<= 'z')
606 drive
= (int) (*name
- 'a' + 1);
608 drive
= (int) (*name
- 'A' + 1);
610 *newrbuf
++ = *(name
+ 1);
611 *newrbuf
++ = DIR_SEPARATOR
;
615 *newrbuf
++ = DIR_SEPARATOR
;
617 if (getcwd(newrbuf
, drive
) == 0) { /* } */
619 if (getcwd(newrbuf
, 1024) == 0) { /* } */
623 if (getwd(imagedir
) == 0) { /* } */
624 #else /* !HAVE_GETWD */
625 if (getcwd(imagedir
, 1024) == 0) {
626 #endif /* !HAVE_GETWD */
628 fatal_error(FE_GETCWD
, 0);
630 for (; *t
; t
++) /* Set t to end of buffer */
632 if (*(t
- 1) == DIR_SEPARATOR
) /* leave slash if already
637 cutoff
= t
; /* otherwise put one in */
638 *t
++ = DIR_SEPARATOR
;
641 #if (!defined(__MAC__) && !defined(__DJGPP__) && !defined(__GO32__) && !defined(__WIN32__))
643 (*t
++ = DIR_SEPARATOR
);
646 /*-------------------------------------------------------------*
647 * Copy the rest of the string and set the cutoff if it was not
648 * already set. If the first character of name is a slash, cutoff
649 * is not presently set but will be on the first iteration of the
651 *-------------------------------------------------------------*/
653 for ((*name
== DIR_SEPARATOR
? (s
= name
+1) : (s
= name
));;) {
654 if (*s
== DIR_SEPARATOR
)
663 /*-------------------------------------------------------------*
664 * Get the path list from the environment. If the path list is
665 * inaccessible for any reason, leave with fatal error.
666 *-------------------------------------------------------------*/
669 if ((s
= getenv("Commands")) == (char *) 0)
671 if ((s
= getenv("PATH")) == (char *) 0)
673 fatal_error(FE_PATH
, 0);
676 * Copy path list into ebuf and set the source pointer to the
677 * beginning of this buffer.
685 while (*s
&& *s
!= PATH_SEPARATOR
)
687 if (t
> imagedir
&& *(t
- 1) == DIR_SEPARATOR
)
688 ; /* do nothing -- slash already is in place */
690 *t
++ = DIR_SEPARATOR
; /* put in the slash */
691 cutoff
= t
- 1; /* set cutoff */
693 if (access(imagedir
, R_OK
) == 0)
697 s
++; /* advance source pointer */
699 fatal_error(FE_INFND
, 0);
704 /*-------------------------------------------------------------*
705 | At this point the full pathname should exist in imagedir and
706 | cutoff should be set to the final slash. We must now determine
707 | whether the file name is a symbolic link or not and chase it down
708 | if it is. Note that we reuse ebuf for getting the link.
709 *-------------------------------------------------------------*/
712 while ((cc
= readlink(imagedir
, ebuf
, 512)) != -1) {
715 if (*s
== DIR_SEPARATOR
) {
722 if (*s
== DIR_SEPARATOR
)
723 cutoff
= t
; /* mark the last slash seen */
724 if (!(*t
++ = *s
++)) /* copy the character */
729 #endif /* HAVE_SYMLINK */
731 strcpy(imagename
, cutoff
+ 1); /* keep the image name */
732 *(cutoff
+ 1) = 0; /* chop off the filename part */
736 void wxEnableTopLevelWindows(bool enable
)
738 wxWindowList::Node
*node
;
739 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
740 node
->GetData()->Enable(enable
);
743 // Yield to other apps/messages and disable user input
744 bool wxSafeYield(wxWindow
*win
)
746 wxEnableTopLevelWindows(FALSE
);
747 // always enable ourselves
751 wxEnableTopLevelWindows(TRUE
);
756 * N.B. these convenience functions must be separate from msgdlgg.cpp, textdlgg.cpp
757 * since otherwise the generic code may be pulled in unnecessarily.
760 int wxMessageBox(const wxString
& message
, const wxString
& caption
, long style
,
761 wxWindow
*parent
, int WXUNUSED(x
), int WXUNUSED(y
) )
763 wxMessageDialog
dialog(parent
, message
, caption
, style
);
765 int ans
= dialog
.ShowModal();
785 wxString
wxGetTextFromUser(const wxString
& message
, const wxString
& caption
,
786 const wxString
& defaultValue
, wxWindow
*parent
,
787 int x
, int y
, bool WXUNUSED(centre
) )
789 wxTextEntryDialog
dialog(parent
, message
, caption
, defaultValue
, wxOK
|wxCANCEL
, wxPoint(x
, y
));
790 if (dialog
.ShowModal() == wxID_OK
)
791 return dialog
.GetValue();
797 char *strdup(const char *s
)
799 return strcpy( (char*) malloc( strlen( s
) + 1 ) , s
) ;
804 return ( c
>= 0 && c
< 128 ) ;
808 // ----------------------------------------------------------------------------
809 // network and user id functions
810 // ----------------------------------------------------------------------------
812 // Get Full RFC822 style email address
813 bool wxGetEmailAddress(wxChar
*address
, int maxSize
)
815 wxString email
= wxGetEmailAddress();
819 wxStrncpy(address
, email
, maxSize
- 1);
820 address
[maxSize
- 1] = _T('\0');
825 wxString
wxGetEmailAddress()
829 wxString host
= wxGetHostName();
832 wxString user
= wxGetUserId();
835 wxString
email(user
);
836 email
<< _T('@') << host
;
843 wxString
wxGetUserId()
845 static const int maxLoginLen
= 256; // FIXME arbitrary number
848 bool ok
= wxGetUserId(buf
.GetWriteBuf(maxLoginLen
), maxLoginLen
);
857 wxString
wxGetUserName()
859 static const int maxUserNameLen
= 1024; // FIXME arbitrary number
862 bool ok
= wxGetUserName(buf
.GetWriteBuf(maxUserNameLen
), maxUserNameLen
);
871 wxString
wxGetHostName()
873 static const size_t hostnameSize
= 257;
876 bool ok
= wxGetHostName(buf
.GetWriteBuf(hostnameSize
), hostnameSize
);