From cb4a46e7fbe62d788e66ed6121c717a2d22a4d7c Mon Sep 17 00:00:00 2001 From: watcherhd Date: Thu, 21 Apr 2011 14:14:52 +0000 Subject: svn.miranda.im is moving to a new home! git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@7 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb --- contacts_rate/commonheaders.h | 78 ++++++++++ contacts_rate/docs/Rate-readme.txt | 46 ++++++ contacts_rate/docs/rate.txt | 1 + contacts_rate/icons/rate_high.ico | Bin 0 -> 2550 bytes contacts_rate/icons/rate_low.ico | Bin 0 -> 2550 bytes contacts_rate/icons/rate_med.ico | Bin 0 -> 2550 bytes contacts_rate/main.cpp | 309 +++++++++++++++++++++++++++++++++++++ contacts_rate/options.cpp | 224 +++++++++++++++++++++++++++ contacts_rate/rate.rc | 124 +++++++++++++++ contacts_rate/rate.sln | 20 +++ contacts_rate/rate.suo | Bin 0 -> 8192 bytes contacts_rate/rate.vcproj | 170 ++++++++++++++++++++ contacts_rate/rate.vcxproj | 112 ++++++++++++++ contacts_rate/rate.vcxproj.filters | 58 +++++++ contacts_rate/rate.vcxproj.user | 3 + contacts_rate/resource.h | 22 +++ 16 files changed, 1167 insertions(+) create mode 100644 contacts_rate/commonheaders.h create mode 100644 contacts_rate/docs/Rate-readme.txt create mode 100644 contacts_rate/docs/rate.txt create mode 100644 contacts_rate/icons/rate_high.ico create mode 100644 contacts_rate/icons/rate_low.ico create mode 100644 contacts_rate/icons/rate_med.ico create mode 100644 contacts_rate/main.cpp create mode 100644 contacts_rate/options.cpp create mode 100644 contacts_rate/rate.rc create mode 100644 contacts_rate/rate.sln create mode 100644 contacts_rate/rate.suo create mode 100644 contacts_rate/rate.vcproj create mode 100644 contacts_rate/rate.vcxproj create mode 100644 contacts_rate/rate.vcxproj.filters create mode 100644 contacts_rate/rate.vcxproj.user create mode 100644 contacts_rate/resource.h (limited to 'contacts_rate') diff --git a/contacts_rate/commonheaders.h b/contacts_rate/commonheaders.h new file mode 100644 index 0000000..34aeb65 --- /dev/null +++ b/contacts_rate/commonheaders.h @@ -0,0 +1,78 @@ +/* + Authorization State plugin for Miranda-IM (www.miranda-im.org) + (c) 2006 by Thief + Icons by Faith Healer + + 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 + + File name : $URL: http://svn.mirandaim.ru/mainrepo/authstate/trunk/commonheaders.h $ + Revision : $Rev: 222 $ + Last change on : $Date: 2006-09-26 05:54:03 +0700 (Вт, 26 сен 2006) $ + Last change by : $Author: Thief $ + +*/ + +#ifndef COMMHEADERS_H +#define COMMHEADERS_H + +//#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers + +//needed by m_utils.h +#include + +// needed by m_icolib.h > r9256 +#include + +//Miranda API headers +#include +#include +#include +#include +#include +//#include +#include +#include +#include +#include +#include +#include "resource.h" + +//external SDK headers +#include +#include +#include + +static const int DefaultSlot = EXTRA_ICON_PROTO; +#define MODULENAME "Rate" + +/* 0e2866a8-6f4c-4132-98ae-6afdb8766c48 */ +#define MIID_CONTACTSRATE {0x0e2866a8, 0x6f4c, 0x4132, {0x98, 0xae, 0x6a, 0xfd, 0xb8, 0x76, 0x6c, 0x48}} + +static struct +{ + char* szDescr; + char* szName; + int defIconID; + HANDLE hIconLibItem; +} iconList[] = +{ + { LPGEN( "Rate high" ), "rate_high", IDI_RATEHI }, + { LPGEN( "Rate medium" ), "rate_medium", IDI_RATEME }, + { LPGEN( "Rate low" ), "rate_low", IDI_RATELO }, +}; + + + +#endif //COMMHEADERS_H diff --git a/contacts_rate/docs/Rate-readme.txt b/contacts_rate/docs/Rate-readme.txt new file mode 100644 index 0000000..15fe643 --- /dev/null +++ b/contacts_rate/docs/Rate-readme.txt @@ -0,0 +1,46 @@ +Contacts Rate plugin for Miranda IM (http://miranda-im.org) +Version: 0.0.2.0 (c) 2007-2009 Kildor +Icons by Faith Healer + +This small plugin intended to show an icon in front of contacts which have +non-empty rating at Modern Contact List. + +http://svn.miranda.im/mainrepo/contacts_rate/trunk/ - plugin`s SVN + +I would like to say thanks to: +Faith Healer for icons +Thief for his Authstate plugin that was base for this plugin. +FYR for his clist_modern + + +Changes: + +v0.0.2.0 +- ExtraIcons plugin support (big thanks to Pescuma for patch) + +v0.0.1.5 +- fixes typos and bugs +- add support for clist_nicer and clist_mw, and handling of clist_classic + +v0.0.1.4 +- Fix for new m_cluiframes.h (need to be checked with clist_nicer) + +v0.0.1.3 +- More clean-up. + +v0.0.1.2 +- clean-up. + +v0.0.1.1 +- fix for new pluginapi +- copyrights update +- small clean-up + +v0.0.1.0 +- public release + +v0.0.0.x +- test versions, unreleased + +Plugin is released under GPL licence. +http://www.gnu.org/copyleft/gpl.html diff --git a/contacts_rate/docs/rate.txt b/contacts_rate/docs/rate.txt new file mode 100644 index 0000000..da932fa --- /dev/null +++ b/contacts_rate/docs/rate.txt @@ -0,0 +1 @@ +Rate 0.0.2.0 \ No newline at end of file diff --git a/contacts_rate/icons/rate_high.ico b/contacts_rate/icons/rate_high.ico new file mode 100644 index 0000000..8c54d39 Binary files /dev/null and b/contacts_rate/icons/rate_high.ico differ diff --git a/contacts_rate/icons/rate_low.ico b/contacts_rate/icons/rate_low.ico new file mode 100644 index 0000000..fdf1fce Binary files /dev/null and b/contacts_rate/icons/rate_low.ico differ diff --git a/contacts_rate/icons/rate_med.ico b/contacts_rate/icons/rate_med.ico new file mode 100644 index 0000000..1ba52c4 Binary files /dev/null and b/contacts_rate/icons/rate_med.ico differ diff --git a/contacts_rate/main.cpp b/contacts_rate/main.cpp new file mode 100644 index 0000000..5b85548 --- /dev/null +++ b/contacts_rate/main.cpp @@ -0,0 +1,309 @@ +/*==========================================================================*/ +/* + FILE DESCRIPTION: Rate main + + AUTHOR: Kildor + GROUP: The NULL workgroup + PROJECT: Contact`s rate + PART: Main + VERSION: 1.0 + CREATED: 20.12.2006 23:11:41 + + EMAIL: kostia@ngs.ru + WWW: http://kildor.miranda.im + + COPYRIGHT: (C) 2006 The NULL workgroup. All Rights Reserved. +*/ +/*--------------------------------------------------------------------------*/ +/* + Copyright (C) 2006 The NULL workgroup + + 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 +*/ +/*--------------------------------------------------------------------------*/ +/* + FILE ID: $Id$ + + CHANGE LOG: + + $Log$ +*/ +#include "commonheaders.h" + +HINSTANCE g_hInst; +PLUGINLINK *pluginLink; +static HANDLE hHookModulesLoaded = NULL, hSystemOKToExit = NULL, hOptInitialise = NULL, hIcoLibIconsChanged = NULL; +static HANDLE hHookExtraIconsRebuild = NULL, hHookExtraIconsApply = NULL, hContactSettingChanged = NULL; +static HANDLE hPrebuildContactMenu = NULL; +static HANDLE hExtraIcon = NULL; +IconExtraColumn g_IECRateHigh = {0}; +IconExtraColumn g_IECRateMedium = {0}; +IconExtraColumn g_IECRateLow = {0}; +IconExtraColumn g_IECClear = {0}; +int clistIcon = 0; //Icon slot to use +byte bRate = 0; + +extern int onOptInitialise(WPARAM wParam, LPARAM lParam); + + +PLUGININFOEX pluginInfo={ + sizeof(PLUGININFOEX), + "Contact`s Rate", + PLUGIN_MAKE_VERSION(0,0,2,0), + "Show rating of contact in contact list (if presents).", + "Kildor, Thief", + "kostia@ngs.ru", + " 2006-2009 Kostia Romanov, based on AuthState by Alexander Turyak", + "http://kildor.miranda.im/", + 0, // is not unicode + 0, //doesn't replace anything built-in + {0x45230488, 0x977b, 0x405b, {0x85, 0x6d, 0xea, 0x27, 0x6d, 0x70, 0x83, 0xb7}} +/* 45230488-977b-405b-856d-ea276d7083b7 */ + +}; + +PLUGININFO oldpluginInfo={ + sizeof(PLUGININFO), + pluginInfo.shortName, + pluginInfo.version, + pluginInfo.description, + pluginInfo.author, + pluginInfo.authorEmail, + pluginInfo.copyright, + pluginInfo.homepage, + pluginInfo.flags, + pluginInfo.replacesDefaultModule +}; + + +extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved) +{ + g_hInst = hinstDLL; + return TRUE; +} + +// +extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) +{ + if (mirandaVersion < PLUGIN_MAKE_VERSION(0, 8, 0, 29)) + { + MessageBoxA( NULL, "The plugin requires Miranda IM 0.8.0.29 or later for correct applying its preferences.", "Contact` Rate", + MB_OK|MB_ICONWARNING|MB_SETFOREGROUND|MB_TOPMOST ); + } + + return &pluginInfo; +} + +extern "C" __declspec(dllexport) PLUGININFO* MirandaPluginInfo(DWORD mirandaVersion) +{ + return &oldpluginInfo; +} + + +extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void) +{ + static const MUUID interfaces[] = {MIID_CONTACTSRATE, MIID_LAST}; + return interfaces; +} + +int onSystemOKToExit(WPARAM wParam,LPARAM lParam) +{ + UnhookEvent(hHookModulesLoaded); + UnhookEvent(hHookExtraIconsRebuild); + UnhookEvent(hHookExtraIconsApply); + UnhookEvent(hOptInitialise); + UnhookEvent(hSystemOKToExit); + if (hIcoLibIconsChanged) UnhookEvent(hIcoLibIconsChanged); + if (hContactSettingChanged) + UnhookEvent(hContactSettingChanged); + + return 0; +} + +void setExtaIcon(HANDLE hContact, int bRate = -1, BOOL clear = TRUE) +{ + if (hContact == NULL) + return; + + if (bRate < 0) + bRate = DBGetContactSettingByte(hContact, "CList", "Rate", 0); + + if (hExtraIcon != NULL) + { + const char *icon; + switch(bRate) + { + case 3: icon = "rate_high"; break; + case 2: icon = "rate_medium"; break; + case 1: icon = "rate_low"; break; + default: icon = NULL; break; + } + + if (icon == NULL && !clear) + return; + + ExtraIcon_SetIcon(hExtraIcon, hContact, icon); + } + else + { + switch(bRate) + { + case 3: CallService(MS_CLIST_EXTRA_SET_ICON, (WPARAM) hContact, (LPARAM) &g_IECRateHigh); break; + case 2: CallService(MS_CLIST_EXTRA_SET_ICON, (WPARAM) hContact, (LPARAM) &g_IECRateMedium); break; + case 1: CallService(MS_CLIST_EXTRA_SET_ICON, (WPARAM) hContact, (LPARAM) &g_IECRateLow); break; + default: CallService(MS_CLIST_EXTRA_SET_ICON, (WPARAM) hContact, (LPARAM) &g_IECClear); break; + } + } +} + + +int onExtraImageApplying(WPARAM wParam, LPARAM lParam) +{ + setExtaIcon((HANDLE) wParam); + return 0; +} + + +int onExtraImageListRebuild(WPARAM wParam, LPARAM lParam) +{ + g_IECRateHigh.cbSize = sizeof(IconExtraColumn); + g_IECRateHigh.ColumnType = clistIcon; + g_IECRateMedium.cbSize = sizeof(IconExtraColumn); + g_IECRateMedium.ColumnType = clistIcon; + g_IECRateLow.cbSize = sizeof(IconExtraColumn); + g_IECRateLow.ColumnType = clistIcon; + + if (ServiceExists(MS_CLIST_EXTRA_ADD_ICON)) + { + g_IECRateHigh.hImage = (HANDLE)CallService(MS_CLIST_EXTRA_ADD_ICON, (WPARAM)(HICON) CallService(MS_SKIN2_GETICON, 0, (LPARAM)"rate_high"), (LPARAM)0); + g_IECRateMedium.hImage = (HANDLE)CallService(MS_CLIST_EXTRA_ADD_ICON, (WPARAM)(HICON) CallService(MS_SKIN2_GETICON, 0, (LPARAM)"rate_medium"), (LPARAM)0); + g_IECRateLow.hImage = (HANDLE)CallService(MS_CLIST_EXTRA_ADD_ICON, (WPARAM)(HICON) CallService(MS_SKIN2_GETICON, 0, (LPARAM)"rate_low"), (LPARAM)0); + } + return 0; +} + + +static void init_icolib (void) +{ + SKINICONDESC sid = {0}; + char szFile[MAX_PATH]; + sid.cbSize = SKINICONDESC_SIZE_V1; + int i = 0; + + sid.pszSection = Translate("Contact Rate"); + GetModuleFileNameA(g_hInst, szFile, MAX_PATH); + sid.pszDefaultFile = szFile; + + for ( i = 0; i < SIZEOF(iconList); i++ ) { + sid.pszName = iconList[i].szName; + sid.ptszDescription = iconList[i].szDescr; + sid.iDefaultIndex = -iconList[i].defIconID; + iconList[i].hIconLibItem = (HANDLE) CallService(MS_SKIN2_ADDICON, 0, (LPARAM)&sid); + } +} + + +int onModulesLoaded(WPARAM wParam,LPARAM lParam) +{ + //IcoLib support + init_icolib(); + + + // Updater support + // switch off + if ( ServiceExists(MS_UPDATE_REGISTER)) + { + Update update = {0}; + char szVersion[16]; + + update.cbSize = sizeof(Update); + + update.szComponentName = pluginInfo.shortName; + update.pbVersion = (BYTE *)CreateVersionString(pluginInfo.version, szVersion); + update.cpbVersion = strlen((char *)update.pbVersion); + + update.szUpdateURL = UPDATER_AUTOREGISTER; + + // these are the three lines that matter - the archive, the page containing the version string, and the text (or data) + // before the version that we use to locate it on the page + // (note that if the update URL and the version URL point to standard file listing entries, the backend xml + // data will be used to check for updates rather than the actual web page - this is not true for beta urls) + update.szBetaUpdateURL = "http://kildor.miranda.im/miranda/rate.zip"; + update.szBetaVersionURL = "http://kildor.miranda.im/miranda/rate.txt"; + update.szBetaChangelogURL = "http://kildor.miranda.im/miranda/rate_changes.txt"; + update.pbBetaVersionPrefix = (BYTE *)"Rate "; + update.cpbBetaVersionPrefix = strlen((char *)update.pbBetaVersionPrefix); + + CallService(MS_UPDATE_REGISTER, 0, (WPARAM)&update); + } + + // Extra icon support + hExtraIcon = ExtraIcon_Register("contact_rate", "Contact rate", "rate_high"); + + if (hExtraIcon != NULL) + { + // Set initial value for all contacts + HANDLE hContact = (HANDLE) CallService(MS_DB_CONTACT_FINDFIRST, 0, 0); + while (hContact != NULL) + { + setExtaIcon(hContact, -1, FALSE); + hContact = (HANDLE) CallService(MS_DB_CONTACT_FINDNEXT, (WPARAM) hContact, 0); + } + } + else + { + hOptInitialise = HookEvent(ME_OPT_INITIALISE, onOptInitialise); + hIcoLibIconsChanged = HookEvent(ME_SKIN2_ICONSCHANGED, onExtraImageListRebuild); + hHookExtraIconsRebuild = HookEvent(ME_CLIST_EXTRA_LIST_REBUILD, onExtraImageListRebuild); + hHookExtraIconsApply = HookEvent(ME_CLIST_EXTRA_IMAGE_APPLY, onExtraImageApplying); + onExtraImageListRebuild(0,0); + } + + return 0; +} + + +int onContactSettingChanged(WPARAM wParam,LPARAM lParam) +{ + DBCONTACTWRITESETTING *cws=(DBCONTACTWRITESETTING*)lParam; + + if (wParam != NULL && !lstrcmp(cws->szModule,"CList") && !lstrcmp(cws->szSetting,"Rate")) + setExtaIcon((HANDLE)wParam, cws->value.type == DBVT_DELETED ? 0 : cws->value.bVal); + + return 0; +} + + +extern "C" int __declspec(dllexport) Load(PLUGINLINK *link) +{ + pluginLink=link; + + hHookModulesLoaded = HookEvent(ME_SYSTEM_MODULESLOADED, onModulesLoaded); + hSystemOKToExit = HookEvent(ME_SYSTEM_OKTOEXIT,onSystemOKToExit); + hContactSettingChanged = HookEvent(ME_DB_CONTACT_SETTINGCHANGED, onContactSettingChanged); + + clistIcon = DBGetContactSettingByte(NULL, MODULENAME, "AdvancedIcon", DefaultSlot); + + g_IECClear.cbSize = sizeof(IconExtraColumn); + g_IECClear.ColumnType = clistIcon; + g_IECClear.hImage = (HANDLE) -1; + + return 0; +} + +extern "C" int __declspec(dllexport) Unload(void) +{ + return 0; +} diff --git a/contacts_rate/options.cpp b/contacts_rate/options.cpp new file mode 100644 index 0000000..3f591a0 --- /dev/null +++ b/contacts_rate/options.cpp @@ -0,0 +1,224 @@ +/* + Authorization State plugin for Miranda-IM (www.miranda-im.org) + (c) 2006 by Thief + Icons by Faith Healer + + 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 + + File name : $URL: svn://svnsrv.mirandaim.ru/mainrepo/authstate/trunk/options.cpp $ + Revision : $Rev: 233 $ + Last change on : $Date: 2006-10-05 15:48:05 +0300 (Thu, 05 Oct 2006) $ + Last change by : $Author: Thief $ + +*/ + +#include "commonheaders.h" + +extern HINSTANCE g_hInst; +extern int onExtraImageApplying(WPARAM wParam, LPARAM lParam); +extern int onExtraImageListRebuild(WPARAM wParam, LPARAM lParam); +extern IconExtraColumn g_IECAuth, g_IECGrant, g_IECAuthGrant, g_IECClear; +extern int clistIcon; +//extern byte bUseAuthIcon, bUseGrantIcon, bContactMenuItem, bIconsForRecentContacts; + +//#define EXTRA_ICON_RES0 0 // only used by nicer +//#define EXTRA_ICON_EMAIL 1 +//#define EXTRA_ICON_WEB 2 +//#define EXTRA_ICON_SMS 3 +//#define EXTRA_ICON_ADV1 4 +//#define EXTRA_ICON_ADV2 5 +//#define EXTRA_ICON_ADV3 6 +//#define EXTRA_ICON_CLIENT 7 +//#define EXTRA_ICON_ADV4 8 +//#define EXTRA_ICON_RES1 9 // only used by nicer +//#define EXTRA_ICON_PROTO 9 // used by mwclist and modern +//#define EXTRA_ICON_RES2 10 // only used by nicer +//#define EXTRA_ICON_VISMODE 10 // only used by modern + +#define MS_SKINENG_DRAWICONEXFIX "SkinEngine/DrawIconEx_Fix" + +enum { + clist_none, + clist_modern, + clist_nicer +}; + +const char *szAdvancedIconsModern[] = { + "E-mail", + "Web page", + "Phone/SMS", + "Advanced #1", + "Advanced #2", + "Advanced #3", + "Client", + "Advanced #4", + "Protocol", + "Visibility/Chat activity" +}; +//const int cAdvancedIconsModern = sizeof(szAdvancedIconsModern) / sizeof(szAdvancedIconsModern[0]); + +const char *szAdvancedIconsNicer[] = { + "Reserved", + "E-mail", + "Homepage", + "Telephone", + "Advanced #1", + "Advanced #2", + "Client", + "Advanced #3", + "Advanced #4", + "Reserved #1", + "Reserved #2" + }; +//const int cAdvancedIconsNicer = sizeof(szAdvancedIconsNicer) / sizeof(szAdvancedIconsNicer[0]); + +BOOL CALLBACK DlgProcOptions(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) +{ + static int bInitializing = 0; + static int usedClist = clist_none; + int cAdvancedIcons; +// const char **szAdvancedIcons; + + switch (msg) + { + case WM_INITDIALOG: + { + TranslateDialogDefault(hwndDlg); + bInitializing = 1; + if (ServiceExists(MS_CLIST_EXTRA_ADD_ICON)) + { + if (ServiceExists(MS_SKINENG_DRAWICONEXFIX)) + { // modern? +// SendDlgItemMessage(hwndDlg,IDC_USED_CLIST, WM_SETTEXT,0,(LPARAM)_T("Your clist: modern")); + cAdvancedIcons = SIZEOF(szAdvancedIconsModern); + usedClist = clist_modern; + } + else + { + if (ServiceExists("CLN/About")) + { + usedClist = clist_nicer; +// szAdvancedIcons = szAdvancedIconsNicer; + cAdvancedIcons = SIZEOF(szAdvancedIconsNicer); + SendDlgItemMessage(hwndDlg,IDC_USED_CLIST, WM_SETTEXT,0,(LPARAM)_T("Your clist: nicer")); + } + else + { + usedClist = clist_modern; + cAdvancedIcons = SIZEOF(szAdvancedIconsModern) - 1; // mw doesn`t have last modern extraicon +// SendDlgItemMessage(hwndDlg,IDC_USED_CLIST, WM_SETTEXT,0,(LPARAM)_T("Your clist: mw")); + } + SendDlgItemMessage(hwndDlg,IDC_NOTMODERN_WARNING, WM_SETTEXT,0,(LPARAM)_T("Warning: your contact list plugin doesn`t have ability to sort contacts by rate.")); + ShowWindow(GetDlgItem(hwndDlg, IDC_NOTMODERN_WARNING), SW_SHOW); + } + } + else + { + cAdvancedIcons = 0; +// SendDlgItemMessage(hwndDlg,IDC_USED_CLIST, WM_SETTEXT,0,(LPARAM)_T("Your clist: classic")); + SendDlgItemMessage(hwndDlg,IDC_NOTMODERN_WARNING, WM_SETTEXT,0,(LPARAM)_T("Warning: classic contact list plugin doesn`t have ability to use extraicons")); + ShowWindow(GetDlgItem(hwndDlg, IDC_NOTMODERN_WARNING), SW_SHOW); + EnableWindow(GetDlgItem(hwndDlg, IDC_ADVICON), 0); + } +// cAdvancedIcons = sizeof(szAdvancedIcons) / sizeof(szAdvancedIcons[0]); +// cAdvancedIcons = SIZEOF(szAdvancedIcons); + + if (usedClist != clist_none) { + for (int i = 0; i < cAdvancedIcons; i++) + { + SendMessage(GetDlgItem(hwndDlg, IDC_ADVICON), CB_ADDSTRING, 0, (LPARAM) Translate( usedClist==clist_modern ? szAdvancedIconsModern[i] : szAdvancedIconsNicer[i])); + } + + if (usedClist == clist_modern ) + SendMessage(GetDlgItem(hwndDlg, IDC_ADVICON), CB_SETCURSEL, clistIcon-1, 0); + else + SendMessage(GetDlgItem(hwndDlg, IDC_ADVICON), CB_SETCURSEL, clistIcon, 0); + } + bInitializing = 0; + return TRUE; + } + case WM_COMMAND: + { + switch (LOWORD(wParam)) { + case IDC_ADVICON: + { + if ((HIWORD(wParam) == EN_CHANGE) && (!bInitializing) || (HIWORD(wParam) == CBN_SELENDOK)) + { + SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0); + } + break; + } + } + break; + } + case WM_NOTIFY: + { + if (((LPNMHDR)lParam)->idFrom == 0) + { + switch (((LPNMHDR)lParam)->code) + { + case PSN_APPLY: + { + if (usedClist==clist_none) + return TRUE; + + clistIcon = SendMessage(GetDlgItem(hwndDlg, IDC_ADVICON), CB_GETCURSEL, 0, 0); + if (usedClist == clist_modern ) + clistIcon++; + + HANDLE hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDFIRST, 0, 0); + while (hContact) + { + CallService(MS_CLIST_EXTRA_SET_ICON, (WPARAM)hContact, (LPARAM)&g_IECClear); + hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDNEXT, (WPARAM)hContact, 0); + } + g_IECClear.ColumnType = clistIcon; + onExtraImageListRebuild(0,0); + hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDFIRST, 0, 0); + while (hContact) + { + onExtraImageApplying((WPARAM)hContact,0); + hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDNEXT, (WPARAM)hContact, 0); + } + //Store options values to DB + DBWriteContactSettingByte(NULL, MODULENAME, "AdvancedIcon", clistIcon); + } + return TRUE; + } + } + } + case WM_DESTROY: + break; + } + return FALSE; +} + +int onOptInitialise(WPARAM wParam, LPARAM lParam) +{ + OPTIONSDIALOGPAGE odp; + + ZeroMemory(&odp, sizeof(odp)); + odp.cbSize = sizeof(odp); + odp.position = 0; + odp.hInstance = g_hInst; + odp.pszGroup = Translate("Contact List"); + odp.pszTemplate = MAKEINTRESOURCEA(IDD_RATE_OPT); + odp.pszTitle = Translate("Rate"); + odp.pfnDlgProc = DlgProcOptions; + odp.flags = ODPF_BOLDGROUPS; + CallService(MS_OPT_ADDPAGE, wParam, (LPARAM) &odp); + + return 0; +} diff --git a/contacts_rate/rate.rc b/contacts_rate/rate.rc new file mode 100644 index 0000000..e1a75b6 --- /dev/null +++ b/contacts_rate/rate.rc @@ -0,0 +1,124 @@ +// Microsoft Visual C++ generated resource script. +// +#include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "afxres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// Ukrainian resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_UKR) +#ifdef _WIN32 +LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT +#pragma code_page(1251) +#endif //_WIN32 + +///////////////////////////////////////////////////////////////////////////// +// +// Icon +// + +// Icon with lowest ID value placed first to ensure application icon +// remains consistent on all systems. +IDI_RATEHI ICON "icons\\rate_high.ico" +IDI_RATELO ICON "icons\\rate_low.ico" +IDI_RATEME ICON "icons\\rate_med.ico" +#endif // Ukrainian resources +///////////////////////////////////////////////////////////////////////////// + + +///////////////////////////////////////////////////////////////////////////// +// English (U.S.) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +#ifdef _WIN32 +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US +#pragma code_page(1252) +#endif //_WIN32 + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""afxres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Dialog +// + +IDD_RATE_OPT DIALOGEX 0, 0, 314, 240 +STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD +FONT 8, "MS Shell Dlg", 0, 0, 0x0 +BEGIN + COMBOBOX IDC_ADVICON,95,102,78,81,CBS_DROPDOWNLIST | WS_VSCROLL | + WS_TABSTOP,WS_EX_CLIENTEDGE + GROUPBOX "Plugin settings",IDC_STATIC,46,46,222,118 + RTEXT "Use",IDC_STATIC,56,104,33,12 + LTEXT "slot to draw the icon",IDC_STATIC,179,104,76,17 + LTEXT "Warning: classic contact list plugin doesn`t have ability to use extraicons", + IDC_NOTMODERN_WARNING,77,126,171,18,NOT WS_VISIBLE +END + + +///////////////////////////////////////////////////////////////////////////// +// +// DESIGNINFO +// + +#ifdef APSTUDIO_INVOKED +GUIDELINES DESIGNINFO +BEGIN + IDD_RATE_OPT, DIALOG + BEGIN + LEFTMARGIN, 7 + RIGHTMARGIN, 307 + TOPMARGIN, 7 + BOTTOMMARGIN, 233 + END +END +#endif // APSTUDIO_INVOKED + +#endif // English (U.S.) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED + diff --git a/contacts_rate/rate.sln b/contacts_rate/rate.sln new file mode 100644 index 0000000..99b1f7e --- /dev/null +++ b/contacts_rate/rate.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual C++ Express 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "rate", "rate.vcxproj", "{DB315D7D-00BB-43B2-93A6-0430CA2B9F28}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DB315D7D-00BB-43B2-93A6-0430CA2B9F28}.Debug|Win32.ActiveCfg = Debug|Win32 + {DB315D7D-00BB-43B2-93A6-0430CA2B9F28}.Debug|Win32.Build.0 = Debug|Win32 + {DB315D7D-00BB-43B2-93A6-0430CA2B9F28}.Release|Win32.ActiveCfg = Release|Win32 + {DB315D7D-00BB-43B2-93A6-0430CA2B9F28}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/contacts_rate/rate.suo b/contacts_rate/rate.suo new file mode 100644 index 0000000..61d8a45 Binary files /dev/null and b/contacts_rate/rate.suo differ diff --git a/contacts_rate/rate.vcproj b/contacts_rate/rate.vcproj new file mode 100644 index 0000000..f96dc83 --- /dev/null +++ b/contacts_rate/rate.vcproj @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/contacts_rate/rate.vcxproj b/contacts_rate/rate.vcxproj new file mode 100644 index 0000000..110922d --- /dev/null +++ b/contacts_rate/rate.vcxproj @@ -0,0 +1,112 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + {DB315D7D-00BB-43B2-93A6-0430CA2B9F28} + Win32Proj + + + + DynamicLibrary + MultiByte + true + + + DynamicLibrary + MultiByte + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)$(Configuration)/Plugins\ + $(SolutionDir)$(Configuration)/Obj/$(ProjectName)\ + true + $(SolutionDir)$(Configuration)/Plugins\ + $(SolutionDir)$(Configuration)/Obj/$(ProjectName)\ + false + D:\Sources\include;$(IncludePath) + + + + Disabled + ../../include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;_USRDLL;AUTHSTATE_EXPORTS;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebug + + + Level3 + EditAndContinue + + + true + $(OutDir)authstate.pdb + Windows + 0x22620000 + $(OutDir)authstate.lib + MachineX86 + + + + + MinSpace + ../../include;../../miranda/miranda/include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;_USRDLL;AUTHSTATE_EXPORTS;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + ProgramDatabase + + + NotSet + true + Windows + true + true + 0x22620000 + $(OutDir)authstate.lib + MachineX86 + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/contacts_rate/rate.vcxproj.filters b/contacts_rate/rate.vcxproj.filters new file mode 100644 index 0000000..5318863 --- /dev/null +++ b/contacts_rate/rate.vcxproj.filters @@ -0,0 +1,58 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx + + + {629d9113-01ed-4da4-8f68-76e949ebdb7b} + + + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + + + Resource Files + + + + + Resource Files + + + Resource Files + + + Resource Files + + + Docs + + + Docs + + + \ No newline at end of file diff --git a/contacts_rate/rate.vcxproj.user b/contacts_rate/rate.vcxproj.user new file mode 100644 index 0000000..695b5c7 --- /dev/null +++ b/contacts_rate/rate.vcxproj.user @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/contacts_rate/resource.h b/contacts_rate/resource.h new file mode 100644 index 0000000..3b27728 --- /dev/null +++ b/contacts_rate/resource.h @@ -0,0 +1,22 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by rate.rc +// +#define IDD_RATE_OPT 9 +#define IDI_RATEHI 101 +#define IDI_RATEME 102 +#define IDI_RATELO 103 +#define IDC_ADVICON 1001 +#define IDC_NOTMODERN_WARNING 1010 +#define IDC_USED_CLIST 1011 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 104 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1013 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif -- cgit v1.2.3