diff options
author | George Hazan <ghazan@miranda.im> | 2018-08-15 12:52:57 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-08-15 12:52:57 +0300 |
commit | 1994b049171247976e7515127c0578db0be46dad (patch) | |
tree | adfb0df213be0d9d353e304243a0d1c584552ff5 /plugins/Boltun/src | |
parent | 5c70a399598e4b0665fc194f1d6c5b3c2cae9972 (diff) |
fixes #1544 (Boltun's menus appear everywhere)
Diffstat (limited to 'plugins/Boltun/src')
-rw-r--r-- | plugins/Boltun/src/boltun.cpp | 84 | ||||
-rw-r--r-- | plugins/Boltun/src/stdafx.h | 2 | ||||
-rw-r--r-- | plugins/Boltun/src/version.h | 14 |
3 files changed, 45 insertions, 55 deletions
diff --git a/plugins/Boltun/src/boltun.cpp b/plugins/Boltun/src/boltun.cpp index 54aa5a2287..c908284fea 100644 --- a/plugins/Boltun/src/boltun.cpp +++ b/plugins/Boltun/src/boltun.cpp @@ -41,7 +41,8 @@ static HGENMENU hMenuItemAutoChat, hMenuItemNotToChat, hMenuItemStartChatting; /////////////////////////////////////////////////////////////////////////////////////////
-PLUGININFOEX pluginInfoEx = {
+PLUGININFOEX pluginInfoEx =
+{
sizeof(PLUGININFOEX),
__PLUGIN_NAME,
PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
@@ -51,7 +52,7 @@ PLUGININFOEX pluginInfoEx = { __AUTHORWEB,
UNICODE_AWARE,
// {488C5C84-56DA-434F-96F1-B18900DEF760}
-{ 0x488c5c84, 0x56da, 0x434f,{ 0x96, 0xf1, 0xb1, 0x89, 0x0, 0xde, 0xf7, 0x60 } }
+ { 0x488c5c84, 0x56da, 0x434f,{ 0x96, 0xf1, 0xb1, 0x89, 0x0, 0xde, 0xf7, 0x60 }}
};
CMPlugin::CMPlugin() :
@@ -491,13 +492,16 @@ static INT_PTR ContactClickStartChatting(WPARAM hContact, LPARAM) return 0;
}
-static int MessagePrebuild(WPARAM hContact, LPARAM)
+static int OnContactMenuPrebuild(WPARAM hContact, LPARAM)
{
- if (!blInit || (db_get_b(hContact, "CList", "NotOnList", 0) == 1)) {
- Menu_EnableItem(hMenuItemAutoChat, false);
- Menu_EnableItem(hMenuItemNotToChat, false);
- }
- else {
+ INT_PTR flags = CallProtoService(GetContactProto(hContact), PS_GETCAPS, PFLAGNUM_1);
+
+ bool bEnable = blInit && !db_get_b(hContact, "CList", "NotOnList", 0) && (flags & PF1_IM) != 0;
+ Menu_ShowItem(hMenuItemAutoChat, bEnable);
+ Menu_ShowItem(hMenuItemNotToChat, bEnable);
+ Menu_ShowItem(hMenuItemStartChatting, bEnable);
+
+ if (bEnable) {
if (db_get_b(hContact, BOLTUN_KEY, DB_CONTACT_BOLTUN_AUTO_CHAT, FALSE))
Menu_ModifyItem(hMenuItemAutoChat, nullptr, Skin_LoadIcon(SKINICON_OTHER_TICK), CMIF_CHECKED);
else
@@ -520,34 +524,32 @@ int CMPlugin::Load() HookEvent(ME_OPT_INITIALISE, MessageOptInit);
/*initialize miranda hooks and services*/
HookEvent(ME_DB_EVENT_ADDED, MessageEventAdded);
- HookEvent(ME_CLIST_PREBUILDCONTACTMENU, MessagePrebuild);
+ HookEvent(ME_CLIST_PREBUILDCONTACTMENU, OnContactMenuPrebuild);
CreateServiceFunction(SERV_CONTACT_AUTO_CHAT, ContactClickAutoChat);
CreateServiceFunction(SERV_CONTACT_NOT_TO_CHAT, ContactClickNotToChat);
CreateServiceFunction(SERV_CONTACT_START_CHATTING, ContactClickStartChatting);
- {
- CMenuItem mi(&g_plugin);
-
- SET_UID(mi, 0xea31f628, 0x1445, 0x4b62, 0x98, 0x19, 0xce, 0x15, 0x81, 0x49, 0xa, 0xbd);
- mi.position = -50010002; //TODO: check the warning
- mi.name.a = BOLTUN_AUTO_CHAT;
- mi.pszService = SERV_CONTACT_AUTO_CHAT;
- hMenuItemAutoChat = Menu_AddContactMenuItem(&mi);
-
- SET_UID(mi, 0x726af984, 0x988c, 0x4d5d, 0x97, 0x30, 0xdc, 0x46, 0x55, 0x76, 0x1, 0x73);
- mi.position = -50010001; //TODO: check the warning
- mi.name.a = BOLTUN_NOT_TO_CHAT;
- mi.pszService = SERV_CONTACT_NOT_TO_CHAT;
- hMenuItemNotToChat = Menu_AddContactMenuItem(&mi);
-
- SET_UID(mi, 0x9e0117f3, 0xb7df, 0x4f1b, 0xae, 0xec, 0xc4, 0x72, 0x59, 0x72, 0xc8, 0x58);
- mi.flags = CMIF_NOTOFFLINE;
- mi.position = -50010000; //TODO: check the warning
- mi.hIcolibItem = LoadIcon(GetModuleHandle(nullptr), MAKEINTRESOURCE(IDI_RECVMSG));
- mi.name.a = BOLTUN_START_CHATTING;
- mi.pszService = SERV_CONTACT_START_CHATTING;
- hMenuItemStartChatting = Menu_AddContactMenuItem(&mi);
- }
+
+ CMenuItem mi(&g_plugin);
+ SET_UID(mi, 0xea31f628, 0x1445, 0x4b62, 0x98, 0x19, 0xce, 0x15, 0x81, 0x49, 0xa, 0xbd);
+ mi.position = -50010002; //TODO: check the warning
+ mi.name.a = BOLTUN_AUTO_CHAT;
+ mi.pszService = SERV_CONTACT_AUTO_CHAT;
+ hMenuItemAutoChat = Menu_AddContactMenuItem(&mi);
+
+ SET_UID(mi, 0x726af984, 0x988c, 0x4d5d, 0x97, 0x30, 0xdc, 0x46, 0x55, 0x76, 0x1, 0x73);
+ mi.position = -50010001; //TODO: check the warning
+ mi.name.a = BOLTUN_NOT_TO_CHAT;
+ mi.pszService = SERV_CONTACT_NOT_TO_CHAT;
+ hMenuItemNotToChat = Menu_AddContactMenuItem(&mi);
+
+ SET_UID(mi, 0x9e0117f3, 0xb7df, 0x4f1b, 0xae, 0xec, 0xc4, 0x72, 0x59, 0x72, 0xc8, 0x58);
+ mi.flags = CMIF_NOTOFFLINE;
+ mi.position = -50010000; //TODO: check the warning
+ mi.hIcolibItem = LoadIcon(GetModuleHandle(nullptr), MAKEINTRESOURCE(IDI_RECVMSG));
+ mi.name.a = BOLTUN_START_CHATTING;
+ mi.pszService = SERV_CONTACT_START_CHATTING;
+ hMenuItemStartChatting = Menu_AddContactMenuItem(&mi);
int line;
blInit = LoadMind(Config.MindFileName, line);
@@ -565,21 +567,9 @@ int CMPlugin::Unload() {
if (pTimer)
KillTimer(nullptr, pTimer);
- if (blInit) {
- #if 0 //No need to save, we don't have studying algorithm
- if (Config.MindFileName && !SaveMind(Config.MindFileName)) {
- //This causes errors with development core when calling MessageBox.
- //It seems that it's now a Boltun problem.
- //So in case of saving error we will remain silent
- #if 0
- wchar_t path[MAX_PATH];
- mir_snwprintf(path, TranslateW(FAILED_TO_SAVE_BASE), (const wchar_t*)Config.MindFileName);
- wchar_t* err = TranslateW(BOLTUN_ERROR);
- MessageBox(NULL, path, err, MB_ICONERROR | MB_TASKMODAL | MB_OK); */
- #endif
- }
- #endif
+
+ if (blInit)
delete bot;
- }
+
return 0;
}
diff --git a/plugins/Boltun/src/stdafx.h b/plugins/Boltun/src/stdafx.h index 0fb747b3cf..8af454330c 100644 --- a/plugins/Boltun/src/stdafx.h +++ b/plugins/Boltun/src/stdafx.h @@ -32,7 +32,7 @@ #include <newpluginapi.h>
#include <m_clist.h>
-#include <m_system.h>
+#include <m_protosvc.h>
#include <m_database.h>
#include <m_genmenu.h>
#include <m_options.h>
diff --git a/plugins/Boltun/src/version.h b/plugins/Boltun/src/version.h index 2597b1cf34..f43137d4cf 100644 --- a/plugins/Boltun/src/version.h +++ b/plugins/Boltun/src/version.h @@ -1,13 +1,13 @@ -#define __MAJOR_VERSION 0 -#define __MINOR_VERSION 0 +#define __MAJOR_VERSION 0 +#define __MINOR_VERSION 0 #define __RELEASE_NUM 3 -#define __BUILD_NUM 0 +#define __BUILD_NUM 1 #include <stdver.h> #define __PLUGIN_NAME "Boltun" #define __FILENAME "Boltun.dll" -#define __DESCRIPTION "Boltun, the chat bot in the russian language." -#define __AUTHOR "Alexander S. Kiselev, Valentin Pavlyuchenko" -#define __AUTHORWEB "https://miranda-ng.org/p/Boltun/" -#define __COPYRIGHT "© 2003-2008 Alexander S. Kiselev A.K.A. KAS, Valentin Pavlyuchenko" +#define __DESCRIPTION "Boltun, the chat bot in the russian language." +#define __AUTHOR "Alexander S. Kiselev, Valentin Pavlyuchenko" +#define __AUTHORWEB "https://miranda-ng.org/p/Boltun/" +#define __COPYRIGHT "© 2003-2008 Alexander S. Kiselev A.K.A. KAS, Valentin Pavlyuchenko" |