diff options
author | George Hazan <ghazan@miranda.im> | 2019-03-02 12:32:44 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-03-02 12:32:55 +0300 |
commit | 931a7dc1ac0dbc7e6c1083583ced915e572f5b47 (patch) | |
tree | 9fe9a6448d44030e26aa7107ce16044ed413e0d0 /plugins/GmailNotifier/src/main.cpp | |
parent | dd7d9954042254e66e3bbbec7195c6be8b1a0663 (diff) |
all protocols (even virtual ones) moved to the Protocols folder
Diffstat (limited to 'plugins/GmailNotifier/src/main.cpp')
-rw-r--r-- | plugins/GmailNotifier/src/main.cpp | 162 |
1 files changed, 0 insertions, 162 deletions
diff --git a/plugins/GmailNotifier/src/main.cpp b/plugins/GmailNotifier/src/main.cpp deleted file mode 100644 index 8131aaf905..0000000000 --- a/plugins/GmailNotifier/src/main.cpp +++ /dev/null @@ -1,162 +0,0 @@ -/*
-Miranda plugin template, originally by Richard Hughes
-http://miranda-icq.sourceforge.net/
-
-This file is placed in the public domain. Anybody is free to use or
-modify it as they wish with no restriction.
-There is no warranty.
-*/
-
-#include "stdafx.h"
-#include "version.h"
-
-CMPlugin g_plugin;
-
-UINT hTimer;
-HNETLIBUSER hNetlibUser;
-NOTIFYICONDATA niData;
-optionSettings opt;
-
-OBJLIST<Account> g_accs(1);
-BOOL optionWindowIsOpen = FALSE;
-short ID_STATUS_NONEW;
-
-/////////////////////////////////////////////////////////////////////////////////////////
-
-static PLUGININFOEX pluginInfoEx =
-{
- sizeof(PLUGININFOEX),
- __PLUGIN_NAME,
- PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
- __DESCRIPTION,
- __AUTHOR,
- __COPYRIGHT,
- __AUTHORWEB,
- UNICODE_AWARE,
- // {243955E0-75D9-4CC3-9B28-6F9C5AF4532D}
- { 0x243955e0, 0x75d9, 0x4cc3, { 0x9b, 0x28, 0x6f, 0x9c, 0x5a, 0xf4, 0x53, 0x2d } }
-};
-
-CMPlugin::CMPlugin() :
- PLUGIN<CMPlugin>(MODULENAME, pluginInfoEx)
-{
- RegisterProtocol(PROTOTYPE_VIRTUAL);
-}
-
-/////////////////////////////////////////////////////////////////////////////////////////
-
-INT_PTR GetCaps(WPARAM wParam, LPARAM)
-{
- if (wParam == PFLAGNUM_2 && opt.ShowCustomIcon)
- return PF2_ONLINE | PF2_LIGHTDND | PF2_SHORTAWAY;
-
- return 0;
-}
-
-INT_PTR GetStatus(WPARAM, LPARAM)
-{
- return ID_STATUS_ONLINE;
-}
-
-INT_PTR GetName(WPARAM wParam, LPARAM lParam)
-{
- mir_strncpy((char*)lParam, MODULENAME, wParam);
- return 0;
-}
-
-void CALLBACK TimerProc(HWND, UINT, UINT_PTR, DWORD)
-{
- PluginMenuCommand(0, 0);
-}
-
-INT_PTR PluginMenuCommand(WPARAM hContact, LPARAM)
-{
- if (!optionWindowIsOpen)
- mir_forkthread(Check_ThreadFunc, GetAccountByContact(hContact));
-
- return 0;
-}
-
-static int OnMirandaStart(WPARAM, LPARAM)
-{
- PluginMenuCommand(0, 0);
- return 0;
-}
-
-int CMPlugin::Load()
-{
- g_plugin.addSound("Gmail", LPGENW("Other"), LPGENW("Gmail: New thread(s)"));
- HookEvent(ME_CLIST_DOUBLECLICKED, OpenBrowser);
-
- NETLIBUSER nlu = {};
- nlu.flags = NUF_OUTGOING | NUF_HTTPCONNS | NUF_NOHTTPSOPTION | NUF_UNICODE;
- nlu.szSettingsModule = MODULENAME;
- nlu.szDescriptiveName.w = TranslateT("Gmail Notifier connection");
- hNetlibUser = Netlib_RegisterUser(&nlu);
-
- CreateProtoServiceFunction(MODULENAME, PS_GETCAPS, GetCaps);
- CreateProtoServiceFunction(MODULENAME, PS_GETSTATUS, GetStatus);
- CreateProtoServiceFunction(MODULENAME, PS_GETNAME, GetName);
- CreateServiceFunction("GmailMNotifier/Notifying", Notifying);
-
- opt.circleTime = g_plugin.getDword("circleTime", 30);
- opt.notifierOnTray = g_plugin.getDword("notifierOnTray", TRUE);
- opt.notifierOnPop = g_plugin.getDword("notifierOnPop", TRUE);
- opt.popupDuration = g_plugin.getDword("popupDuration", -1);
- opt.popupBgColor = g_plugin.getDword("popupBgColor", RGB(173, 206, 247));
- opt.popupTxtColor = g_plugin.getDword("popupTxtColor", RGB(0, 0, 0));
- opt.OpenUsePrg = g_plugin.getDword("OpenUsePrg", 0);
- opt.ShowCustomIcon = g_plugin.getDword("ShowCustomIcon", FALSE);
- opt.UseOnline = g_plugin.getDword("UseOnline", FALSE);
- opt.AutoLogin = g_plugin.getDword("AutoLogin", TRUE);
- opt.LogThreads = g_plugin.getDword("LogThreads", FALSE);
-
- DBVARIANT dbv;
- if (db_get_s(0, "SkinIcons", "core_status_" MODULENAME "4", &dbv)) {
- db_set_s(0, "SkinIcons", "core_status_" MODULENAME "0", "plugins\\GmailNotifier.dll,2");
- db_set_s(0, "SkinIcons", "core_status_" MODULENAME "1", "plugins\\GmailNotifier.dll,2");
- db_set_s(0, "SkinIcons", "core_status_" MODULENAME "2", "plugins\\GmailNotifier.dll,0");
- db_set_s(0, "SkinIcons", "core_status_" MODULENAME "4", "plugins\\GmailNotifier.dll,1");
- }
- else db_free(&dbv);
-
- BuildList();
- ID_STATUS_NONEW = opt.UseOnline ? ID_STATUS_ONLINE : ID_STATUS_OFFLINE;
- for (auto &it : g_accs)
- db_set_dw(it->hContact, MODULENAME, "Status", ID_STATUS_NONEW);
-
- hTimer = SetTimer(nullptr, 0, opt.circleTime * 60000, TimerProc);
- HookEvent(ME_SYSTEM_MODULESLOADED, OnMirandaStart);
- HookEvent(ME_OPT_INITIALISE, OptInit);
-
- CreateServiceFunction(MODULENAME "/MenuCommand", PluginMenuCommand);
-
- CMenuItem mi(&g_plugin);
- SET_UID(mi, 0xbe16f37, 0x17be, 0x4494, 0xaa, 0xb2, 0x3a, 0xa7, 0x38, 0xfa, 0xf9, 0xcc);
- mi.position = -0x7FFFFFFF;
- mi.hIcolibItem = Skin_LoadProtoIcon(MODULENAME, ID_STATUS_ONLINE);
- mi.name.a = LPGEN("&Check all Gmail inboxes");
- mi.pszService = MODULENAME "/MenuCommand";
- Menu_AddMainMenuItem(&mi);
-
- SET_UID(mi, 0x22c6ace1, 0xba0c, 0x44b5, 0xa4, 0xd2, 0x1, 0x7d, 0xb1, 0xe0, 0x51, 0xeb);
- mi.name.a = LPGEN("&Check Gmail inbox");
- mi.pszService = "/MenuCommand";
- Menu_AddContactMenuItem(&mi, MODULENAME);
- return 0;
-}
-
-/////////////////////////////////////////////////////////////////////////////////////////
-
-int CMPlugin::Unload()
-{
- if (hTimer)
- KillTimer(nullptr, hTimer);
-
- for (auto &it : g_accs)
- DeleteResults(it->results.next);
- g_accs.destroy();
-
- Netlib_CloseHandle(hNetlibUser);
- return 0;
-}
|