1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Various utilities
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
34 #include "wx/apptrait.h"
35 #include "wx/dynlib.h"
36 #include "wx/dynload.h"
37 #include "wx/scopeguard.h"
39 #include "wx/confbase.h" // for wxExpandEnvVars()
41 #include "wx/msw/private.h" // includes <windows.h>
42 #include "wx/msw/missing.h" // CHARSET_HANGUL
44 #if defined(__CYGWIN__)
45 //CYGWIN gives annoying warning about runtime stuff if we don't do this
46 # define USE_SYS_TYPES_FD_SET
47 # include <sys/types.h>
50 // Doesn't work with Cygwin at present
51 #if wxUSE_SOCKETS && (defined(__GNUWIN32_OLD__) || defined(__WXWINCE__) || defined(__CYGWIN32__))
52 // apparently we need to include winsock.h to get WSADATA and other stuff
53 // used in wxGetFullHostName() with the old mingw32 versions
59 #if !defined(__GNUWIN32__) && !defined(__SALFORDC__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
67 #if defined(__CYGWIN__)
68 #include <sys/unistd.h>
70 #include <sys/cygwin.h> // for cygwin_conv_to_full_win32_path()
73 #ifdef __BORLANDC__ // Please someone tell me which version of Borland needs
74 // this (3.1 I believe) and how to test for it.
75 // If this works for Borland 4.0 as well, then no worries.
79 // VZ: there is some code using NetXXX() functions to get the full user name:
80 // I don't think it's a good idea because they don't work under Win95 and
81 // seem to return the same as wxGetUserId() under NT. If you really want
82 // to use them, just #define USE_NET_API
89 #if defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
100 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
105 // For wxKillAllChildren
106 #include <tlhelp32.h>
108 // ----------------------------------------------------------------------------
110 // ----------------------------------------------------------------------------
112 // In the WIN.INI file
113 static const wxChar WX_SECTION
[] = wxT("wxWindows");
114 static const wxChar eUSERNAME
[] = wxT("UserName");
116 // ============================================================================
118 // ============================================================================
120 // ----------------------------------------------------------------------------
121 // get host name and related
122 // ----------------------------------------------------------------------------
124 // Get hostname only (without domain name)
125 bool wxGetHostName(wxChar
*WXUNUSED_IN_WINCE(buf
),
126 int WXUNUSED_IN_WINCE(maxSize
))
128 #if defined(__WXWINCE__)
131 #elif defined(__WIN32__) && !defined(__WXMICROWIN__)
132 DWORD nSize
= maxSize
;
133 if ( !::GetComputerName(buf
, &nSize
) )
135 wxLogLastError(wxT("GetComputerName"));
143 const wxChar
*default_host
= wxT("noname");
145 if ((sysname
= wxGetenv(wxT("SYSTEM_NAME"))) == NULL
) {
146 GetProfileString(WX_SECTION
, eHOSTNAME
, default_host
, buf
, maxSize
- 1);
148 wxStrncpy(buf
, sysname
, maxSize
- 1);
149 buf
[maxSize
] = wxT('\0');
150 return *buf
? true : false;
154 // get full hostname (with domain name if possible)
155 bool wxGetFullHostName(wxChar
*buf
, int maxSize
)
157 #if !defined( __WXMICROWIN__) && wxUSE_DYNAMIC_LOADER && wxUSE_SOCKETS
158 // TODO should use GetComputerNameEx() when available
160 // we don't want to always link with Winsock DLL as we might not use it at
161 // all, so load it dynamically here if needed (and don't complain if it is
162 // missing, we handle this)
165 wxDynamicLibrary
dllWinsock(_T("ws2_32.dll"), wxDL_VERBATIM
);
166 if ( dllWinsock
.IsLoaded() )
168 typedef int (PASCAL
*WSAStartup_t
)(WORD
, WSADATA
*);
169 typedef int (PASCAL
*gethostname_t
)(char *, int);
170 typedef hostent
* (PASCAL
*gethostbyname_t
)(const char *);
171 typedef hostent
* (PASCAL
*gethostbyaddr_t
)(const char *, int , int);
172 typedef int (PASCAL
*WSACleanup_t
)(void);
174 #define LOAD_WINSOCK_FUNC(func) \
176 pfn ## func = (func ## _t)dllWinsock.GetSymbol(_T(#func))
178 LOAD_WINSOCK_FUNC(WSAStartup
);
181 if ( pfnWSAStartup
&& pfnWSAStartup(MAKEWORD(1, 1), &wsa
) == 0 )
183 LOAD_WINSOCK_FUNC(gethostname
);
186 if ( pfngethostname
)
189 if ( pfngethostname(bufA
, WXSIZEOF(bufA
)) == 0 )
191 // gethostname() won't usually include the DNS domain name,
192 // for this we need to work a bit more
193 if ( !strchr(bufA
, '.') )
195 LOAD_WINSOCK_FUNC(gethostbyname
);
197 struct hostent
*pHostEnt
= pfngethostbyname
198 ? pfngethostbyname(bufA
)
203 // Windows will use DNS internally now
204 LOAD_WINSOCK_FUNC(gethostbyaddr
);
206 pHostEnt
= pfngethostbyaddr
207 ? pfngethostbyaddr(pHostEnt
->h_addr
,
214 host
= wxString::FromAscii(pHostEnt
->h_name
);
220 LOAD_WINSOCK_FUNC(WSACleanup
);
227 wxStrncpy(buf
, host
, maxSize
);
233 #endif // !__WXMICROWIN__
235 return wxGetHostName(buf
, maxSize
);
238 // Get user ID e.g. jacs
239 bool wxGetUserId(wxChar
*WXUNUSED_IN_WINCE(buf
),
240 int WXUNUSED_IN_WINCE(maxSize
))
242 #if defined(__WXWINCE__)
245 #elif defined(__WIN32__) && !defined(__WXMICROWIN__)
246 DWORD nSize
= maxSize
;
247 if ( ::GetUserName(buf
, &nSize
) == 0 )
249 // actually, it does happen on Win9x if the user didn't log on
250 DWORD res
= ::GetEnvironmentVariable(wxT("username"), buf
, maxSize
);
259 #else // __WXMICROWIN__
261 const wxChar
*default_id
= wxT("anonymous");
263 // Can't assume we have NIS (PC-NFS) or some other ID daemon
265 if ( (user
= wxGetenv(wxT("USER"))) == NULL
&&
266 (user
= wxGetenv(wxT("LOGNAME"))) == NULL
)
268 // Use wxWidgets configuration data (comming soon)
269 GetProfileString(WX_SECTION
, eUSERID
, default_id
, buf
, maxSize
- 1);
273 wxStrncpy(buf
, user
, maxSize
- 1);
276 return *buf
? true : false;
280 // Get user name e.g. Julian Smart
281 bool wxGetUserName(wxChar
*WXUNUSED_IN_WINCE(buf
),
282 int WXUNUSED_IN_WINCE(maxSize
))
284 #if defined(__WXWINCE__)
287 #elif defined(USE_NET_API)
288 CHAR szUserName
[256];
289 if ( !wxGetUserId(szUserName
, WXSIZEOF(szUserName
)) )
292 // TODO how to get the domain name?
295 // the code is based on the MSDN example (also see KB article Q119670)
296 WCHAR wszUserName
[256]; // Unicode user name
297 WCHAR wszDomain
[256];
300 USER_INFO_2
*ui2
; // User structure
302 // Convert ANSI user name and domain to Unicode
303 MultiByteToWideChar( CP_ACP
, 0, szUserName
, strlen(szUserName
)+1,
304 wszUserName
, WXSIZEOF(wszUserName
) );
305 MultiByteToWideChar( CP_ACP
, 0, szDomain
, strlen(szDomain
)+1,
306 wszDomain
, WXSIZEOF(wszDomain
) );
308 // Get the computer name of a DC for the domain.
309 if ( NetGetDCName( NULL
, wszDomain
, &ComputerName
) != NERR_Success
)
311 wxLogError(wxT("Can not find domain controller"));
316 // Look up the user on the DC
317 NET_API_STATUS status
= NetUserGetInfo( (LPWSTR
)ComputerName
,
318 (LPWSTR
)&wszUserName
,
319 2, // level - we want USER_INFO_2
327 case NERR_InvalidComputer
:
328 wxLogError(wxT("Invalid domain controller name."));
332 case NERR_UserNotFound
:
333 wxLogError(wxT("Invalid user name '%s'."), szUserName
);
338 wxLogSysError(wxT("Can't get information about user"));
343 // Convert the Unicode full name to ANSI
344 WideCharToMultiByte( CP_ACP
, 0, ui2
->usri2_full_name
, -1,
345 buf
, maxSize
, NULL
, NULL
);
350 wxLogError(wxT("Couldn't look up full user name."));
353 #else // !USE_NET_API
354 // Could use NIS, MS-Mail or other site specific programs
355 // Use wxWidgets configuration data
356 bool ok
= GetProfileString(WX_SECTION
, eUSERNAME
, wxEmptyString
, buf
, maxSize
- 1) != 0;
359 ok
= wxGetUserId(buf
, maxSize
);
364 wxStrncpy(buf
, wxT("Unknown User"), maxSize
);
371 const wxChar
* wxGetHomeDir(wxString
*pstr
)
373 wxString
& strDir
= *pstr
;
375 // first branch is for Cygwin
376 #if defined(__UNIX__)
377 const wxChar
*szHome
= wxGetenv("HOME");
378 if ( szHome
== NULL
) {
380 wxLogWarning(_("can't find user's HOME, using current directory."));
386 // add a trailing slash if needed
387 if ( strDir
.Last() != wxT('/') )
391 // Cygwin returns unix type path but that does not work well
392 static wxChar windowsPath
[MAX_PATH
];
393 cygwin_conv_to_full_win32_path(strDir
, windowsPath
);
394 strDir
= windowsPath
;
396 #elif defined(__WXWINCE__)
401 // If we have a valid HOME directory, as is used on many machines that
402 // have unix utilities on them, we should use that.
403 const wxChar
*szHome
= wxGetenv(wxT("HOME"));
405 if ( szHome
!= NULL
)
409 else // no HOME, try HOMEDRIVE/PATH
411 szHome
= wxGetenv(wxT("HOMEDRIVE"));
412 if ( szHome
!= NULL
)
414 szHome
= wxGetenv(wxT("HOMEPATH"));
416 if ( szHome
!= NULL
)
420 // the idea is that under NT these variables have default values
421 // of "%systemdrive%:" and "\\". As we don't want to create our
422 // config files in the root directory of the system drive, we will
423 // create it in our program's dir. However, if the user took care
424 // to set HOMEPATH to something other than "\\", we suppose that he
425 // knows what he is doing and use the supplied value.
426 if ( wxStrcmp(szHome
, wxT("\\")) == 0 )
431 if ( strDir
.empty() )
433 // If we have a valid USERPROFILE directory, as is the case in
434 // Windows NT, 2000 and XP, we should use that as our home directory.
435 szHome
= wxGetenv(wxT("USERPROFILE"));
437 if ( szHome
!= NULL
)
441 if ( !strDir
.empty() )
443 // sometimes the value of HOME may be "%USERPROFILE%", so reexpand the
444 // value once again, it shouldn't hurt anyhow
445 strDir
= wxExpandEnvVars(strDir
);
447 else // fall back to the program directory
449 // extract the directory component of the program file name
450 wxSplitPath(wxGetFullModuleName(), &strDir
, NULL
, NULL
);
454 return strDir
.c_str();
457 wxChar
*wxGetUserHome(const wxString
& WXUNUSED(user
))
459 // VZ: the old code here never worked for user != "" anyhow! Moreover, it
460 // returned sometimes a malloc()'d pointer, sometimes a pointer to a
461 // static buffer and sometimes I don't even know what.
462 static wxString s_home
;
464 return (wxChar
*)wxGetHomeDir(&s_home
);
467 bool wxGetDiskSpace(const wxString
& WXUNUSED_IN_WINCE(path
),
468 wxLongLong
*WXUNUSED_IN_WINCE(pTotal
),
469 wxLongLong
*WXUNUSED_IN_WINCE(pFree
))
478 // old w32api don't have ULARGE_INTEGER
479 #if defined(__WIN32__) && \
480 (!defined(__GNUWIN32__) || wxCHECK_W32API_VERSION( 0, 3 ))
481 // GetDiskFreeSpaceEx() is not available under original Win95, check for
483 typedef BOOL (WINAPI
*GetDiskFreeSpaceEx_t
)(LPCTSTR
,
489 pGetDiskFreeSpaceEx
= (GetDiskFreeSpaceEx_t
)::GetProcAddress
491 ::GetModuleHandle(_T("kernel32.dll")),
493 "GetDiskFreeSpaceExW"
495 "GetDiskFreeSpaceExA"
499 if ( pGetDiskFreeSpaceEx
)
501 ULARGE_INTEGER bytesFree
, bytesTotal
;
503 // may pass the path as is, GetDiskFreeSpaceEx() is smart enough
504 if ( !pGetDiskFreeSpaceEx(path
,
509 wxLogLastError(_T("GetDiskFreeSpaceEx"));
514 // ULARGE_INTEGER is a union of a 64 bit value and a struct containing
515 // two 32 bit fields which may be or may be not named - try to make it
516 // compile in all cases
517 #if defined(__BORLANDC__) && !defined(_ANONYMOUS_STRUCT)
524 *pTotal
= wxLongLong(UL(bytesTotal
).HighPart
, UL(bytesTotal
).LowPart
);
529 *pFree
= wxLongLong(UL(bytesFree
).HighPart
, UL(bytesFree
).LowPart
);
535 // there's a problem with drives larger than 2GB, GetDiskFreeSpaceEx()
536 // should be used instead - but if it's not available, fall back on
537 // GetDiskFreeSpace() nevertheless...
539 DWORD lSectorsPerCluster
,
541 lNumberOfFreeClusters
,
542 lTotalNumberOfClusters
;
544 // FIXME: this is wrong, we should extract the root drive from path
545 // instead, but this is the job for wxFileName...
546 if ( !::GetDiskFreeSpace(path
,
549 &lNumberOfFreeClusters
,
550 &lTotalNumberOfClusters
) )
552 wxLogLastError(_T("GetDiskFreeSpace"));
557 wxLongLong lBytesPerCluster
= lSectorsPerCluster
;
558 lBytesPerCluster
*= lBytesPerSector
;
562 *pTotal
= lBytesPerCluster
;
563 *pTotal
*= lTotalNumberOfClusters
;
568 *pFree
= lBytesPerCluster
;
569 *pFree
*= lNumberOfFreeClusters
;
578 // ----------------------------------------------------------------------------
580 // ----------------------------------------------------------------------------
582 bool wxGetEnv(const wxString
& WXUNUSED_IN_WINCE(var
),
583 wxString
*WXUNUSED_IN_WINCE(value
))
586 // no environment variables under CE
589 // first get the size of the buffer
590 DWORD dwRet
= ::GetEnvironmentVariable(var
, NULL
, 0);
593 // this means that there is no such variable
599 (void)::GetEnvironmentVariable(var
, wxStringBuffer(*value
, dwRet
),
607 bool wxSetEnv(const wxString
& WXUNUSED_IN_WINCE(var
),
608 const wxChar
*WXUNUSED_IN_WINCE(value
))
610 // some compilers have putenv() or _putenv() or _wputenv() but it's better
611 // to always use Win32 function directly instead of dealing with them
613 // no environment variables under CE
616 if ( !::SetEnvironmentVariable(var
, value
) )
618 wxLogLastError(_T("SetEnvironmentVariable"));
627 // ----------------------------------------------------------------------------
628 // process management
629 // ----------------------------------------------------------------------------
631 // structure used to pass parameters from wxKill() to wxEnumFindByPidProc()
632 struct wxFindByPidParams
634 wxFindByPidParams() { hwnd
= 0; pid
= 0; }
636 // the HWND used to return the result
639 // the PID we're looking from
642 DECLARE_NO_COPY_CLASS(wxFindByPidParams
)
645 // wxKill helper: EnumWindows() callback which is used to find the first (top
646 // level) window belonging to the given process
647 BOOL CALLBACK
wxEnumFindByPidProc(HWND hwnd
, LPARAM lParam
)
650 (void)::GetWindowThreadProcessId(hwnd
, &pid
);
652 wxFindByPidParams
*params
= (wxFindByPidParams
*)lParam
;
653 if ( pid
== params
->pid
)
655 // remember the window we found
658 // return FALSE to stop the enumeration
662 // continue enumeration
666 int wxKillAllChildren(long pid
, wxSignal sig
, wxKillError
*krc
);
668 int wxKill(long pid
, wxSignal sig
, wxKillError
*krc
, int flags
)
670 if (flags
& wxKILL_CHILDREN
)
671 wxKillAllChildren(pid
, sig
, krc
);
673 // get the process handle to operate on
674 HANDLE hProcess
= ::OpenProcess(SYNCHRONIZE
|
676 PROCESS_QUERY_INFORMATION
,
677 FALSE
, // not inheritable
679 if ( hProcess
== NULL
)
683 // recognize wxKILL_ACCESS_DENIED as special because this doesn't
684 // mean that the process doesn't exist and this is important for
685 // wxProcess::Exists()
686 *krc
= ::GetLastError() == ERROR_ACCESS_DENIED
687 ? wxKILL_ACCESS_DENIED
694 wxON_BLOCK_EXIT1(::CloseHandle
, hProcess
);
700 // kill the process forcefully returning -1 as error code
701 if ( !::TerminateProcess(hProcess
, (UINT
)-1) )
703 wxLogSysError(_("Failed to kill process %d"), pid
);
707 // this is not supposed to happen if we could open the
717 // do nothing, we just want to test for process existence
723 // any other signal means "terminate"
725 wxFindByPidParams params
;
726 params
.pid
= (DWORD
)pid
;
728 // EnumWindows() has nice semantics: it returns 0 if it found
729 // something or if an error occurred and non zero if it
730 // enumerated all the window
731 if ( !::EnumWindows(wxEnumFindByPidProc
, (LPARAM
)¶ms
) )
733 // did we find any window?
736 // tell the app to close
738 // NB: this is the harshest way, the app won't have an
739 // opportunity to save any files, for example, but
740 // this is probably what we want here. If not we
741 // can also use SendMesageTimeout(WM_CLOSE)
742 if ( !::PostMessage(params
.hwnd
, WM_QUIT
, 0, 0) )
744 wxLogLastError(_T("PostMessage(WM_QUIT)"));
747 else // it was an error then
749 wxLogLastError(_T("EnumWindows"));
754 else // no windows for this PID
765 DWORD rc
wxDUMMY_INITIALIZE(0);
768 // as we wait for a short time, we can use just WaitForSingleObject()
769 // and not MsgWaitForMultipleObjects()
770 switch ( ::WaitForSingleObject(hProcess
, 500 /* msec */) )
773 // process terminated
774 if ( !::GetExitCodeProcess(hProcess
, &rc
) )
776 wxLogLastError(_T("GetExitCodeProcess"));
781 wxFAIL_MSG( _T("unexpected WaitForSingleObject() return") );
785 wxLogLastError(_T("WaitForSingleObject"));
798 // the return code is the same as from Unix kill(): 0 if killed
799 // successfully or -1 on error
800 if ( !ok
|| rc
== STILL_ACTIVE
)
809 HANDLE (WINAPI
*lpfCreateToolhelp32Snapshot
)(DWORD
,DWORD
) ;
810 BOOL (WINAPI
*lpfProcess32First
)(HANDLE
,LPPROCESSENTRY32
) ;
811 BOOL (WINAPI
*lpfProcess32Next
)(HANDLE
,LPPROCESSENTRY32
) ;
813 static void InitToolHelp32()
815 static bool s_initToolHelpDone
= false;
817 if (s_initToolHelpDone
)
820 s_initToolHelpDone
= true;
822 lpfCreateToolhelp32Snapshot
= NULL
;
823 lpfProcess32First
= NULL
;
824 lpfProcess32Next
= NULL
;
826 HINSTANCE hInstLib
= LoadLibrary( wxT("Kernel32.DLL") ) ;
827 if( hInstLib
== NULL
)
830 // Get procedure addresses.
831 // We are linking to these functions of Kernel32
832 // explicitly, because otherwise a module using
833 // this code would fail to load under Windows NT,
834 // which does not have the Toolhelp32
835 // functions in the Kernel 32.
836 lpfCreateToolhelp32Snapshot
=
837 (HANDLE(WINAPI
*)(DWORD
,DWORD
))
838 GetProcAddress( hInstLib
,
840 wxT("CreateToolhelp32Snapshot")
842 "CreateToolhelp32Snapshot"
847 (BOOL(WINAPI
*)(HANDLE
,LPPROCESSENTRY32
))
848 GetProcAddress( hInstLib
,
850 wxT("Process32First")
857 (BOOL(WINAPI
*)(HANDLE
,LPPROCESSENTRY32
))
858 GetProcAddress( hInstLib
,
866 FreeLibrary( hInstLib
) ;
870 int wxKillAllChildren(long pid
, wxSignal sig
, wxKillError
*krc
)
877 // If not implemented for this platform (e.g. NT 4.0), silently ignore
878 if (!lpfCreateToolhelp32Snapshot
|| !lpfProcess32First
|| !lpfProcess32Next
)
881 // Take a snapshot of all processes in the system.
882 HANDLE hProcessSnap
= lpfCreateToolhelp32Snapshot(TH32CS_SNAPPROCESS
, 0);
883 if (hProcessSnap
== INVALID_HANDLE_VALUE
) {
889 //Fill in the size of the structure before using it.
892 pe
.dwSize
= sizeof(PROCESSENTRY32
);
894 // Walk the snapshot of the processes, and for each process,
895 // kill it if its parent is pid.
896 if (!lpfProcess32First(hProcessSnap
, &pe
)) {
897 // Can't get first process.
900 CloseHandle (hProcessSnap
);
905 if (pe
.th32ParentProcessID
== (DWORD
) pid
) {
906 if (wxKill(pe
.th32ProcessID
, sig
, krc
))
909 } while (lpfProcess32Next (hProcessSnap
, &pe
));
915 // Execute a program in an Interactive Shell
916 bool wxShell(const wxString
& command
)
923 wxChar
*shell
= wxGetenv(wxT("COMSPEC"));
925 shell
= (wxChar
*) wxT("\\COMMAND.COM");
934 // pass the command to execute to the command processor
935 cmd
.Printf(wxT("%s /c %s"), shell
, command
.c_str());
939 return wxExecute(cmd
, wxEXEC_SYNC
) == 0;
942 // Shutdown or reboot the PC
943 bool wxShutdown(wxShutdownFlags
WXUNUSED_IN_WINCE(wFlags
))
948 #elif defined(__WIN32__)
951 if ( wxGetOsVersion(NULL
, NULL
) == wxWINDOWS_NT
) // if is NT or 2K
953 // Get a token for this process.
955 bOK
= ::OpenProcessToken(GetCurrentProcess(),
956 TOKEN_ADJUST_PRIVILEGES
| TOKEN_QUERY
,
960 TOKEN_PRIVILEGES tkp
;
962 // Get the LUID for the shutdown privilege.
963 ::LookupPrivilegeValue(NULL
, SE_SHUTDOWN_NAME
,
964 &tkp
.Privileges
[0].Luid
);
966 tkp
.PrivilegeCount
= 1; // one privilege to set
967 tkp
.Privileges
[0].Attributes
= SE_PRIVILEGE_ENABLED
;
969 // Get the shutdown privilege for this process.
970 ::AdjustTokenPrivileges(hToken
, FALSE
, &tkp
, 0,
971 (PTOKEN_PRIVILEGES
)NULL
, 0);
973 // Cannot test the return value of AdjustTokenPrivileges.
974 bOK
= ::GetLastError() == ERROR_SUCCESS
;
980 UINT flags
= EWX_SHUTDOWN
| EWX_FORCE
;
983 case wxSHUTDOWN_POWEROFF
:
984 flags
|= EWX_POWEROFF
;
987 case wxSHUTDOWN_REBOOT
:
992 wxFAIL_MSG( _T("unknown wxShutdown() flag") );
996 bOK
= ::ExitWindowsEx(flags
, 0) != 0;
1003 wxPowerType
wxGetPowerType()
1006 return wxPOWER_UNKNOWN
;
1009 wxBatteryState
wxGetBatteryState()
1012 return wxBATTERY_UNKNOWN_STATE
;
1015 // ----------------------------------------------------------------------------
1017 // ----------------------------------------------------------------------------
1019 // Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX)
1020 wxMemorySize
wxGetFreeMemory()
1022 #if defined(__WIN64__)
1023 MEMORYSTATUSEX memStatex
;
1024 memStatex
.dwLength
= sizeof (memStatex
);
1025 ::GlobalMemoryStatusEx (&memStatex
);
1026 return (wxMemorySize
)memStatex
.ullAvailPhys
;
1027 #else /* if defined(__WIN32__) */
1028 MEMORYSTATUS memStatus
;
1029 memStatus
.dwLength
= sizeof(MEMORYSTATUS
);
1030 ::GlobalMemoryStatus(&memStatus
);
1031 return (wxMemorySize
)memStatus
.dwAvailPhys
;
1035 unsigned long wxGetProcessId()
1037 return ::GetCurrentProcessId();
1043 ::MessageBeep((UINT
)-1); // default sound
1046 bool wxIsDebuggerRunning()
1048 #if wxUSE_DYNLIB_CLASS
1049 // IsDebuggerPresent() is not available under Win95, so load it dynamically
1050 wxDynamicLibrary
dll(_T("kernel32.dll"), wxDL_VERBATIM
);
1052 typedef BOOL (WINAPI
*IsDebuggerPresent_t
)();
1053 if ( !dll
.HasSymbol(_T("IsDebuggerPresent")) )
1055 // no way to know, assume no
1059 return (*(IsDebuggerPresent_t
)dll
.GetSymbol(_T("IsDebuggerPresent")))() != 0;
1065 // ----------------------------------------------------------------------------
1067 // ----------------------------------------------------------------------------
1069 wxString
wxGetOsDescription()
1076 info
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFO
);
1077 if ( ::GetVersionEx(&info
) )
1079 switch ( info
.dwPlatformId
)
1081 case VER_PLATFORM_WIN32s
:
1082 str
= _("Win32s on Windows 3.1");
1085 case VER_PLATFORM_WIN32_WINDOWS
:
1086 switch (info
.dwMinorVersion
)
1089 if ( info
.szCSDVersion
[1] == 'B' ||
1090 info
.szCSDVersion
[1] == 'C' )
1092 str
= _("Windows 95 OSR2");
1096 str
= _("Windows 95");
1100 if ( info
.szCSDVersion
[1] == 'B' ||
1101 info
.szCSDVersion
[1] == 'C' )
1103 str
= _("Windows 98 SE");
1107 str
= _("Windows 98");
1111 str
= _("Windows ME");
1114 str
.Printf(_("Windows 9x (%d.%d)"),
1115 info
.dwMajorVersion
,
1116 info
.dwMinorVersion
);
1119 if ( !wxIsEmpty(info
.szCSDVersion
) )
1121 str
<< _T(" (") << info
.szCSDVersion
<< _T(')');
1125 case VER_PLATFORM_WIN32_NT
:
1126 if ( info
.dwMajorVersion
== 5 )
1128 switch ( info
.dwMinorVersion
)
1131 str
.Printf(_("Windows 2000 (build %lu"),
1132 info
.dwBuildNumber
);
1135 str
.Printf(_("Windows XP (build %lu"),
1136 info
.dwBuildNumber
);
1139 str
.Printf(_("Windows Server 2003 (build %lu"),
1140 info
.dwBuildNumber
);
1144 if ( wxIsEmpty(str
) )
1146 str
.Printf(_("Windows NT %lu.%lu (build %lu"),
1147 info
.dwMajorVersion
,
1148 info
.dwMinorVersion
,
1149 info
.dwBuildNumber
);
1151 if ( !wxIsEmpty(info
.szCSDVersion
) )
1153 str
<< _T(", ") << info
.szCSDVersion
;
1161 wxFAIL_MSG( _T("GetVersionEx() failed") ); // should never happen
1167 wxToolkitInfo
& wxAppTraits::GetToolkitInfo()
1169 // cache the version info, it's not going to change
1171 // NB: this is MT-safe, we may use these static vars from different threads
1172 // but as they always have the same value it doesn't matter
1173 static int s_ver
= -1,
1183 info
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFO
);
1184 if ( ::GetVersionEx(&info
) )
1186 s_major
= info
.dwMajorVersion
;
1187 s_minor
= info
.dwMinorVersion
;
1189 #ifdef __SMARTPHONE__
1190 s_ver
= wxWINDOWS_SMARTPHONE
;
1191 #elif defined(__POCKETPC__)
1192 s_ver
= wxWINDOWS_POCKETPC
;
1194 switch ( info
.dwPlatformId
)
1196 case VER_PLATFORM_WIN32s
:
1200 case VER_PLATFORM_WIN32_WINDOWS
:
1204 case VER_PLATFORM_WIN32_NT
:
1205 s_ver
= wxWINDOWS_NT
;
1208 case VER_PLATFORM_WIN32_CE
:
1209 s_ver
= wxWINDOWS_CE
;
1216 static wxToolkitInfo info
;
1217 info
.versionMajor
= s_major
;
1218 info
.versionMinor
= s_minor
;
1220 info
.name
= _T("wxBase");
1224 wxWinVersion
wxGetWinVersion()
1228 switch ( wxGetOsVersion(&verMaj
, &verMin
) )
1236 return wxWinVersion_95
;
1239 return wxWinVersion_98
;
1242 return wxWinVersion_ME
;
1251 return wxWinVersion_NT3
;
1254 return wxWinVersion_NT4
;
1260 return wxWinVersion_2000
;
1263 return wxWinVersion_XP
;
1266 return wxWinVersion_2003
;
1271 return wxWinVersion_NT6
;
1277 return wxWinVersion_Unknown
;
1280 // ----------------------------------------------------------------------------
1282 // ----------------------------------------------------------------------------
1284 void wxMilliSleep(unsigned long milliseconds
)
1286 ::Sleep(milliseconds
);
1289 void wxMicroSleep(unsigned long microseconds
)
1291 wxMilliSleep(microseconds
/1000);
1294 void wxSleep(int nSecs
)
1296 wxMilliSleep(1000*nSecs
);
1299 // ----------------------------------------------------------------------------
1300 // font encoding <-> Win32 codepage conversion functions
1301 // ----------------------------------------------------------------------------
1303 extern WXDLLIMPEXP_BASE
long wxEncodingToCharset(wxFontEncoding encoding
)
1307 // although this function is supposed to return an exact match, do do
1308 // some mappings here for the most common case of "standard" encoding
1309 case wxFONTENCODING_SYSTEM
:
1310 return DEFAULT_CHARSET
;
1312 case wxFONTENCODING_ISO8859_1
:
1313 case wxFONTENCODING_ISO8859_15
:
1314 case wxFONTENCODING_CP1252
:
1315 return ANSI_CHARSET
;
1317 #if !defined(__WXMICROWIN__)
1318 // The following four fonts are multi-byte charsets
1319 case wxFONTENCODING_CP932
:
1320 return SHIFTJIS_CHARSET
;
1322 case wxFONTENCODING_CP936
:
1323 return GB2312_CHARSET
;
1326 case wxFONTENCODING_CP949
:
1327 return HANGUL_CHARSET
;
1330 case wxFONTENCODING_CP950
:
1331 return CHINESEBIG5_CHARSET
;
1333 // The rest are single byte encodings
1334 case wxFONTENCODING_CP1250
:
1335 return EASTEUROPE_CHARSET
;
1337 case wxFONTENCODING_CP1251
:
1338 return RUSSIAN_CHARSET
;
1340 case wxFONTENCODING_CP1253
:
1341 return GREEK_CHARSET
;
1343 case wxFONTENCODING_CP1254
:
1344 return TURKISH_CHARSET
;
1346 case wxFONTENCODING_CP1255
:
1347 return HEBREW_CHARSET
;
1349 case wxFONTENCODING_CP1256
:
1350 return ARABIC_CHARSET
;
1352 case wxFONTENCODING_CP1257
:
1353 return BALTIC_CHARSET
;
1355 case wxFONTENCODING_CP874
:
1356 return THAI_CHARSET
;
1357 #endif // !__WXMICROWIN__
1359 case wxFONTENCODING_CP437
:
1363 // no way to translate this encoding into a Windows charset
1368 // we have 2 versions of wxCharsetToCodepage(): the old one which directly
1369 // looks up the vlaues in the registry and the new one which is more
1370 // politically correct and has more chances to work on other Windows versions
1371 // as well but the old version is still needed for !wxUSE_FONTMAP case
1374 #include "wx/fontmap.h"
1376 extern WXDLLIMPEXP_BASE
long wxEncodingToCodepage(wxFontEncoding encoding
)
1378 // There don't seem to be symbolic names for
1379 // these under Windows so I just copied the
1380 // values from MSDN.
1386 case wxFONTENCODING_ISO8859_1
: ret
= 28591; break;
1387 case wxFONTENCODING_ISO8859_2
: ret
= 28592; break;
1388 case wxFONTENCODING_ISO8859_3
: ret
= 28593; break;
1389 case wxFONTENCODING_ISO8859_4
: ret
= 28594; break;
1390 case wxFONTENCODING_ISO8859_5
: ret
= 28595; break;
1391 case wxFONTENCODING_ISO8859_6
: ret
= 28596; break;
1392 case wxFONTENCODING_ISO8859_7
: ret
= 28597; break;
1393 case wxFONTENCODING_ISO8859_8
: ret
= 28598; break;
1394 case wxFONTENCODING_ISO8859_9
: ret
= 28599; break;
1395 case wxFONTENCODING_ISO8859_10
: ret
= 28600; break;
1396 case wxFONTENCODING_ISO8859_11
: ret
= 28601; break;
1397 // case wxFONTENCODING_ISO8859_12, // doesn't exist currently, but put it
1398 case wxFONTENCODING_ISO8859_13
: ret
= 28603; break;
1399 case wxFONTENCODING_ISO8859_14
: ret
= 28604; break;
1400 case wxFONTENCODING_ISO8859_15
: ret
= 28605; break;
1401 case wxFONTENCODING_KOI8
: ret
= 20866; break;
1402 case wxFONTENCODING_KOI8_U
: ret
= 21866; break;
1403 case wxFONTENCODING_CP437
: ret
= 437; break;
1404 case wxFONTENCODING_CP850
: ret
= 850; break;
1405 case wxFONTENCODING_CP852
: ret
= 852; break;
1406 case wxFONTENCODING_CP855
: ret
= 855; break;
1407 case wxFONTENCODING_CP866
: ret
= 866; break;
1408 case wxFONTENCODING_CP874
: ret
= 874; break;
1409 case wxFONTENCODING_CP932
: ret
= 932; break;
1410 case wxFONTENCODING_CP936
: ret
= 936; break;
1411 case wxFONTENCODING_CP949
: ret
= 949; break;
1412 case wxFONTENCODING_CP950
: ret
= 950; break;
1413 case wxFONTENCODING_CP1250
: ret
= 1250; break;
1414 case wxFONTENCODING_CP1251
: ret
= 1251; break;
1415 case wxFONTENCODING_CP1252
: ret
= 1252; break;
1416 case wxFONTENCODING_CP1253
: ret
= 1253; break;
1417 case wxFONTENCODING_CP1254
: ret
= 1254; break;
1418 case wxFONTENCODING_CP1255
: ret
= 1255; break;
1419 case wxFONTENCODING_CP1256
: ret
= 1256; break;
1420 case wxFONTENCODING_CP1257
: ret
= 1257; break;
1421 case wxFONTENCODING_EUC_JP
: ret
= 20932; break;
1422 case wxFONTENCODING_MACROMAN
: ret
= 10000; break;
1423 case wxFONTENCODING_MACJAPANESE
: ret
= 10001; break;
1424 case wxFONTENCODING_MACCHINESETRAD
: ret
= 10002; break;
1425 case wxFONTENCODING_MACKOREAN
: ret
= 10003; break;
1426 case wxFONTENCODING_MACARABIC
: ret
= 10004; break;
1427 case wxFONTENCODING_MACHEBREW
: ret
= 10005; break;
1428 case wxFONTENCODING_MACGREEK
: ret
= 10006; break;
1429 case wxFONTENCODING_MACCYRILLIC
: ret
= 10007; break;
1430 case wxFONTENCODING_MACTHAI
: ret
= 10021; break;
1431 case wxFONTENCODING_MACCHINESESIMP
: ret
= 10008; break;
1432 case wxFONTENCODING_MACCENTRALEUR
: ret
= 10029; break;
1433 case wxFONTENCODING_MACCROATIAN
: ret
= 10082; break;
1434 case wxFONTENCODING_MACICELANDIC
: ret
= 10079; break;
1435 case wxFONTENCODING_MACROMANIAN
: ret
= 10009; break;
1436 case wxFONTENCODING_UTF7
: ret
= 65000; break;
1437 case wxFONTENCODING_UTF8
: ret
= 65001; break;
1441 if (::IsValidCodePage(ret
) == 0)
1445 if (::GetCPInfo(ret
, &info
) == 0)
1451 extern long wxCharsetToCodepage(const wxChar
*name
)
1453 // first get the font encoding for this charset
1457 wxFontEncoding enc
= wxFontMapperBase::Get()->CharsetToEncoding(name
, false);
1458 if ( enc
== wxFONTENCODING_SYSTEM
)
1461 // the use the helper function
1462 return wxEncodingToCodepage(enc
);
1465 #else // !wxUSE_FONTMAP
1467 #include "wx/msw/registry.h"
1469 // this should work if Internet Exploiter is installed
1470 extern long wxCharsetToCodepage(const wxChar
*name
)
1477 wxString
path(wxT("MIME\\Database\\Charset\\"));
1480 // follow the alias loop
1483 wxRegKey
key(wxRegKey::HKCR
, path
+ cn
);
1488 // two cases: either there's an AliasForCharset string,
1489 // or there are Codepage and InternetEncoding dwords.
1490 // The InternetEncoding gives us the actual encoding,
1491 // the Codepage just says which Windows character set to
1492 // use when displaying the data.
1493 if (key
.HasValue(wxT("InternetEncoding")) &&
1494 key
.QueryValue(wxT("InternetEncoding"), &CP
))
1497 // no encoding, see if it's an alias
1498 if (!key
.HasValue(wxT("AliasForCharset")) ||
1499 !key
.QueryValue(wxT("AliasForCharset"), cn
))
1506 #endif // wxUSE_FONTMAP/!wxUSE_FONTMAP
1509 Creates a hidden window with supplied window proc registering the class for
1510 it if necesssary (i.e. the first time only). Caller is responsible for
1511 destroying the window and unregistering the class (note that this must be
1512 done because wxWidgets may be used as a DLL and so may be loaded/unloaded
1513 multiple times into/from the same process so we cna't rely on automatic
1514 Windows class unregistration).
1516 pclassname is a pointer to a caller stored classname, which must initially be
1517 NULL. classname is the desired wndclass classname. If function successfully
1518 registers the class, pclassname will be set to classname.
1520 extern "C" WXDLLIMPEXP_BASE HWND
1521 wxCreateHiddenWindow(LPCTSTR
*pclassname
, LPCTSTR classname
, WNDPROC wndproc
)
1523 wxCHECK_MSG( classname
&& pclassname
&& wndproc
, NULL
,
1524 _T("NULL parameter in wxCreateHiddenWindow") );
1526 // register the class fi we need to first
1527 if ( *pclassname
== NULL
)
1530 wxZeroMemory(wndclass
);
1532 wndclass
.lpfnWndProc
= wndproc
;
1533 wndclass
.hInstance
= wxGetInstance();
1534 wndclass
.lpszClassName
= classname
;
1536 if ( !::RegisterClass(&wndclass
) )
1538 wxLogLastError(wxT("RegisterClass() in wxCreateHiddenWindow"));
1543 *pclassname
= classname
;
1546 // next create the window
1547 HWND hwnd
= ::CreateWindow
1561 wxLogLastError(wxT("CreateWindow() in wxCreateHiddenWindow"));