summaryrefslogtreecommitdiff
path: root/plugins/SecureIM/loadicons.cpp
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-07-23 13:49:28 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-07-23 13:49:28 +0000
commita9580df150d799246eaecbf3c1fb5cecf9f8ab49 (patch)
treece046b1cd432d65718c9f6af80521d533ce6d4ca /plugins/SecureIM/loadicons.cpp
parent60338d55bb73d0c45b6e092703c4bb88a3c49755 (diff)
SecureIM, SeenPlugin, SendSS, Sessions: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@1122 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM/loadicons.cpp')
-rw-r--r--plugins/SecureIM/loadicons.cpp96
1 files changed, 0 insertions, 96 deletions
diff --git a/plugins/SecureIM/loadicons.cpp b/plugins/SecureIM/loadicons.cpp
deleted file mode 100644
index 3303424626..0000000000
--- a/plugins/SecureIM/loadicons.cpp
+++ /dev/null
@@ -1,96 +0,0 @@
-#include "commonheaders.h"
-
-
-HINSTANCE LoadIconsPack(const char* szIconsPack)
-{
- HINSTANCE hNewIconInst = NULL;
- WORD i;
-
- hNewIconInst = LoadLibrary(szIconsPack);
-
- if (hNewIconInst != NULL)
- {
- for(i=ID_FIRSTICON; i<=ID_LASTICON; i++)
- if (LoadIcon(hNewIconInst, MAKEINTRESOURCE(i)) == NULL)
- {
- FreeLibrary(hNewIconInst);
- hNewIconInst = NULL;
- break;
- }
- }
- return hNewIconInst;
-}
-
-
-
-int ReloadIcons(WPARAM wParam, LPARAM lParam)
-{
- HICON hIcon;
- for (int i=0; icons[i].key; i++) {
- hIcon = (HICON)CallService(MS_SKIN2_GETICON, 0, (LPARAM)icons[i].name);
- if(icons[i].tbl == TBL_IEC)
- g_hIEC[icons[i].idx]=hIcon;
- else
- if(icons[i].tbl == TBL_ICO)
- g_hICO[icons[i].idx]=hIcon;
- else
- if(icons[i].tbl == TBL_POP)
- g_hPOP[icons[i].idx]=hIcon;
- }
-
- return 0;
-}
-
-
-void InitIcons(void)
-{
- HINSTANCE hNewIconInst = NULL;
-
- if ( g_hFolders ) {
- LPSTR pathname = (LPSTR) alloca(MAX_PATH);
- FoldersGetCustomPathEx(g_hFolders, pathname, MAX_PATH, "icons\\", "secureim_icons.dll");
- if (hNewIconInst == NULL)
- hNewIconInst = LoadIconsPack(pathname);
- }
-
- if (hNewIconInst == NULL)
- hNewIconInst = LoadIconsPack("icons\\secureim_icons.dll");
-
- if (hNewIconInst == NULL)
- hNewIconInst = LoadIconsPack("plugins\\secureim_icons.dll");
-
- if (hNewIconInst == NULL)
- g_hIconInst = g_hInst;
- else
- g_hIconInst = hNewIconInst;
-
-
- SKINICONDESC sid = { 0 };
- sid.cbSize = sizeof(sid);
- sid.pszSection = "SecureIM";
-
- HICON hIcon;
- for (int i=0; icons[i].key; i++) {
- sid.pszSection = icons[i].section;
- sid.pszName = icons[i].name;
- sid.pszDescription = icons[i].text;
- sid.pszDefaultFile = "secureim_icons.dll";
- sid.iDefaultIndex = icons[i].key;
- sid.hDefaultIcon = (HICON)LoadImage(g_hIconInst, MAKEINTRESOURCE(icons[i].key), IMAGE_ICON, 16, 16, LR_SHARED);
- Skin_AddIcon(&sid);
- hIcon = (HICON)CallService(MS_SKIN2_GETICON, 0, (LPARAM)icons[i].name);
-
- if(icons[i].tbl == TBL_IEC)
- g_hIEC[icons[i].idx]=hIcon;
- else
- if(icons[i].tbl == TBL_ICO)
- g_hICO[icons[i].idx]=hIcon;
- else
- if(icons[i].tbl == TBL_POP)
- g_hPOP[icons[i].idx]=hIcon;
- }
-
- AddHookFunction(ME_SKIN2_ICONSCHANGED, ReloadIcons);
-}
-
-// EOF