From d716f207aa8b71f35e3872fd6b34651703c2beb7 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 4 Aug 2012 18:57:44 +0000 Subject: links to options don't work with langpacks git-svn-id: http://svn.miranda-ng.org/main/trunk@1355 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/modules/options/options.cpp | 45 +++++++++++++++++++------------------ src/modules/protocols/protoopts.cpp | 4 ++-- 2 files changed, 25 insertions(+), 24 deletions(-) (limited to 'src/modules') diff --git a/src/modules/options/options.cpp b/src/modules/options/options.cpp index e7f5304b33..d4ea3e39e3 100644 --- a/src/modules/options/options.cpp +++ b/src/modules/options/options.cpp @@ -105,9 +105,8 @@ struct OptionsDlgData HTREEITEM FindNamedTreeItemAtRoot(HWND hwndTree, const TCHAR* name) { - TVITEM tvi; TCHAR str[128]; - + TVITEM tvi; tvi.mask = TVIF_TEXT; tvi.pszText = str; tvi.cchTextMax = SIZEOF(str); @@ -1419,27 +1418,27 @@ void OpenAccountOptions(PROTOACCOUNT* pa) FreeOptionsData(&opi); } } -static void OpenOptionsNow(const char *pszGroup, const char *pszPage, const char *pszTab, bool bSinglePage = false) +static void OpenOptionsNow(int hLangpack, const char *pszGroup, const char *pszPage, const char *pszTab, bool bSinglePage = false) { if (IsWindow(hwndOptions)) { ShowWindow(hwndOptions, SW_RESTORE); SetForegroundWindow(hwndOptions); if (pszPage != NULL) { - TCHAR *ptszPage = mir_a2t(pszPage); + mir_ptr ptszPage( mir_a2t(pszPage)); HTREEITEM hItem = NULL; if (pszGroup != NULL) { - TCHAR *ptszGroup = mir_a2t(pszGroup); - hItem = FindNamedTreeItemAtRoot(GetDlgItem(hwndOptions, IDC_PAGETREE), ptszGroup); - if (hItem != NULL) { - hItem = FindNamedTreeItemAtChildren(GetDlgItem(hwndOptions, IDC_PAGETREE), hItem, ptszPage); - } + mir_ptr ptszGroup( mir_a2t(pszGroup)); + hItem = FindNamedTreeItemAtRoot(GetDlgItem(hwndOptions, IDC_PAGETREE), TranslateTH(hLangpack, ptszGroup)); + if (hItem != NULL) + hItem = FindNamedTreeItemAtChildren(GetDlgItem(hwndOptions, IDC_PAGETREE), hItem, TranslateTH(hLangpack, ptszPage)); + mir_free(ptszGroup); - } else { - hItem = FindNamedTreeItemAtRoot(GetDlgItem(hwndOptions, IDC_PAGETREE), ptszPage); } - if (hItem != NULL) { + else hItem = FindNamedTreeItemAtRoot(GetDlgItem(hwndOptions, IDC_PAGETREE), TranslateTH(hLangpack, ptszPage)); + + if (hItem != NULL) TreeView_SelectItem(GetDlgItem(hwndOptions, IDC_PAGETREE), hItem); - } + mir_free(ptszPage); } } @@ -1467,32 +1466,34 @@ static void OpenOptionsNow(const char *pszGroup, const char *pszPage, const char FreeOptionsData(&opi); } } } -static INT_PTR OpenOptions(WPARAM, LPARAM lParam) +static INT_PTR OpenOptions(WPARAM wParam, LPARAM lParam) { OPENOPTIONSDIALOG *ood = (OPENOPTIONSDIALOG*)lParam; if (ood == NULL) return 1; + int hLangpack = (int)wParam; if (ood->cbSize == OPENOPTIONSDIALOG_OLD_SIZE) - OpenOptionsNow(ood->pszGroup, ood->pszPage, NULL); + OpenOptionsNow(hLangpack, ood->pszGroup, ood->pszPage, NULL); else if (ood->cbSize == sizeof(OPENOPTIONSDIALOG)) - OpenOptionsNow(ood->pszGroup, ood->pszPage, ood->pszTab); + OpenOptionsNow(hLangpack, ood->pszGroup, ood->pszPage, ood->pszTab); else return 1; return 0; } -static INT_PTR OpenOptionsPage(WPARAM, LPARAM lParam) +static INT_PTR OpenOptionsPage(WPARAM wParam, LPARAM lParam) { OPENOPTIONSDIALOG *ood = (OPENOPTIONSDIALOG*)lParam; if (ood == NULL) return 1; + int hLangpack = (int)wParam; if (ood->cbSize == OPENOPTIONSDIALOG_OLD_SIZE) - OpenOptionsNow(ood->pszGroup, ood->pszPage, NULL, true); + OpenOptionsNow(hLangpack, ood->pszGroup, ood->pszPage, NULL, true); else if (ood->cbSize == sizeof(OPENOPTIONSDIALOG)) - OpenOptionsNow(ood->pszGroup, ood->pszPage, ood->pszTab, true); + OpenOptionsNow(hLangpack, ood->pszGroup, ood->pszPage, ood->pszTab, true); else return 1; @@ -1502,7 +1503,7 @@ static INT_PTR OpenOptionsPage(WPARAM, LPARAM lParam) static INT_PTR OpenOptionsDialog(WPARAM, LPARAM) { if (hwndOptions || GetAsyncKeyState(VK_CONTROL) || !ServiceExists(MS_MODERNOPT_SHOW)) - OpenOptionsNow(NULL, NULL, NULL); + OpenOptionsNow(NULL, NULL, NULL, NULL); else CallService(MS_MODERNOPT_SHOW, 0, 0); return 0; @@ -1584,8 +1585,8 @@ int LoadOptionsModule(void) hwndOptions = NULL; hOptionsInitEvent = CreateHookableEvent(ME_OPT_INITIALISE); CreateServiceFunction("Opt/AddPage", AddOptionsPage); - CreateServiceFunction(MS_OPT_OPENOPTIONS, OpenOptions); - CreateServiceFunction(MS_OPT_OPENOPTIONSPAGE, OpenOptionsPage); + CreateServiceFunction("Opt/OpenOptions", OpenOptions); + CreateServiceFunction("Opt/OpenOptionsPage", OpenOptionsPage); CreateServiceFunction("Options/OptionsCommand", OpenOptionsDialog); HookEvent(ME_SYSTEM_MODULESLOADED, OptModulesLoaded); HookEvent(ME_SYSTEM_PRESHUTDOWN, ShutdownOptionsModule); diff --git a/src/modules/protocols/protoopts.cpp b/src/modules/protocols/protoopts.cpp index 5cd17259fb..659e5b4dde 100644 --- a/src/modules/protocols/protoopts.cpp +++ b/src/modules/protocols/protoopts.cpp @@ -892,7 +892,7 @@ INT_PTR CALLBACK AccMgrDlgProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM ood.pszGroup = "Network"; ood.pszPage = pa->szModuleName; ood.pszTab = NULL; - CallService(MS_OPT_OPENOPTIONS, 0, (LPARAM)&ood); + Options_Open(&ood); } else OpenAccountOptions(pa); } } @@ -918,7 +918,7 @@ INT_PTR CALLBACK AccMgrDlgProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM OPENOPTIONSDIALOG ood = {0}; ood.cbSize = sizeof(ood); ood.pszPage = "Network"; - CallService(MS_OPT_OPENOPTIONS, 0, (LPARAM)&ood); + Options_Open(&ood); break; } -- cgit v1.2.3