-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLangRes.cpp
80 lines (67 loc) · 2.35 KB
/
LangRes.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include "kbSizer.h"
LangRes::LangRes() : hRes(NULL) {
hRes = LoadLibrary(_TEXT("res.dll"));
if(hRes == NULL) {
hRes = GetModuleHandle(NULL);
}
defLangId = MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US);
}
LangRes::~LangRes() {
if(hRes && hRes != GetModuleHandle(NULL)) {
FreeLibrary(hRes);
}
}
BOOL CALLBACK LangRes::EnumLangsFunc( HMODULE /*hModule*/, LPCTSTR /*lpszType*/, LPCTSTR /*lpszName*/, WORD wIDLanguage, LONG_PTR lParam) {
if(wIDLanguage == static_cast<WORD>(lParam)) {
return FALSE;
}
return TRUE;
}
BOOL LangRes::EnumLanguages(ENUMRESLANGPROC func, LONG_PTR param) {
return EnumResourceLanguages(hRes, RT_STRING, MAKEINTRESOURCE(1), func, param);
}
BOOL LangRes::IsMatchingLangId(WORD langId) {
return !EnumResourceLanguages(hRes, RT_STRING, MAKEINTRESOURCE(1), LangRes::EnumLangsFunc, static_cast<LONG_PTR>(langId));
}
WORD LangRes::SetCurrentLangId(WORD langId) {
WORD last = defLangId;
defLangId = langId;
return last;
}
WORD LangRes::GetCurrentLangId() {
return defLangId;
}
LPCWSTR LangRes::LoadString(WORD langid, int idStr, int *nLen) {
LPCWSTR res = NULL;
HRSRC hrsrc = FindResourceEx(hRes, RT_STRING, MAKEINTRESOURCE(idStr / 16 + 1), langid);
if (hrsrc) {
HGLOBAL hglob = LoadResource(hRes, hrsrc);
if (hglob) {
LPCWSTR ptstr = reinterpret_cast<LPCWSTR> (LockResource(hglob));
if (ptstr) {
for (int i = 0; i < (idStr & 15); i++) {
ptstr += 1 + static_cast<UINT>(*ptstr);
}
int len = (BUFLEN-1 > ptstr[0]) ? ptstr[0] : BUFLEN-1;
memcpy(strbuf, ptstr+1, len * sizeof(WCHAR));
strbuf[len] = 0;
UnlockResource(ptstr);
if(nLen != NULL) *nLen = len;
res = strbuf;
}
FreeResource(hglob);
}
}
return res;
}
LPCWSTR LangRes::LoadString(int idStr, int *nLen) {
return LoadString(defLangId, idStr, nLen);
}
TemplateRes LangRes::LoadTemplateRes(LPCTSTR type, int idDlg) {
HRSRC hrsrc = FindResourceEx(hRes, type, MAKEINTRESOURCE(idDlg), defLangId);
HGLOBAL hglob = 0;
if (hrsrc) {
hglob = LoadResource(hRes, hrsrc);
}
return TemplateRes(hglob);
}