1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Various utilities
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 // #pragma implementation "utils.h" // Note: this is done in utilscmn.cpp now.
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/cursor.h"
39 // In some mingws there is a missing extern "C" int the winsock header,
40 // so we put it here just to be safe. Note that this must appear _before_
41 // #include "wx/msw/private.h" which itself includes <windows.h>, as this
42 // one in turn includes <winsock.h> unless we define WIN32_LEAN_AND_MEAN.
44 #if defined(__WIN32__) && !defined(__TWIN32__) && !defined(__WXMICROWIN__) && ! (defined(__GNUWIN32__) && !defined(__MINGW32__))
46 #include <winsock.h> // we use socket functions in wxGetFullHostName()
50 #include "wx/msw/private.h" // includes <windows.h>
54 #if !defined(__GNUWIN32__) && !defined(__WXWINE__) && !defined(__SALFORDC__) && !defined(__WXMICROWIN__)
62 #if defined(__GNUWIN32__) && !defined(__TWIN32__)
63 #include <sys/unistd.h>
67 #ifdef __BORLANDC__ // Please someone tell me which version of Borland needs
68 // this (3.1 I believe) and how to test for it.
69 // If this works for Borland 4.0 as well, then no worries.
73 // VZ: there is some code using NetXXX() functions to get the full user name:
74 // I don't think it's a good idea because they don't work under Win95 and
75 // seem to return the same as wxGetUserId() under NT. If you really want
76 // to use them, just #define USE_NET_API
83 #if defined(__WIN32__) && !defined(__WXWINE__) && !defined(__WXMICROWIN__)
92 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
97 //// BEGIN for console support: VC++ only
100 #include "wx/msw/msvcrt.h"
104 #include "wx/ioswrap.h"
106 #include "wx/ioswrap.h"
108 /* Need to undef new if including crtdbg.h */
117 # if defined(__WXDEBUG__) && wxUSE_GLOBAL_MEMORY_OPERATORS && wxUSE_DEBUG_NEW_ALWAYS
118 # define new new(__TFILE__,__LINE__)
123 /// END for console support
125 // ----------------------------------------------------------------------------
127 // ----------------------------------------------------------------------------
129 // In the WIN.INI file
130 static const wxChar WX_SECTION
[] = wxT("wxWindows");
131 static const wxChar eUSERNAME
[] = wxT("UserName");
133 // these are only used under Win16
134 #if !defined(__WIN32__) && !defined(__WXMICROWIN__)
135 static const wxChar eHOSTNAME
[] = wxT("HostName");
136 static const wxChar eUSERID
[] = wxT("UserId");
139 #ifndef __WXMICROWIN__
141 // ============================================================================
143 // ============================================================================
145 // ----------------------------------------------------------------------------
146 // get host name and related
147 // ----------------------------------------------------------------------------
149 // Get hostname only (without domain name)
150 bool wxGetHostName(wxChar
*buf
, int maxSize
)
152 #if defined(__WIN32__) && !defined(__TWIN32__) && !defined(__WXMICROWIN__)
153 DWORD nSize
= maxSize
;
154 if ( !::GetComputerName(buf
, &nSize
) )
156 wxLogLastError(wxT("GetComputerName"));
164 const wxChar
*default_host
= wxT("noname");
166 if ((sysname
= wxGetenv(wxT("SYSTEM_NAME"))) == NULL
) {
167 GetProfileString(WX_SECTION
, eHOSTNAME
, default_host
, buf
, maxSize
- 1);
169 wxStrncpy(buf
, sysname
, maxSize
- 1);
170 buf
[maxSize
] = wxT('\0');
171 return *buf
? TRUE
: FALSE
;
175 // get full hostname (with domain name if possible)
176 bool wxGetFullHostName(wxChar
*buf
, int maxSize
)
178 #if defined(__WIN32__) && !defined(__TWIN32__) && !defined(__WXMICROWIN__) && ! (defined(__GNUWIN32__) && !defined(__MINGW32__))
179 // TODO should use GetComputerNameEx() when available
181 if ( WSAStartup(MAKEWORD(1, 1), &wsa
) == 0 )
185 if ( gethostname(bufA
, WXSIZEOF(bufA
)) == 0 )
187 // gethostname() won't usually include the DNS domain name, for
188 // this we need to work a bit more
189 if ( !strchr(bufA
, '.') )
191 struct hostent
*pHostEnt
= gethostbyname(bufA
);
195 // Windows will use DNS internally now
196 pHostEnt
= gethostbyaddr(pHostEnt
->h_addr
, 4, PF_INET
);
201 host
= pHostEnt
->h_name
;
210 wxStrncpy(buf
, host
, maxSize
);
217 return wxGetHostName(buf
, maxSize
);
220 // Get user ID e.g. jacs
221 bool wxGetUserId(wxChar
*buf
, int maxSize
)
223 #if defined(__WIN32__) && !defined(__win32s__) && !defined(__TWIN32__) && !defined(__WXMICROWIN__)
224 DWORD nSize
= maxSize
;
225 if ( ::GetUserName(buf
, &nSize
) == 0 )
227 // actually, it does happen on Win9x if the user didn't log on
228 DWORD res
= ::GetEnvironmentVariable(wxT("username"), buf
, maxSize
);
237 #else // Win16 or Win32s
239 const wxChar
*default_id
= wxT("anonymous");
241 // Can't assume we have NIS (PC-NFS) or some other ID daemon
243 if ( (user
= wxGetenv(wxT("USER"))) == NULL
&&
244 (user
= wxGetenv(wxT("LOGNAME"))) == NULL
)
246 // Use wxWindows configuration data (comming soon)
247 GetProfileString(WX_SECTION
, eUSERID
, default_id
, buf
, maxSize
- 1);
251 wxStrncpy(buf
, user
, maxSize
- 1);
254 return *buf
? TRUE
: FALSE
;
258 // Get user name e.g. Julian Smart
259 bool wxGetUserName(wxChar
*buf
, int maxSize
)
261 #if wxUSE_PENWINDOWS && !defined(__WATCOMC__) && !defined(__GNUWIN32__)
262 extern HANDLE g_hPenWin
; // PenWindows Running?
265 // PenWindows Does have a user concept!
266 // Get the current owner of the recognizer
267 GetPrivateProfileString("Current", "User", default_name
, wxBuffer
, maxSize
- 1, "PENWIN.INI");
268 strncpy(buf
, wxBuffer
, maxSize
- 1);
274 CHAR szUserName
[256];
275 if ( !wxGetUserId(szUserName
, WXSIZEOF(szUserName
)) )
278 // TODO how to get the domain name?
281 // the code is based on the MSDN example (also see KB article Q119670)
282 WCHAR wszUserName
[256]; // Unicode user name
283 WCHAR wszDomain
[256];
286 USER_INFO_2
*ui2
; // User structure
288 // Convert ANSI user name and domain to Unicode
289 MultiByteToWideChar( CP_ACP
, 0, szUserName
, strlen(szUserName
)+1,
290 wszUserName
, WXSIZEOF(wszUserName
) );
291 MultiByteToWideChar( CP_ACP
, 0, szDomain
, strlen(szDomain
)+1,
292 wszDomain
, WXSIZEOF(wszDomain
) );
294 // Get the computer name of a DC for the domain.
295 if ( NetGetDCName( NULL
, wszDomain
, &ComputerName
) != NERR_Success
)
297 wxLogError(wxT("Can not find domain controller"));
302 // Look up the user on the DC
303 NET_API_STATUS status
= NetUserGetInfo( (LPWSTR
)ComputerName
,
304 (LPWSTR
)&wszUserName
,
305 2, // level - we want USER_INFO_2
313 case NERR_InvalidComputer
:
314 wxLogError(wxT("Invalid domain controller name."));
318 case NERR_UserNotFound
:
319 wxLogError(wxT("Invalid user name '%s'."), szUserName
);
324 wxLogSysError(wxT("Can't get information about user"));
329 // Convert the Unicode full name to ANSI
330 WideCharToMultiByte( CP_ACP
, 0, ui2
->usri2_full_name
, -1,
331 buf
, maxSize
, NULL
, NULL
);
336 wxLogError(wxT("Couldn't look up full user name."));
339 #else // !USE_NET_API
340 // Could use NIS, MS-Mail or other site specific programs
341 // Use wxWindows configuration data
342 bool ok
= GetProfileString(WX_SECTION
, eUSERNAME
, wxT(""), buf
, maxSize
- 1) != 0;
345 ok
= wxGetUserId(buf
, maxSize
);
350 wxStrncpy(buf
, wxT("Unknown User"), maxSize
);
358 const wxChar
* wxGetHomeDir(wxString
*pstr
)
360 wxString
& strDir
= *pstr
;
362 #if defined(__UNIX__) && !defined(__TWIN32__)
363 const wxChar
*szHome
= wxGetenv("HOME");
364 if ( szHome
== NULL
) {
366 wxLogWarning(_("can't find user's HOME, using current directory."));
372 // add a trailing slash if needed
373 if ( strDir
.Last() != wxT('/') )
377 const wxChar
*szHome
= wxGetenv(wxT("HOMEDRIVE"));
378 if ( szHome
!= NULL
)
380 szHome
= wxGetenv(wxT("HOMEPATH"));
381 if ( szHome
!= NULL
) {
384 // the idea is that under NT these variables have default values
385 // of "%systemdrive%:" and "\\". As we don't want to create our
386 // config files in the root directory of the system drive, we will
387 // create it in our program's dir. However, if the user took care
388 // to set HOMEPATH to something other than "\\", we suppose that he
389 // knows what he is doing and use the supplied value.
390 if ( wxStrcmp(szHome
, wxT("\\")) != 0 )
391 return strDir
.c_str();
395 // Win16 has no idea about home, so use the working directory instead
398 // 260 was taken from windef.h
404 ::GetModuleFileName(::GetModuleHandle(NULL
),
405 strPath
.GetWriteBuf(MAX_PATH
), MAX_PATH
);
406 strPath
.UngetWriteBuf();
408 // extract the dir name
409 wxSplitPath(strPath
, &strDir
, NULL
, NULL
);
413 return strDir
.c_str();
416 wxChar
*wxGetUserHome(const wxString
& WXUNUSED(user
))
418 // VZ: the old code here never worked for user != "" anyhow! Moreover, it
419 // returned sometimes a malloc()'d pointer, sometimes a pointer to a
420 // static buffer and sometimes I don't even know what.
421 static wxString s_home
;
423 return (wxChar
*)wxGetHomeDir(&s_home
);
426 bool wxDirExists(const wxString
& dir
)
428 #ifdef __WXMICROWIN__
429 return wxPathExist(dir
);
430 #elif defined(__WIN32__)
431 DWORD attribs
= GetFileAttributes(dir
);
432 return ((attribs
!= (DWORD
)-1) && (attribs
& FILE_ATTRIBUTE_DIRECTORY
));
435 struct ffblk fileInfo
;
437 struct find_t fileInfo
;
439 // In Borland findfirst has a different argument
440 // ordering from _dos_findfirst. But _dos_findfirst
441 // _should_ be ok in both MS and Borland... why not?
443 return (findfirst(dir
, &fileInfo
, _A_SUBDIR
) == 0 &&
444 (fileInfo
.ff_attrib
& _A_SUBDIR
) != 0);
446 return (_dos_findfirst(dir
, _A_SUBDIR
, &fileInfo
) == 0) &&
447 ((fileInfo
.attrib
& _A_SUBDIR
) != 0);
452 // ----------------------------------------------------------------------------
454 // ----------------------------------------------------------------------------
456 bool wxGetEnv(const wxString
& var
, wxString
*value
)
459 const wxChar
* ret
= wxGetenv(var
);
468 // first get the size of the buffer
469 DWORD dwRet
= ::GetEnvironmentVariable(var
, NULL
, 0);
472 // this means that there is no such variable
478 (void)::GetEnvironmentVariable(var
, value
->GetWriteBuf(dwRet
), dwRet
);
479 value
->UngetWriteBuf();
486 bool wxSetEnv(const wxString
& var
, const wxChar
*value
)
488 // some compilers have putenv() or _putenv() or _wputenv() but it's better
489 // to always use Win32 function directly instead of dealing with them
490 #if defined(__WIN32__)
491 if ( !::SetEnvironmentVariable(var
, value
) )
493 wxLogLastError(_T("SetEnvironmentVariable"));
499 #else // no way to set env vars
504 // ----------------------------------------------------------------------------
505 // process management
506 // ----------------------------------------------------------------------------
510 // structure used to pass parameters from wxKill() to wxEnumFindByPidProc()
511 struct wxFindByPidParams
513 wxFindByPidParams() { hwnd
= 0; pid
= 0; }
515 // the HWND used to return the result
518 // the PID we're looking from
522 // wxKill helper: EnumWindows() callback which is used to find the first (top
523 // level) window belonging to the given process
524 BOOL CALLBACK
wxEnumFindByPidProc(HWND hwnd
, LPARAM lParam
)
527 (void)::GetWindowThreadProcessId(hwnd
, &pid
);
529 wxFindByPidParams
*params
= (wxFindByPidParams
*)lParam
;
530 if ( pid
== params
->pid
)
532 // remember the window we found
535 // return FALSE to stop the enumeration
539 // continue enumeration
545 int wxKill(long pid
, wxSignal sig
, wxKillError
*krc
)
548 // get the process handle to operate on
549 HANDLE hProcess
= ::OpenProcess(SYNCHRONIZE
|
551 PROCESS_QUERY_INFORMATION
,
552 FALSE
, // not inheritable
554 if ( hProcess
== NULL
)
558 if ( ::GetLastError() == ERROR_ACCESS_DENIED
)
560 *krc
= wxKILL_ACCESS_DENIED
;
564 *krc
= wxKILL_NO_PROCESS
;
575 // kill the process forcefully returning -1 as error code
576 if ( !::TerminateProcess(hProcess
, (UINT
)-1) )
578 wxLogSysError(_("Failed to kill process %d"), pid
);
582 // this is not supposed to happen if we could open the
592 // do nothing, we just want to test for process existence
596 // any other signal means "terminate"
598 wxFindByPidParams params
;
599 params
.pid
= (DWORD
)pid
;
601 // EnumWindows() has nice semantics: it returns 0 if it found
602 // something or if an error occured and non zero if it
603 // enumerated all the window
604 if ( !::EnumWindows(wxEnumFindByPidProc
, (LPARAM
)¶ms
) )
606 // did we find any window?
609 // tell the app to close
611 // NB: this is the harshest way, the app won't have
612 // opportunity to save any files, for example, but
613 // this is probably what we want here. If not we
614 // can also use SendMesageTimeout(WM_CLOSE)
615 if ( !::PostMessage(params
.hwnd
, WM_QUIT
, 0, 0) )
617 wxLogLastError(_T("PostMessage(WM_QUIT)"));
620 else // it was an error then
622 wxLogLastError(_T("EnumWindows"));
627 else // no windows for this PID
644 // as we wait for a short time, we can use just WaitForSingleObject()
645 // and not MsgWaitForMultipleObjects()
646 switch ( ::WaitForSingleObject(hProcess
, 500 /* msec */) )
649 // process terminated
650 if ( !::GetExitCodeProcess(hProcess
, &rc
) )
652 wxLogLastError(_T("GetExitCodeProcess"));
657 wxFAIL_MSG( _T("unexpected WaitForSingleObject() return") );
661 wxLogLastError(_T("WaitForSingleObject"));
676 // just to suppress the warnings about uninitialized variable
680 ::CloseHandle(hProcess
);
682 // the return code is the same as from Unix kill(): 0 if killed
683 // successfully or -1 on error
684 if ( sig
== wxSIGNONE
)
686 if ( ok
&& rc
== STILL_ACTIVE
)
688 // there is such process => success
694 if ( ok
&& rc
!= STILL_ACTIVE
)
701 wxFAIL_MSG( _T("not implemented") );
702 #endif // Win32/Win16
708 // Execute a program in an Interactive Shell
709 bool wxShell(const wxString
& command
)
711 wxChar
*shell
= wxGetenv(wxT("COMSPEC"));
713 shell
= wxT("\\COMMAND.COM");
723 // pass the command to execute to the command processor
724 cmd
.Printf(wxT("%s /c %s"), shell
, command
.c_str());
727 return wxExecute(cmd
, TRUE
/* sync */) != 0;
730 // ----------------------------------------------------------------------------
732 // ----------------------------------------------------------------------------
734 // Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX)
735 long wxGetFreeMemory()
737 #if defined(__WIN32__) && !defined(__BORLANDC__) && !defined(__TWIN32__)
738 MEMORYSTATUS memStatus
;
739 memStatus
.dwLength
= sizeof(MEMORYSTATUS
);
740 GlobalMemoryStatus(&memStatus
);
741 return memStatus
.dwAvailPhys
;
743 return (long)GetFreeSpace(0);
750 ::MessageBeep((UINT
)-1); // default sound
753 wxString
wxGetOsDescription()
761 info
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFO
);
762 if ( ::GetVersionEx(&info
) )
764 switch ( info
.dwPlatformId
)
766 case VER_PLATFORM_WIN32s
:
767 str
= _("Win32s on Windows 3.1");
770 case VER_PLATFORM_WIN32_WINDOWS
:
771 str
.Printf(_("Windows 9%c"),
772 info
.dwMinorVersion
== 0 ? _T('5') : _T('8'));
773 if ( !wxIsEmpty(info
.szCSDVersion
) )
775 str
<< _T(" (") << info
.szCSDVersion
<< _T(')');
779 case VER_PLATFORM_WIN32_NT
:
780 str
.Printf(_T("Windows NT %lu.%lu (build %lu"),
784 if ( !wxIsEmpty(info
.szCSDVersion
) )
786 str
<< _T(", ") << info
.szCSDVersion
;
794 wxFAIL_MSG( _T("GetVersionEx() failed") ); // should never happen
799 return _("Windows 3.1");
803 int wxGetOsVersion(int *majorVsn
, int *minorVsn
)
805 #if defined(__WIN32__) && !defined(__SC__)
809 info
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFO
);
810 if ( ::GetVersionEx(&info
) )
813 *majorVsn
= info
.dwMajorVersion
;
815 *minorVsn
= info
.dwMinorVersion
;
817 switch ( info
.dwPlatformId
)
819 case VER_PLATFORM_WIN32s
:
822 case VER_PLATFORM_WIN32_WINDOWS
:
825 case VER_PLATFORM_WIN32_NT
:
830 return wxWINDOWS
; // error if we get here, return generic value
832 int retValue
= wxWINDOWS
;
833 #ifdef __WINDOWS_386__
836 #if !defined(__WATCOMC__) && !defined(GNUWIN32) && wxUSE_PENWINDOWS
837 extern HANDLE g_hPenWin
;
838 retValue
= g_hPenWin
? wxPENWINDOWS
: wxWINDOWS
;
851 // ----------------------------------------------------------------------------
853 // ----------------------------------------------------------------------------
859 // Sleep for nSecs seconds. Attempt a Windows implementation using timers.
860 static bool gs_inTimer
= FALSE
;
862 class wxSleepTimer
: public wxTimer
865 virtual void Notify()
872 static wxTimer
*wxTheSleepTimer
= NULL
;
874 void wxUsleep(unsigned long milliseconds
)
877 ::Sleep(milliseconds
);
882 wxTheSleepTimer
= new wxSleepTimer
;
884 wxTheSleepTimer
->Start(milliseconds
);
887 if (wxTheApp
->Pending())
888 wxTheApp
->Dispatch();
890 delete wxTheSleepTimer
;
891 wxTheSleepTimer
= NULL
;
892 #endif // Win32/!Win32
895 void wxSleep(int nSecs
)
900 wxTheSleepTimer
= new wxSleepTimer
;
902 wxTheSleepTimer
->Start(nSecs
*1000);
905 if (wxTheApp
->Pending())
906 wxTheApp
->Dispatch();
908 delete wxTheSleepTimer
;
909 wxTheSleepTimer
= NULL
;
912 // Consume all events until no more left
918 #endif // wxUSE_TIMER
920 #elif defined(__WIN32__) // wxUSE_GUI
922 void wxUsleep(unsigned long milliseconds
)
924 ::Sleep(milliseconds
);
927 void wxSleep(int nSecs
)
929 wxUsleep(1000*nSecs
);
932 #endif // wxUSE_GUI/!wxUSE_GUI
936 // ----------------------------------------------------------------------------
937 // deprecated (in favour of wxLog) log functions
938 // ----------------------------------------------------------------------------
942 // Output a debug mess., in a system dependent fashion.
943 #ifndef __WXMICROWIN__
944 void wxDebugMsg(const wxChar
*fmt
...)
947 static wxChar buffer
[512];
949 if (!wxTheApp
->GetWantDebugOutput())
954 wvsprintf(buffer
,fmt
,ap
) ;
955 OutputDebugString((LPCTSTR
)buffer
) ;
960 // Non-fatal error: pop up message box and (possibly) continue
961 void wxError(const wxString
& msg
, const wxString
& title
)
963 wxSprintf(wxBuffer
, wxT("%s\nContinue?"), WXSTRINGCAST msg
);
964 if (MessageBox(NULL
, (LPCTSTR
)wxBuffer
, (LPCTSTR
)WXSTRINGCAST title
,
965 MB_ICONSTOP
| MB_YESNO
) == IDNO
)
969 // Fatal error: pop up message box and abort
970 void wxFatalError(const wxString
& msg
, const wxString
& title
)
972 wxSprintf(wxBuffer
, wxT("%s: %s"), WXSTRINGCAST title
, WXSTRINGCAST msg
);
973 FatalAppExit(0, (LPCTSTR
)wxBuffer
);
975 #endif // __WXMICROWIN__
977 // ----------------------------------------------------------------------------
978 // functions to work with .INI files
979 // ----------------------------------------------------------------------------
981 // Reading and writing resources (eg WIN.INI, .Xdefaults)
983 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, const wxString
& value
, const wxString
& file
)
986 // Don't know what the correct cast should be, but it doesn't
987 // compile in BC++/16-bit without this cast.
988 #if !defined(__WIN32__)
989 return (WritePrivateProfileString((const char*) section
, (const char*) entry
, (const char*) value
, (const char*) file
) != 0);
991 return (WritePrivateProfileString((LPCTSTR
)WXSTRINGCAST section
, (LPCTSTR
)WXSTRINGCAST entry
, (LPCTSTR
)value
, (LPCTSTR
)WXSTRINGCAST file
) != 0);
994 return (WriteProfileString((LPCTSTR
)WXSTRINGCAST section
, (LPCTSTR
)WXSTRINGCAST entry
, (LPCTSTR
)WXSTRINGCAST value
) != 0);
997 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, float value
, const wxString
& file
)
1000 buf
.Printf(wxT("%.4f"), value
);
1002 return wxWriteResource(section
, entry
, buf
, file
);
1005 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, long value
, const wxString
& file
)
1008 buf
.Printf(wxT("%ld"), value
);
1010 return wxWriteResource(section
, entry
, buf
, file
);
1013 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, int value
, const wxString
& file
)
1016 buf
.Printf(wxT("%d"), value
);
1018 return wxWriteResource(section
, entry
, buf
, file
);
1021 bool wxGetResource(const wxString
& section
, const wxString
& entry
, wxChar
**value
, const wxString
& file
)
1023 static const wxChar defunkt
[] = wxT("$$default");
1024 if (file
!= wxT(""))
1026 int n
= GetPrivateProfileString((LPCTSTR
)WXSTRINGCAST section
, (LPCTSTR
)WXSTRINGCAST entry
, (LPCTSTR
)defunkt
,
1027 (LPTSTR
)wxBuffer
, 1000, (LPCTSTR
)WXSTRINGCAST file
);
1028 if (n
== 0 || wxStrcmp(wxBuffer
, defunkt
) == 0)
1033 int n
= GetProfileString((LPCTSTR
)WXSTRINGCAST section
, (LPCTSTR
)WXSTRINGCAST entry
, (LPCTSTR
)defunkt
,
1034 (LPTSTR
)wxBuffer
, 1000);
1035 if (n
== 0 || wxStrcmp(wxBuffer
, defunkt
) == 0)
1038 if (*value
) delete[] (*value
);
1039 *value
= copystring(wxBuffer
);
1043 bool wxGetResource(const wxString
& section
, const wxString
& entry
, float *value
, const wxString
& file
)
1046 bool succ
= wxGetResource(section
, entry
, (wxChar
**)&s
, file
);
1049 *value
= (float)wxStrtod(s
, NULL
);
1056 bool wxGetResource(const wxString
& section
, const wxString
& entry
, long *value
, const wxString
& file
)
1059 bool succ
= wxGetResource(section
, entry
, (wxChar
**)&s
, file
);
1062 *value
= wxStrtol(s
, NULL
, 10);
1069 bool wxGetResource(const wxString
& section
, const wxString
& entry
, int *value
, const wxString
& file
)
1072 bool succ
= wxGetResource(section
, entry
, (wxChar
**)&s
, file
);
1075 *value
= (int)wxStrtol(s
, NULL
, 10);
1081 #endif // wxUSE_RESOURCES
1083 // ---------------------------------------------------------------------------
1084 // helper functions for showing a "busy" cursor
1085 // ---------------------------------------------------------------------------
1087 static HCURSOR gs_wxBusyCursor
= 0; // new, busy cursor
1088 static HCURSOR gs_wxBusyCursorOld
= 0; // old cursor
1089 static int gs_wxBusyCursorCount
= 0;
1091 extern HCURSOR
wxGetCurrentBusyCursor()
1093 return gs_wxBusyCursor
;
1096 // Set the cursor to the busy cursor for all windows
1097 void wxBeginBusyCursor(wxCursor
*cursor
)
1099 if ( gs_wxBusyCursorCount
++ == 0 )
1101 gs_wxBusyCursor
= (HCURSOR
)cursor
->GetHCURSOR();
1102 #ifndef __WXMICROWIN__
1103 gs_wxBusyCursorOld
= ::SetCursor(gs_wxBusyCursor
);
1106 //else: nothing to do, already set
1109 // Restore cursor to normal
1110 void wxEndBusyCursor()
1112 wxCHECK_RET( gs_wxBusyCursorCount
> 0,
1113 wxT("no matching wxBeginBusyCursor() for wxEndBusyCursor()") );
1115 if ( --gs_wxBusyCursorCount
== 0 )
1117 #ifndef __WXMICROWIN__
1118 ::SetCursor(gs_wxBusyCursorOld
);
1120 gs_wxBusyCursorOld
= 0;
1124 // TRUE if we're between the above two calls
1127 return (gs_wxBusyCursorCount
> 0);
1130 // Check whether this window wants to process messages, e.g. Stop button
1131 // in long calculations.
1132 bool wxCheckForInterrupt(wxWindow
*wnd
)
1134 wxCHECK( wnd
, FALSE
);
1137 while ( ::PeekMessage(&msg
, GetHwndOf(wnd
), 0, 0, PM_REMOVE
) )
1139 ::TranslateMessage(&msg
);
1140 ::DispatchMessage(&msg
);
1146 // MSW only: get user-defined resource from the .res file.
1147 // Returns NULL or newly-allocated memory, so use delete[] to clean up.
1149 #ifndef __WXMICROWIN__
1150 wxChar
*wxLoadUserResource(const wxString
& resourceName
, const wxString
& resourceType
)
1152 HRSRC hResource
= ::FindResource(wxGetInstance(), resourceName
, resourceType
);
1153 if ( hResource
== 0 )
1156 HGLOBAL hData
= ::LoadResource(wxGetInstance(), hResource
);
1160 wxChar
*theText
= (wxChar
*)::LockResource(hData
);
1164 // Not all compilers put a zero at the end of the resource (e.g. BC++ doesn't).
1165 // so we need to find the length of the resource.
1166 int len
= ::SizeofResource(wxGetInstance(), hResource
);
1167 wxChar
*s
= new wxChar
[len
+1];
1168 wxStrncpy(s
,theText
,len
);
1171 // wxChar *s = copystring(theText);
1173 // Obsolete in WIN32
1175 UnlockResource(hData
);
1179 // GlobalFree(hData);
1185 // ----------------------------------------------------------------------------
1187 // ----------------------------------------------------------------------------
1189 // See also the wxGetMousePosition in window.cpp
1190 // Deprecated: use wxPoint wxGetMousePosition() instead
1191 void wxGetMousePosition( int* x
, int* y
)
1194 GetCursorPos( & pt
);
1199 // Return TRUE if we have a colour display
1200 bool wxColourDisplay()
1202 #ifdef __WXMICROWIN__
1206 // this function is called from wxDC ctor so it is called a *lot* of times
1207 // hence we optimize it a bit but doign the check only once
1209 // this should be MT safe as only the GUI thread (holding the GUI mutex)
1211 static int s_isColour
= -1;
1213 if ( s_isColour
== -1 )
1216 int noCols
= ::GetDeviceCaps(dc
, NUMCOLORS
);
1218 s_isColour
= (noCols
== -1) || (noCols
> 2);
1221 return s_isColour
!= 0;
1225 // Returns depth of screen
1226 int wxDisplayDepth()
1229 return GetDeviceCaps(dc
, PLANES
) * GetDeviceCaps(dc
, BITSPIXEL
);
1232 // Get size of display
1233 void wxDisplaySize(int *width
, int *height
)
1235 #ifdef __WXMICROWIN__
1237 HWND hWnd
= GetDesktopWindow();
1238 ::GetWindowRect(hWnd
, & rect
);
1240 *width
= rect
.right
- rect
.left
;
1241 *height
= rect
.bottom
- rect
.top
;
1245 if ( width
) *width
= GetDeviceCaps(dc
, HORZRES
);
1246 if ( height
) *height
= GetDeviceCaps(dc
, VERTRES
);
1250 void wxDisplaySizeMM(int *width
, int *height
)
1252 #ifdef __WXMICROWIN__
1254 *width
= 0; * height
= 0;
1258 if ( width
) *width
= GetDeviceCaps(dc
, HORZSIZE
);
1259 if ( height
) *height
= GetDeviceCaps(dc
, VERTSIZE
);
1263 void wxClientDisplayRect(int *x
, int *y
, int *width
, int *height
)
1265 #if defined(__WIN16__) || defined(__WXMICROWIN__)
1267 wxDisplaySize(width
, height
);
1269 // Determine the desktop dimensions minus the taskbar and any other
1270 // special decorations...
1273 SystemParametersInfo(SPI_GETWORKAREA
, 0, &r
, 0);
1276 if (width
) *width
= r
.right
- r
.left
;
1277 if (height
) *height
= r
.bottom
- r
.top
;
1282 // ---------------------------------------------------------------------------
1283 // window information functions
1284 // ---------------------------------------------------------------------------
1286 wxString WXDLLEXPORT
wxGetWindowText(WXHWND hWnd
)
1289 int len
= GetWindowTextLength((HWND
)hWnd
) + 1;
1290 GetWindowText((HWND
)hWnd
, str
.GetWriteBuf(len
), len
);
1291 str
.UngetWriteBuf();
1296 wxString WXDLLEXPORT
wxGetWindowClass(WXHWND hWnd
)
1298 #ifdef __WXMICROWIN__
1300 return wxEmptyString
;
1304 int len
= 256; // some starting value
1308 // as we've #undefined GetClassName we must now manually choose the
1309 // right function to call
1322 #endif // Twin32/!Twin32
1323 #endif // Unicode/ANSI
1325 ((HWND
)hWnd
, str
.GetWriteBuf(len
), len
);
1327 str
.UngetWriteBuf();
1330 // the class name might have been truncated, retry with larger
1344 WXWORD WXDLLEXPORT
wxGetWindowId(WXHWND hWnd
)
1347 return (WXWORD
)GetWindowWord((HWND
)hWnd
, GWW_ID
);
1349 return (WXWORD
)GetWindowLong((HWND
)hWnd
, GWL_ID
);
1357 // ----------------------------------------------------------------------------
1359 // ----------------------------------------------------------------------------
1361 extern void PixelToHIMETRIC(LONG
*x
, LONG
*y
)
1365 int iWidthMM
= GetDeviceCaps(hdcRef
, HORZSIZE
),
1366 iHeightMM
= GetDeviceCaps(hdcRef
, VERTSIZE
),
1367 iWidthPels
= GetDeviceCaps(hdcRef
, HORZRES
),
1368 iHeightPels
= GetDeviceCaps(hdcRef
, VERTRES
);
1370 *x
*= (iWidthMM
* 100);
1372 *y
*= (iHeightMM
* 100);
1376 extern void HIMETRICToPixel(LONG
*x
, LONG
*y
)
1380 int iWidthMM
= GetDeviceCaps(hdcRef
, HORZSIZE
),
1381 iHeightMM
= GetDeviceCaps(hdcRef
, VERTSIZE
),
1382 iWidthPels
= GetDeviceCaps(hdcRef
, HORZRES
),
1383 iHeightPels
= GetDeviceCaps(hdcRef
, VERTRES
);
1386 *x
/= (iWidthMM
* 100);
1388 *y
/= (iHeightMM
* 100);
1394 //------------------------------------------------------------------------
1395 // wild character routines
1396 //------------------------------------------------------------------------
1398 bool wxIsWild( const wxString
& pattern
)
1400 wxString tmp
= pattern
;
1401 char *pat
= WXSTRINGCAST(tmp
);
1404 case '?': case '*': case '[': case '{':
1415 bool wxMatchWild( const wxString
& pat
, const wxString
& text
, bool dot_special
)
1417 wxString tmp1
= pat
;
1418 char *pattern
= WXSTRINGCAST(tmp1
);
1419 wxString tmp2
= text
;
1420 char *str
= WXSTRINGCAST(tmp2
);
1423 bool done
= FALSE
, ret_code
, ok
;
1424 // Below is for vi fans
1425 const char OB
= '{', CB
= '}';
1427 // dot_special means '.' only matches '.'
1428 if (dot_special
&& *str
== '.' && *pattern
!= *str
)
1431 while ((*pattern
!= '\0') && (!done
)
1432 && (((*str
=='\0')&&((*pattern
==OB
)||(*pattern
=='*')))||(*str
!='\0'))) {
1436 if (*pattern
!= '\0')
1443 && (!(ret_code
=wxMatchWild(pattern
, str
++, FALSE
))))
1446 while (*str
!= '\0')
1448 while (*pattern
!= '\0')
1455 if ((*pattern
== '\0') || (*pattern
== ']')) {
1459 if (*pattern
== '\\') {
1461 if (*pattern
== '\0') {
1466 if (*(pattern
+ 1) == '-') {
1469 if (*pattern
== ']') {
1473 if (*pattern
== '\\') {
1475 if (*pattern
== '\0') {
1480 if ((*str
< c
) || (*str
> *pattern
)) {
1484 } else if (*pattern
!= *str
) {
1489 while ((*pattern
!= ']') && (*pattern
!= '\0')) {
1490 if ((*pattern
== '\\') && (*(pattern
+ 1) != '\0'))
1494 if (*pattern
!= '\0') {
1504 while ((*pattern
!= CB
) && (*pattern
!= '\0')) {
1507 while (ok
&& (*cp
!= '\0') && (*pattern
!= '\0')
1508 && (*pattern
!= ',') && (*pattern
!= CB
)) {
1509 if (*pattern
== '\\')
1511 ok
= (*pattern
++ == *cp
++);
1513 if (*pattern
== '\0') {
1519 while ((*pattern
!= CB
) && (*pattern
!= '\0')) {
1520 if (*++pattern
== '\\') {
1521 if (*++pattern
== CB
)
1526 while (*pattern
!=CB
&& *pattern
!=',' && *pattern
!='\0') {
1527 if (*++pattern
== '\\') {
1528 if (*++pattern
== CB
|| *pattern
== ',')
1533 if (*pattern
!= '\0')
1538 if (*str
== *pattern
) {
1545 while (*pattern
== '*')
1547 return ((*str
== '\0') && (*pattern
== '\0'));
1554 // maximum mumber of lines the output console should have
1555 static const WORD MAX_CONSOLE_LINES
= 500;
1557 BOOL WINAPI
MyConsoleHandler( DWORD dwCtrlType
) { // control signal type
1562 void wxRedirectIOToConsole()
1566 CONSOLE_SCREEN_BUFFER_INFO coninfo
;
1569 // allocate a console for this app
1572 // set the screen buffer to be big enough to let us scroll text
1573 GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE
),
1575 coninfo
.dwSize
.Y
= MAX_CONSOLE_LINES
;
1576 SetConsoleScreenBufferSize(GetStdHandle(STD_OUTPUT_HANDLE
),
1579 // redirect unbuffered STDOUT to the console
1580 lStdHandle
= (long)GetStdHandle(STD_OUTPUT_HANDLE
);
1581 hConHandle
= _open_osfhandle(lStdHandle
, _O_TEXT
);
1582 if(hConHandle
<= 0) return;
1583 fp
= _fdopen( hConHandle
, "w" );
1585 setvbuf( stdout
, NULL
, _IONBF
, 0 );
1587 // redirect unbuffered STDIN to the console
1588 lStdHandle
= (long)GetStdHandle(STD_INPUT_HANDLE
);
1589 hConHandle
= _open_osfhandle(lStdHandle
, _O_TEXT
);
1590 if(hConHandle
<= 0) return;
1591 fp
= _fdopen( hConHandle
, "r" );
1593 setvbuf( stdin
, NULL
, _IONBF
, 0 );
1595 // redirect unbuffered STDERR to the console
1596 lStdHandle
= (long)GetStdHandle(STD_ERROR_HANDLE
);
1597 hConHandle
= _open_osfhandle(lStdHandle
, _O_TEXT
);
1598 if(hConHandle
<= 0) return;
1599 fp
= _fdopen( hConHandle
, "w" );
1601 setvbuf( stderr
, NULL
, _IONBF
, 0 );
1603 // make cout, wcout, cin, wcin, wcerr, cerr, wclog and clog
1604 // point to console as well
1605 ios::sync_with_stdio();
1607 SetConsoleCtrlHandler(MyConsoleHandler
, TRUE
);
1611 void wxRedirectIOToConsole()
1616 #ifdef __WXMICROWIN__
1617 int wxGetOsVersion(int *majorVsn
, int *minorVsn
)
1620 if (majorVsn
) *majorVsn
= 0;
1621 if (minorVsn
) *minorVsn
= 0;