summaryrefslogtreecommitdiff
path: root/plugins/!NotAdopted/NoHistory/icons.cpp
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2012-11-24 11:35:51 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2012-11-24 11:35:51 +0000
commit63eeb1a64332fb15abf0d2066e8673a59c3eed9a (patch)
tree19ba45ab60125225045207395d8c170380c256a4 /plugins/!NotAdopted/NoHistory/icons.cpp
parent2c1a61f471b8fdbc5d9ef9781d9c6cc1442f1a1c (diff)
adopted NoHistory
git-svn-id: http://svn.miranda-ng.org/main/trunk@2459 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/!NotAdopted/NoHistory/icons.cpp')
-rw-r--r--plugins/!NotAdopted/NoHistory/icons.cpp55
1 files changed, 0 insertions, 55 deletions
diff --git a/plugins/!NotAdopted/NoHistory/icons.cpp b/plugins/!NotAdopted/NoHistory/icons.cpp
deleted file mode 100644
index b8fcddc70b..0000000000
--- a/plugins/!NotAdopted/NoHistory/icons.cpp
+++ /dev/null
@@ -1,55 +0,0 @@
-#include "common.h"
-#include "icons.h"
-#include "resource.h"
-
-HICON hIconRemove, hIconKeep, hIconClear;
-HANDLE hIcoLibIconsChanged = 0;
-
-int ReloadIcons(WPARAM wParam, LPARAM lParam) {
- hIconRemove = Skin_GetIcon(MODULE "_remove");
- hIconKeep = Skin_GetIcon(MODULE "_keep");
- hIconClear = Skin_GetIcon(MODULE "_clear");
-
- return 0;
-}
-
-void InitIcons() {
- if(ServiceExists(MS_SKIN2_ADDICON)) {
- SKINICONDESC sid = {0};
- sid.cbSize = sizeof(SKINICONDESC);
-
- sid.pszSection = MODULE;
-
-#define AddIcon(x,y,z) \
- sid.pszDescription = Translate(x); \
- sid.pszName = y; \
- sid.pszDefaultFile = MODULE ".dll"; \
- sid.hDefaultIcon = (HICON)LoadImage(hInst, MAKEINTRESOURCE(z), IMAGE_ICON, 0, 0, 0); \
- CallService(MS_SKIN2_ADDICON, 0, (LPARAM)&sid); \
- sid.iDefaultIndex++;
-
- AddIcon("Disable", MODULE "_remove", IDI_HREMOVE);
- AddIcon("Enable", MODULE "_keep", IDI_HKEEP);
- AddIcon("Clear", MODULE "_clear", IDI_HCLEAR);
-
-#undef AddIcon
-
- ReloadIcons(0, 0);
-
- hIcoLibIconsChanged = HookEvent(ME_SKIN2_ICONSCHANGED, ReloadIcons);
- } else {
- hIconRemove = (HICON)LoadImage(hInst, MAKEINTRESOURCE(IDI_HREMOVE), IMAGE_ICON, 0, 0, 0);//LR_LOADTRANSPARENT | LR_LOADMAP3DCOLORS );
- hIconKeep = (HICON)LoadImage(hInst, MAKEINTRESOURCE(IDI_HKEEP), IMAGE_ICON, 0, 0, 0);//LR_LOADTRANSPARENT | LR_LOADMAP3DCOLORS );
- hIconClear = (HICON)LoadImage(hInst, MAKEINTRESOURCE(IDI_HCLEAR), IMAGE_ICON, 0, 0, 0);//LR_LOADTRANSPARENT | LR_LOADMAP3DCOLORS );
- }
-
-}
-
-void DeinitIcons() {
- if(hIcoLibIconsChanged) UnhookEvent(hIcoLibIconsChanged);
- else {
- DestroyIcon(hIconRemove);
- DestroyIcon(hIconKeep);
- DestroyIcon(hIconClear);
- }
-}