diff options
Diffstat (limited to 'plugins/New_GPG/src/icons.cpp')
-rw-r--r-- | plugins/New_GPG/src/icons.cpp | 154 |
1 files changed, 77 insertions, 77 deletions
diff --git a/plugins/New_GPG/src/icons.cpp b/plugins/New_GPG/src/icons.cpp index bb680e34cb..dc6668e2a6 100644 --- a/plugins/New_GPG/src/icons.cpp +++ b/plugins/New_GPG/src/icons.cpp @@ -1,77 +1,77 @@ -// Copyright © 2010-2012 SecureIM developers (baloo and others), sss
-//
-// This program is free software; you can redistribute it and/or
-// modify it under the terms of the GNU General Public License
-// as published by the Free Software Foundation; either version 2
-// of the License, or (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-#include "stdafx.h"
-
-extern HINSTANCE hInst;
-
-static IconItem iconList[] =
-{
- { "Secured", "secured", IDI_SECURED },
- { "Unsecured", "unsecured", IDI_UNSECURED }
-};
-
-void InitIconLib()
-{
- Icon_Register(hInst, szGPGModuleName, iconList, _countof(iconList));
-}
-
-HANDLE IconLibHookIconsChanged(MIRANDAHOOK hook)
-{
- return HookEvent(ME_SKIN2_ICONSCHANGED, hook);
-}
-
-void setClistIcon(MCONTACT hContact)
-{
- bool enabled = isContactSecured(hContact);
- extern HANDLE g_hCLIcon;
- MCONTACT hMC = db_mc_tryMeta(hContact);
- const char *szIconId = (enabled) ? "secured" : nullptr;
- ExtraIcon_SetIconByName(g_hCLIcon, hContact, szIconId);
- if(hMC != hContact)
- ExtraIcon_SetIconByName(g_hCLIcon, hMC, szIconId);
-}
-
-void setSrmmIcon(MCONTACT h)
-{
- MCONTACT hContact = db_mc_isMeta(h) ? metaGetMostOnline(h) : h;
- bool enabled = isContactSecured(hContact);
- MCONTACT hMC = db_mc_tryMeta(hContact);
-
- StatusIconData sid = {};
- sid.szModule = szGPGModuleName;
- sid.hIcon = IcoLib_GetIcon("secured");
- sid.dwId = 1;
- sid.flags = enabled ? 0 : MBF_HIDDEN;
- Srmm_ModifyIcon(hContact, &sid);
- if(hMC != hContact)
- Srmm_ModifyIcon(hMC, &sid);
-
- sid.hIcon = IcoLib_GetIcon("unsecured");
- sid.dwId = 2;
- sid.flags = enabled ? MBF_HIDDEN : 0;
- Srmm_ModifyIcon(hContact, &sid);
- if(hMC != hContact)
- Srmm_ModifyIcon(hMC, &sid);
-}
-
-void RefreshContactListIcons()
-{
- for (MCONTACT hContact = db_find_first(); hContact; hContact = db_find_next(hContact))
- setClistIcon(hContact);
-
- Clist_EndRebuild();
-}
+// Copyright © 2010-2012 SecureIM developers (baloo and others), sss +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; either version 2 +// of the License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +#include "stdafx.h" + +extern HINSTANCE hInst; + +static IconItem iconList[] = +{ + { "Secured", "secured", IDI_SECURED }, + { "Unsecured", "unsecured", IDI_UNSECURED } +}; + +void InitIconLib() +{ + Icon_Register(hInst, szGPGModuleName, iconList, _countof(iconList)); +} + +HANDLE IconLibHookIconsChanged(MIRANDAHOOK hook) +{ + return HookEvent(ME_SKIN2_ICONSCHANGED, hook); +} + +void setClistIcon(MCONTACT hContact) +{ + bool enabled = isContactSecured(hContact); + extern HANDLE g_hCLIcon; + MCONTACT hMC = db_mc_tryMeta(hContact); + const char *szIconId = (enabled) ? "secured" : nullptr; + ExtraIcon_SetIconByName(g_hCLIcon, hContact, szIconId); + if(hMC != hContact) + ExtraIcon_SetIconByName(g_hCLIcon, hMC, szIconId); +} + +void setSrmmIcon(MCONTACT h) +{ + MCONTACT hContact = db_mc_isMeta(h) ? metaGetMostOnline(h) : h; + bool enabled = isContactSecured(hContact); + MCONTACT hMC = db_mc_tryMeta(hContact); + + StatusIconData sid = {}; + sid.szModule = szGPGModuleName; + sid.hIcon = IcoLib_GetIcon("secured"); + sid.dwId = 1; + sid.flags = enabled ? 0 : MBF_HIDDEN; + Srmm_ModifyIcon(hContact, &sid); + if(hMC != hContact) + Srmm_ModifyIcon(hMC, &sid); + + sid.hIcon = IcoLib_GetIcon("unsecured"); + sid.dwId = 2; + sid.flags = enabled ? MBF_HIDDEN : 0; + Srmm_ModifyIcon(hContact, &sid); + if(hMC != hContact) + Srmm_ModifyIcon(hMC, &sid); +} + +void RefreshContactListIcons() +{ + for (MCONTACT hContact = db_find_first(); hContact; hContact = db_find_next(hContact)) + setClistIcon(hContact); + + Clist_EndRebuild(); +} |