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"
36 #include "wx/msw/private.h" // includes <windows.h>
37 #include "wx/msw/missing.h" // CHARSET_HANGUL
39 #if defined(__GNUWIN32_OLD__) || defined(__WXWINCE__)
40 // apparently we need to include winsock.h to get WSADATA and other stuff
41 // used in wxGetFullHostName() with the old mingw32 versions
47 #if !defined(__GNUWIN32__) && !defined(__SALFORDC__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
55 #if defined(__CYGWIN__)
56 #include <sys/unistd.h>
58 #include <sys/cygwin.h> // for cygwin_conv_to_full_win32_path()
61 #ifdef __BORLANDC__ // Please someone tell me which version of Borland needs
62 // this (3.1 I believe) and how to test for it.
63 // If this works for Borland 4.0 as well, then no worries.
67 // VZ: there is some code using NetXXX() functions to get the full user name:
68 // I don't think it's a good idea because they don't work under Win95 and
69 // seem to return the same as wxGetUserId() under NT. If you really want
70 // to use them, just #define USE_NET_API
77 #if defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
88 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
93 // ----------------------------------------------------------------------------
95 // ----------------------------------------------------------------------------
97 // In the WIN.INI file
98 static const wxChar WX_SECTION
[] = wxT("wxWindows");
99 static const wxChar eUSERNAME
[] = wxT("UserName");
101 // these are only used under Win16
102 #if !defined(__WIN32__) && !defined(__WXMICROWIN__)
103 static const wxChar eHOSTNAME
[] = wxT("HostName");
104 static const wxChar eUSERID
[] = wxT("UserId");
107 // ============================================================================
109 // ============================================================================
111 // ----------------------------------------------------------------------------
112 // get host name and related
113 // ----------------------------------------------------------------------------
115 // Get hostname only (without domain name)
116 bool wxGetHostName(wxChar
*buf
, int maxSize
)
118 #if defined(__WXWINCE__)
120 #elif defined(__WIN32__) && !defined(__WXMICROWIN__)
121 DWORD nSize
= maxSize
;
122 if ( !::GetComputerName(buf
, &nSize
) )
124 wxLogLastError(wxT("GetComputerName"));
132 const wxChar
*default_host
= wxT("noname");
134 if ((sysname
= wxGetenv(wxT("SYSTEM_NAME"))) == NULL
) {
135 GetProfileString(WX_SECTION
, eHOSTNAME
, default_host
, buf
, maxSize
- 1);
137 wxStrncpy(buf
, sysname
, maxSize
- 1);
138 buf
[maxSize
] = wxT('\0');
139 return *buf
? TRUE
: FALSE
;
143 // get full hostname (with domain name if possible)
144 bool wxGetFullHostName(wxChar
*buf
, int maxSize
)
146 #if defined(__WIN32__) && !defined(__WXMICROWIN__) && ! (defined(__GNUWIN32__) && !defined(__MINGW32__))
147 // TODO should use GetComputerNameEx() when available
149 // the idea is that if someone had set wxUSE_SOCKETS to 0 the code
150 // shouldn't use winsock.dll (a.k.a. ws2_32.dll) at all so only use this
151 // code if we link with it anyhow
154 if ( WSAStartup(MAKEWORD(1, 1), &wsa
) == 0 )
158 if ( gethostname(bufA
, WXSIZEOF(bufA
)) == 0 )
160 // gethostname() won't usually include the DNS domain name, for
161 // this we need to work a bit more
162 if ( !strchr(bufA
, '.') )
164 struct hostent
*pHostEnt
= gethostbyname(bufA
);
168 // Windows will use DNS internally now
169 pHostEnt
= gethostbyaddr(pHostEnt
->h_addr
, 4, AF_INET
);
174 host
= wxString::FromAscii(pHostEnt
->h_name
);
183 wxStrncpy(buf
, host
, maxSize
);
189 #endif // wxUSE_SOCKETS
193 return wxGetHostName(buf
, maxSize
);
196 // Get user ID e.g. jacs
197 bool wxGetUserId(wxChar
*buf
, int maxSize
)
199 #if defined(__WXWINCE__)
201 #elif defined(__WIN32__) && !defined(__win32s__) && !defined(__WXMICROWIN__)
202 DWORD nSize
= maxSize
;
203 if ( ::GetUserName(buf
, &nSize
) == 0 )
205 // actually, it does happen on Win9x if the user didn't log on
206 DWORD res
= ::GetEnvironmentVariable(wxT("username"), buf
, maxSize
);
215 #else // Win16 or Win32s
217 const wxChar
*default_id
= wxT("anonymous");
219 // Can't assume we have NIS (PC-NFS) or some other ID daemon
221 if ( (user
= wxGetenv(wxT("USER"))) == NULL
&&
222 (user
= wxGetenv(wxT("LOGNAME"))) == NULL
)
224 // Use wxWindows configuration data (comming soon)
225 GetProfileString(WX_SECTION
, eUSERID
, default_id
, buf
, maxSize
- 1);
229 wxStrncpy(buf
, user
, maxSize
- 1);
232 return *buf
? TRUE
: FALSE
;
236 // Get user name e.g. Julian Smart
237 bool wxGetUserName(wxChar
*buf
, int maxSize
)
239 #if defined(__WXWINCE__)
241 #elif defined(USE_NET_API)
242 CHAR szUserName
[256];
243 if ( !wxGetUserId(szUserName
, WXSIZEOF(szUserName
)) )
246 // TODO how to get the domain name?
249 // the code is based on the MSDN example (also see KB article Q119670)
250 WCHAR wszUserName
[256]; // Unicode user name
251 WCHAR wszDomain
[256];
254 USER_INFO_2
*ui2
; // User structure
256 // Convert ANSI user name and domain to Unicode
257 MultiByteToWideChar( CP_ACP
, 0, szUserName
, strlen(szUserName
)+1,
258 wszUserName
, WXSIZEOF(wszUserName
) );
259 MultiByteToWideChar( CP_ACP
, 0, szDomain
, strlen(szDomain
)+1,
260 wszDomain
, WXSIZEOF(wszDomain
) );
262 // Get the computer name of a DC for the domain.
263 if ( NetGetDCName( NULL
, wszDomain
, &ComputerName
) != NERR_Success
)
265 wxLogError(wxT("Can not find domain controller"));
270 // Look up the user on the DC
271 NET_API_STATUS status
= NetUserGetInfo( (LPWSTR
)ComputerName
,
272 (LPWSTR
)&wszUserName
,
273 2, // level - we want USER_INFO_2
281 case NERR_InvalidComputer
:
282 wxLogError(wxT("Invalid domain controller name."));
286 case NERR_UserNotFound
:
287 wxLogError(wxT("Invalid user name '%s'."), szUserName
);
292 wxLogSysError(wxT("Can't get information about user"));
297 // Convert the Unicode full name to ANSI
298 WideCharToMultiByte( CP_ACP
, 0, ui2
->usri2_full_name
, -1,
299 buf
, maxSize
, NULL
, NULL
);
304 wxLogError(wxT("Couldn't look up full user name."));
307 #else // !USE_NET_API
308 // Could use NIS, MS-Mail or other site specific programs
309 // Use wxWindows configuration data
310 bool ok
= GetProfileString(WX_SECTION
, eUSERNAME
, wxEmptyString
, buf
, maxSize
- 1) != 0;
313 ok
= wxGetUserId(buf
, maxSize
);
318 wxStrncpy(buf
, wxT("Unknown User"), maxSize
);
325 const wxChar
* wxGetHomeDir(wxString
*pstr
)
327 wxString
& strDir
= *pstr
;
329 #if defined(__UNIX__)
330 const wxChar
*szHome
= wxGetenv("HOME");
331 if ( szHome
== NULL
) {
333 wxLogWarning(_("can't find user's HOME, using current directory."));
339 // add a trailing slash if needed
340 if ( strDir
.Last() != wxT('/') )
344 // Cygwin returns unix type path but that does not work well
345 static wxChar windowsPath
[MAX_PATH
];
346 cygwin_conv_to_full_win32_path(strDir
, windowsPath
);
347 strDir
= windowsPath
;
349 #elif defined(__WXWINCE__)
355 // If we have a valid HOME directory, as is used on many machines that
356 // have unix utilities on them, we should use that.
357 const wxChar
*szHome
= wxGetenv(wxT("HOME"));
359 if ( szHome
!= NULL
)
363 else // no HOME, try HOMEDRIVE/PATH
365 szHome
= wxGetenv(wxT("HOMEDRIVE"));
366 if ( szHome
!= NULL
)
368 szHome
= wxGetenv(wxT("HOMEPATH"));
370 if ( szHome
!= NULL
)
374 // the idea is that under NT these variables have default values
375 // of "%systemdrive%:" and "\\". As we don't want to create our
376 // config files in the root directory of the system drive, we will
377 // create it in our program's dir. However, if the user took care
378 // to set HOMEPATH to something other than "\\", we suppose that he
379 // knows what he is doing and use the supplied value.
380 if ( wxStrcmp(szHome
, wxT("\\")) == 0 )
385 if ( strDir
.empty() )
387 // If we have a valid USERPROFILE directory, as is the case in
388 // Windows NT, 2000 and XP, we should use that as our home directory.
389 szHome
= wxGetenv(wxT("USERPROFILE"));
391 if ( szHome
!= NULL
)
395 if ( !strDir
.empty() )
397 return strDir
.c_str();
399 //else: fall back to the prograrm directory
401 // Win16 has no idea about home, so use the executable directory instead
404 // 260 was taken from windef.h
410 ::GetModuleFileName(::GetModuleHandle(NULL
),
411 wxStringBuffer(strPath
, MAX_PATH
), MAX_PATH
);
413 // extract the dir name
414 wxSplitPath(strPath
, &strDir
, NULL
, NULL
);
418 return strDir
.c_str();
421 wxChar
*wxGetUserHome(const wxString
& WXUNUSED(user
))
423 // VZ: the old code here never worked for user != "" anyhow! Moreover, it
424 // returned sometimes a malloc()'d pointer, sometimes a pointer to a
425 // static buffer and sometimes I don't even know what.
426 static wxString s_home
;
428 return (wxChar
*)wxGetHomeDir(&s_home
);
431 bool wxDirExists(const wxString
& dir
)
433 #ifdef __WXMICROWIN__
434 return wxPathExist(dir
);
435 #elif defined(__WIN32__)
436 DWORD attribs
= GetFileAttributes(dir
);
437 return ((attribs
!= (DWORD
)-1) && (attribs
& FILE_ATTRIBUTE_DIRECTORY
));
440 struct ffblk fileInfo
;
442 struct find_t fileInfo
;
444 // In Borland findfirst has a different argument
445 // ordering from _dos_findfirst. But _dos_findfirst
446 // _should_ be ok in both MS and Borland... why not?
448 return (findfirst(dir
, &fileInfo
, _A_SUBDIR
) == 0 &&
449 (fileInfo
.ff_attrib
& _A_SUBDIR
) != 0);
451 return (_dos_findfirst(dir
, _A_SUBDIR
, &fileInfo
) == 0) &&
452 ((fileInfo
.attrib
& _A_SUBDIR
) != 0);
457 bool wxGetDiskSpace(const wxString
& path
, wxLongLong
*pTotal
, wxLongLong
*pFree
)
465 // old w32api don't have ULARGE_INTEGER
466 #if defined(__WIN32__) && \
467 (!defined(__GNUWIN32__) || wxCHECK_W32API_VERSION( 0, 3 ))
468 // GetDiskFreeSpaceEx() is not available under original Win95, check for
470 typedef BOOL (WINAPI
*GetDiskFreeSpaceEx_t
)(LPCTSTR
,
476 pGetDiskFreeSpaceEx
= (GetDiskFreeSpaceEx_t
)::GetProcAddress
478 ::GetModuleHandle(_T("kernel32.dll")),
480 "GetDiskFreeSpaceExW"
482 "GetDiskFreeSpaceExA"
486 if ( pGetDiskFreeSpaceEx
)
488 ULARGE_INTEGER bytesFree
, bytesTotal
;
490 // may pass the path as is, GetDiskFreeSpaceEx() is smart enough
491 if ( !pGetDiskFreeSpaceEx(path
,
496 wxLogLastError(_T("GetDiskFreeSpaceEx"));
501 // ULARGE_INTEGER is a union of a 64 bit value and a struct containing
502 // two 32 bit fields which may be or may be not named - try to make it
503 // compile in all cases
504 #if defined(__BORLANDC__) && !defined(_ANONYMOUS_STRUCT)
511 *pTotal
= wxLongLong(UL(bytesTotal
).HighPart
, UL(bytesTotal
).LowPart
);
516 *pFree
= wxLongLong(UL(bytesFree
).HighPart
, UL(bytesFree
).LowPart
);
522 // there's a problem with drives larger than 2GB, GetDiskFreeSpaceEx()
523 // should be used instead - but if it's not available, fall back on
524 // GetDiskFreeSpace() nevertheless...
526 DWORD lSectorsPerCluster
,
528 lNumberOfFreeClusters
,
529 lTotalNumberOfClusters
;
531 // FIXME: this is wrong, we should extract the root drive from path
532 // instead, but this is the job for wxFileName...
533 if ( !::GetDiskFreeSpace(path
,
536 &lNumberOfFreeClusters
,
537 &lTotalNumberOfClusters
) )
539 wxLogLastError(_T("GetDiskFreeSpace"));
544 wxLongLong lBytesPerCluster
= lSectorsPerCluster
;
545 lBytesPerCluster
*= lBytesPerSector
;
549 *pTotal
= lBytesPerCluster
;
550 *pTotal
*= lTotalNumberOfClusters
;
555 *pFree
= lBytesPerCluster
;
556 *pFree
*= lNumberOfFreeClusters
;
565 // ----------------------------------------------------------------------------
567 // ----------------------------------------------------------------------------
569 bool wxGetEnv(const wxString
& var
, wxString
*value
)
573 #elif defined(__WIN16__)
574 const wxChar
* ret
= wxGetenv(var
);
585 // first get the size of the buffer
586 DWORD dwRet
= ::GetEnvironmentVariable(var
, NULL
, 0);
589 // this means that there is no such variable
595 (void)::GetEnvironmentVariable(var
, wxStringBuffer(*value
, dwRet
),
603 bool wxSetEnv(const wxString
& var
, const wxChar
*value
)
605 // some compilers have putenv() or _putenv() or _wputenv() but it's better
606 // to always use Win32 function directly instead of dealing with them
607 #if defined(__WIN32__) && !defined(__WXWINCE__)
608 if ( !::SetEnvironmentVariable(var
, value
) )
610 wxLogLastError(_T("SetEnvironmentVariable"));
616 #else // no way to set env vars
621 // ----------------------------------------------------------------------------
622 // process management
623 // ----------------------------------------------------------------------------
625 // structure used to pass parameters from wxKill() to wxEnumFindByPidProc()
626 struct wxFindByPidParams
628 wxFindByPidParams() { hwnd
= 0; pid
= 0; }
630 // the HWND used to return the result
633 // the PID we're looking from
636 DECLARE_NO_COPY_CLASS(wxFindByPidParams
)
639 // wxKill helper: EnumWindows() callback which is used to find the first (top
640 // level) window belonging to the given process
641 BOOL CALLBACK
wxEnumFindByPidProc(HWND hwnd
, LPARAM lParam
)
644 (void)::GetWindowThreadProcessId(hwnd
, &pid
);
646 wxFindByPidParams
*params
= (wxFindByPidParams
*)lParam
;
647 if ( pid
== params
->pid
)
649 // remember the window we found
652 // return FALSE to stop the enumeration
656 // continue enumeration
660 int wxKill(long pid
, wxSignal sig
, wxKillError
*krc
)
662 // get the process handle to operate on
663 HANDLE hProcess
= ::OpenProcess(SYNCHRONIZE
|
665 PROCESS_QUERY_INFORMATION
,
666 FALSE
, // not inheritable
668 if ( hProcess
== NULL
)
672 if ( ::GetLastError() == ERROR_ACCESS_DENIED
)
674 *krc
= wxKILL_ACCESS_DENIED
;
678 *krc
= wxKILL_NO_PROCESS
;
689 // kill the process forcefully returning -1 as error code
690 if ( !::TerminateProcess(hProcess
, (UINT
)-1) )
692 wxLogSysError(_("Failed to kill process %d"), pid
);
696 // this is not supposed to happen if we could open the
706 // do nothing, we just want to test for process existence
710 // any other signal means "terminate"
712 wxFindByPidParams params
;
713 params
.pid
= (DWORD
)pid
;
715 // EnumWindows() has nice semantics: it returns 0 if it found
716 // something or if an error occured and non zero if it
717 // enumerated all the window
718 if ( !::EnumWindows(wxEnumFindByPidProc
, (LPARAM
)¶ms
) )
720 // did we find any window?
723 // tell the app to close
725 // NB: this is the harshest way, the app won't have
726 // opportunity to save any files, for example, but
727 // this is probably what we want here. If not we
728 // can also use SendMesageTimeout(WM_CLOSE)
729 if ( !::PostMessage(params
.hwnd
, WM_QUIT
, 0, 0) )
731 wxLogLastError(_T("PostMessage(WM_QUIT)"));
734 else // it was an error then
736 wxLogLastError(_T("EnumWindows"));
741 else // no windows for this PID
758 // as we wait for a short time, we can use just WaitForSingleObject()
759 // and not MsgWaitForMultipleObjects()
760 switch ( ::WaitForSingleObject(hProcess
, 500 /* msec */) )
763 // process terminated
764 if ( !::GetExitCodeProcess(hProcess
, &rc
) )
766 wxLogLastError(_T("GetExitCodeProcess"));
771 wxFAIL_MSG( _T("unexpected WaitForSingleObject() return") );
775 wxLogLastError(_T("WaitForSingleObject"));
790 // just to suppress the warnings about uninitialized variable
794 ::CloseHandle(hProcess
);
796 // the return code is the same as from Unix kill(): 0 if killed
797 // successfully or -1 on error
799 // be careful to interpret rc correctly: for wxSIGNONE we return success if
800 // the process exists, for all the other sig values -- if it doesn't
802 ((sig
== wxSIGNONE
) == (rc
== STILL_ACTIVE
)) )
816 // Execute a program in an Interactive Shell
817 bool wxShell(const wxString
& command
)
822 wxChar
*shell
= wxGetenv(wxT("COMSPEC"));
824 shell
= (wxChar
*) wxT("\\COMMAND.COM");
834 // pass the command to execute to the command processor
835 cmd
.Printf(wxT("%s /c %s"), shell
, command
.c_str());
838 return wxExecute(cmd
, wxEXEC_SYNC
) == 0;
842 // Shutdown or reboot the PC
843 bool wxShutdown(wxShutdownFlags wFlags
)
847 #elif defined(__WIN32__)
850 if ( wxGetOsVersion(NULL
, NULL
) == wxWINDOWS_NT
) // if is NT or 2K
852 // Get a token for this process.
854 bOK
= ::OpenProcessToken(GetCurrentProcess(),
855 TOKEN_ADJUST_PRIVILEGES
| TOKEN_QUERY
,
859 TOKEN_PRIVILEGES tkp
;
861 // Get the LUID for the shutdown privilege.
862 ::LookupPrivilegeValue(NULL
, SE_SHUTDOWN_NAME
,
863 &tkp
.Privileges
[0].Luid
);
865 tkp
.PrivilegeCount
= 1; // one privilege to set
866 tkp
.Privileges
[0].Attributes
= SE_PRIVILEGE_ENABLED
;
868 // Get the shutdown privilege for this process.
869 ::AdjustTokenPrivileges(hToken
, FALSE
, &tkp
, 0,
870 (PTOKEN_PRIVILEGES
)NULL
, 0);
872 // Cannot test the return value of AdjustTokenPrivileges.
873 bOK
= ::GetLastError() == ERROR_SUCCESS
;
879 UINT flags
= EWX_SHUTDOWN
| EWX_FORCE
;
882 case wxSHUTDOWN_POWEROFF
:
883 flags
|= EWX_POWEROFF
;
886 case wxSHUTDOWN_REBOOT
:
891 wxFAIL_MSG( _T("unknown wxShutdown() flag") );
895 bOK
= ::ExitWindowsEx(EWX_SHUTDOWN
| EWX_FORCE
| EWX_REBOOT
, 0) != 0;
904 // ----------------------------------------------------------------------------
906 // ----------------------------------------------------------------------------
908 // Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX)
909 long wxGetFreeMemory()
911 #if defined(__WIN32__) && !defined(__BORLANDC__)
912 MEMORYSTATUS memStatus
;
913 memStatus
.dwLength
= sizeof(MEMORYSTATUS
);
914 GlobalMemoryStatus(&memStatus
);
915 return memStatus
.dwAvailPhys
;
917 return (long)GetFreeSpace(0);
921 unsigned long wxGetProcessId()
924 return ::GetCurrentProcessId();
933 ::MessageBeep((UINT
)-1); // default sound
936 wxString
wxGetOsDescription()
944 info
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFO
);
945 if ( ::GetVersionEx(&info
) )
947 switch ( info
.dwPlatformId
)
949 case VER_PLATFORM_WIN32s
:
950 str
= _("Win32s on Windows 3.1");
953 case VER_PLATFORM_WIN32_WINDOWS
:
954 str
.Printf(_("Windows 9%c"),
955 info
.dwMinorVersion
== 0 ? _T('5') : _T('8'));
956 if ( !wxIsEmpty(info
.szCSDVersion
) )
958 str
<< _T(" (") << info
.szCSDVersion
<< _T(')');
962 case VER_PLATFORM_WIN32_NT
:
963 str
.Printf(_T("Windows NT %lu.%lu (build %lu"),
967 if ( !wxIsEmpty(info
.szCSDVersion
) )
969 str
<< _T(", ") << info
.szCSDVersion
;
977 wxFAIL_MSG( _T("GetVersionEx() failed") ); // should never happen
982 return _("Windows 3.1");
986 int wxAppTraits::GetOSVersion(int *verMaj
, int *verMin
)
988 // cache the version info, it's not going to change
990 // NB: this is MT-safe, we may use these static vars from different threads
991 // but as they always have the same value it doesn't matter
992 static int s_ver
= -1,
1002 info
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFO
);
1003 if ( ::GetVersionEx(&info
) )
1005 s_major
= info
.dwMajorVersion
;
1006 s_minor
= info
.dwMinorVersion
;
1008 switch ( info
.dwPlatformId
)
1010 case VER_PLATFORM_WIN32s
:
1014 case VER_PLATFORM_WIN32_WINDOWS
:
1018 case VER_PLATFORM_WIN32_NT
:
1019 s_ver
= wxWINDOWS_NT
;
1022 case VER_PLATFORM_WIN32_CE
:
1023 s_ver
= wxWINDOWS_CE
;
1038 // ----------------------------------------------------------------------------
1040 // ----------------------------------------------------------------------------
1042 void wxUsleep(unsigned long milliseconds
)
1044 ::Sleep(milliseconds
);
1047 void wxSleep(int nSecs
)
1049 wxUsleep(1000*nSecs
);
1052 // ----------------------------------------------------------------------------
1053 // font encoding <-> Win32 codepage conversion functions
1054 // ----------------------------------------------------------------------------
1056 extern WXDLLIMPEXP_BASE
long wxEncodingToCharset(wxFontEncoding encoding
)
1060 // although this function is supposed to return an exact match, do do
1061 // some mappings here for the most common case of "standard" encoding
1062 case wxFONTENCODING_SYSTEM
:
1063 return DEFAULT_CHARSET
;
1065 case wxFONTENCODING_ISO8859_1
:
1066 case wxFONTENCODING_ISO8859_15
:
1067 case wxFONTENCODING_CP1252
:
1068 return ANSI_CHARSET
;
1070 #if !defined(__WXMICROWIN__)
1071 // The following four fonts are multi-byte charsets
1072 case wxFONTENCODING_CP932
:
1073 return SHIFTJIS_CHARSET
;
1075 case wxFONTENCODING_CP936
:
1076 return GB2312_CHARSET
;
1078 case wxFONTENCODING_CP949
:
1079 return HANGUL_CHARSET
;
1081 case wxFONTENCODING_CP950
:
1082 return CHINESEBIG5_CHARSET
;
1084 // The rest are single byte encodings
1085 case wxFONTENCODING_CP1250
:
1086 return EASTEUROPE_CHARSET
;
1088 case wxFONTENCODING_CP1251
:
1089 return RUSSIAN_CHARSET
;
1091 case wxFONTENCODING_CP1253
:
1092 return GREEK_CHARSET
;
1094 case wxFONTENCODING_CP1254
:
1095 return TURKISH_CHARSET
;
1097 case wxFONTENCODING_CP1255
:
1098 return HEBREW_CHARSET
;
1100 case wxFONTENCODING_CP1256
:
1101 return ARABIC_CHARSET
;
1103 case wxFONTENCODING_CP1257
:
1104 return BALTIC_CHARSET
;
1106 case wxFONTENCODING_CP874
:
1107 return THAI_CHARSET
;
1108 #endif // !__WXMICROWIN__
1110 case wxFONTENCODING_CP437
:
1114 // no way to translate this encoding into a Windows charset
1119 // we have 2 versions of wxCharsetToCodepage(): the old one which directly
1120 // looks up the vlaues in the registry and the new one which is more
1121 // politically correct and has more chances to work on other Windows versions
1122 // as well but the old version is still needed for !wxUSE_FONTMAP case
1125 #include "wx/fontmap.h"
1127 extern WXDLLIMPEXP_BASE
long wxEncodingToCodepage(wxFontEncoding encoding
)
1129 // translate encoding into the Windows CHARSET
1130 long charset
= wxEncodingToCharset(encoding
);
1131 if ( charset
== -1 )
1134 // translate CHARSET to code page
1135 CHARSETINFO csetInfo
;
1136 if ( !::TranslateCharsetInfo((DWORD
*)(DWORD
)charset
,
1140 wxLogLastError(_T("TranslateCharsetInfo(TCI_SRCCHARSET)"));
1145 return csetInfo
.ciACP
;
1148 extern long wxCharsetToCodepage(const wxChar
*name
)
1150 // first get the font encoding for this charset
1154 wxFontEncoding enc
= wxFontMapper::Get()->CharsetToEncoding(name
, FALSE
);
1155 if ( enc
== wxFONTENCODING_SYSTEM
)
1158 // the use the helper function
1159 return wxEncodingToCodepage(enc
);
1162 #else // !wxUSE_FONTMAP
1164 #include "wx/msw/registry.h"
1166 // this should work if Internet Exploiter is installed
1167 extern long wxCharsetToCodepage(const wxChar
*name
)
1174 wxString
path(wxT("MIME\\Database\\Charset\\"));
1177 // follow the alias loop
1180 wxRegKey
key(wxRegKey::HKCR
, path
+ cn
);
1185 // two cases: either there's an AliasForCharset string,
1186 // or there are Codepage and InternetEncoding dwords.
1187 // The InternetEncoding gives us the actual encoding,
1188 // the Codepage just says which Windows character set to
1189 // use when displaying the data.
1190 if (key
.HasValue(wxT("InternetEncoding")) &&
1191 key
.QueryValue(wxT("InternetEncoding"), &CP
))
1194 // no encoding, see if it's an alias
1195 if (!key
.HasValue(wxT("AliasForCharset")) ||
1196 !key
.QueryValue(wxT("AliasForCharset"), cn
))
1203 #endif // wxUSE_FONTMAP/!wxUSE_FONTMAP