diff options
author | George Hazan <george.hazan@gmail.com> | 2015-12-23 16:50:27 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-12-23 16:50:27 +0000 |
commit | 2d225adc22def0f284f9549cdebe535f30be8787 (patch) | |
tree | c2bbeed1aebb804dd5b7e0278f96693f04c54d5d | |
parent | eaa82e557588e34ff560335fe4a40daef2605e92 (diff) |
menu icons went to icoLib
git-svn-id: http://svn.miranda-ng.org/main/trunk@15938 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/FloatingContacts/src/main.cpp | 24 | ||||
-rw-r--r-- | plugins/FloatingContacts/src/version.h | 2 |
2 files changed, 16 insertions, 10 deletions
diff --git a/plugins/FloatingContacts/src/main.cpp b/plugins/FloatingContacts/src/main.cpp index b95dccd0ab..d9e4d92fbf 100644 --- a/plugins/FloatingContacts/src/main.cpp +++ b/plugins/FloatingContacts/src/main.cpp @@ -26,7 +26,6 @@ static void LoadContact(MCONTACT hContact); // Internal funcs
static void RepaintWindow(HWND hwnd, HDC hdc);
-static void LoadMenus();
static void CreateThumbWnd(TCHAR *ptszName, MCONTACT hContact, int nX, int nY);
static void RegisterWindowClass(void);
static void UnregisterWindowClass(void);
@@ -678,6 +677,12 @@ static void LoadContacts() /////////////////////////////////////////////////////////////////////////////////////////
// Menus
+static IconItemT g_iconList[] =
+{
+ { LPGENT("Show all thumbs"), "flt_show", IDI_HIDE },
+ { LPGENT("Hide all thumbs"), "flt_hide", IDI_SHOW }
+};
+
static INT_PTR OnMainMenu_HideAll(WPARAM, LPARAM)
{
fcOpt.bHideAll = !fcOpt.bHideAll;
@@ -685,9 +690,8 @@ static INT_PTR OnMainMenu_HideAll(WPARAM, LPARAM) OnStatusChanged();
- Menu_ModifyItem(hMainMenuItemHideAll,
- fcOpt.bHideAll ? LPGENT("Show all thumbs") : LPGENT("Hide all thumbs"),
- LoadIcon(hInst, MAKEINTRESOURCE(fcOpt.bHideAll ? IDI_SHOW : IDI_HIDE)));
+ int i = (fcOpt.bHideAll) ? 0 : 1;
+ Menu_ModifyItem(hMainMenuItemHideAll, g_iconList[i].tszDescr, g_iconList[i].hIcolib);
return 0;
}
@@ -728,10 +732,11 @@ static void LoadMenus() // Hide all thumbs main menu item
CreateServiceFunction(MODULE "/MainHideAllThumbs", OnMainMenu_HideAll);
SET_UID(mi, 0x9ce9983f, 0x782a, 0x4ec1, 0xb5, 0x9b, 0x41, 0x4e, 0x9d, 0x92, 0x8e, 0xcb);
- mi.hIcolibItem = LoadIcon(hInst, MAKEINTRESOURCE(fcOpt.bHideAll ? IDI_SHOW : IDI_HIDE));
- mi.name.t = fcOpt.bHideAll ? LPGENT("Show all thumbs") : LPGENT("Hide all thumbs");
- mi.pszService = MODULE "/MainHideAllThumbs";
- Menu_AddMainMenuItem(&mi);
+ mi.pszService = MODULE "/MainHideAllThumbs";
+ int i = (fcOpt.bHideAll) ? 0 : 1;
+ mi.hIcolibItem = g_iconList[i].hIcolib;
+ mi.name.t = g_iconList[i].tszDescr;
+ hMainMenuItemHideAll = Menu_AddMainMenuItem(&mi);
// Register hotkeys
HOTKEYDESC hkd = { sizeof(hkd) };
@@ -884,7 +889,6 @@ static int OnModulesLoded(WPARAM, LPARAM) CreateBackgroundBrush();
CreateThumbsFont();
LoadContacts();
- LoadMenus();
if (fcOpt.bToTop) {
fcOpt.ToTopTime = (fcOpt.ToTopTime < 1) ? 1 : fcOpt.ToTopTime;
@@ -906,6 +910,8 @@ extern "C" int __declspec(dllexport) Load() mir_getLP(&pluginInfoEx);
mir_getCLI();
+ Icon_RegisterT(hInst, _T(MODULE), g_iconList, _countof(g_iconList));
+ LoadMenus();
InitOptions();
for (int i = 0; i < _countof(s_fonts); i++) {
diff --git a/plugins/FloatingContacts/src/version.h b/plugins/FloatingContacts/src/version.h index 791a226ffc..27183899f0 100644 --- a/plugins/FloatingContacts/src/version.h +++ b/plugins/FloatingContacts/src/version.h @@ -1,7 +1,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 7
#define __RELEASE_NUM 0
-#define __BUILD_NUM 3
+#define __BUILD_NUM 4
#include <stdver.h>
|