summaryrefslogtreecommitdiff
path: root/plugins/Non-IM Contact/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Non-IM Contact/src/main.cpp')
-rw-r--r--plugins/Non-IM Contact/src/main.cpp194
1 files changed, 0 insertions, 194 deletions
diff --git a/plugins/Non-IM Contact/src/main.cpp b/plugins/Non-IM Contact/src/main.cpp
deleted file mode 100644
index f2f7a15b28..0000000000
--- a/plugins/Non-IM Contact/src/main.cpp
+++ /dev/null
@@ -1,194 +0,0 @@
-//=====================================================
-// Includes
-//=====================================================
-
-#include "stdafx.h"
-
-#include "Version.h"
-
-CMPlugin g_plugin;
-
-INT_PTR doubleClick(WPARAM wParam, LPARAM)
-{
- char program[MAX_PATH], params[MAX_PATH];
- INT_PTR shellEXEerror = 0;
- char* proto = GetContactProto(wParam);
- if (proto && !mir_strcmp(proto, MODNAME)) {
- if (GetKeyState(VK_CONTROL) & 0x8000) // ctrl is pressed
- editContact(wParam, 0); // for later when i add a second double click setting
- else if (!db_get_static(wParam, MODNAME, "Program", program, _countof(program)) && mir_strcmp(program, "")) {
- if (db_get_static(wParam, MODNAME, "ProgramParams", params, _countof(params)))
- mir_strcpy(params, "");
- if (strstr(program, "http://") || strstr(program, "https://"))
- Utils_OpenUrl(program);
- else
- shellEXEerror = (INT_PTR)ShellExecuteA(nullptr, nullptr, program, params, nullptr, SW_SHOW); //ignore the warning, its M$'s backwards compatabilty screwup :)
- if (shellEXEerror == ERROR_FILE_NOT_FOUND || shellEXEerror == ERROR_PATH_NOT_FOUND)
- Utils_OpenUrl(program);
- }
- else editContact(wParam, 0);
- return 1;
- }
- return 0;
-}
-
-//=====================================================
-// Definitions
-//=====================================================
-int LCStatus = ID_STATUS_OFFLINE;
-//=====================================================
-
-//=====================================================
-// Name : MainInit
-// Parameters: wparam , lparam
-// Returns : int
-// Description : Called at very beginning of plugin
-//=====================================================
-//
-int NimcOptInit(WPARAM wParam, LPARAM)
-{
- OPTIONSDIALOGPAGE odp = {};
- odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPTIONS);
- odp.szGroup.a = LPGEN("Plugins");
- odp.szTitle.a = LPGEN("Non-IM Contacts");
- odp.pfnDlgProc = DlgProcNimcOpts;
- g_plugin.addOptions(wParam, &odp);
- return 0;
-}
-//=====================================================
-// Name : __declspec(dllexport) PLUGININFO* MirandaPluginInfo
-// Parameters: (DWORD mirandaVersion)
-// Returns :
-// Description : Sets plugin info
-//=====================================================
-
-PLUGININFOEX pluginInfoEx = {
- sizeof(pluginInfoEx),
- __PLUGIN_NAME,
- PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
- __DESCRIPTION,
- __AUTHOR,
- __COPYRIGHT,
- __AUTHORWEB,
- UNICODE_AWARE,
- //2e0d2ae3-e123-4607-8539-d4448d675ddb
- { 0x2e0d2ae3, 0xe123, 0x4607, {0x85, 0x39, 0xd4, 0x44, 0x8d, 0x67, 0x5d, 0xdb} }
-};
-
-CMPlugin::CMPlugin() :
- PLUGIN<CMPlugin>(MODNAME, pluginInfoEx)
-{
- RegisterProtocol(PROTOTYPE_VIRTUAL);
-}
-
-/////////////////////////////////////////////////////////////////////////////////////////
-
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = { MIID_PROTOCOL, MIID_LAST };
-
-//=====================================================
-// Name : WINAPI DllMain
-// Parameters: HINSTANCE hinst,DWORD fdwReason,LPVOID lpvReserved
-// Returns : BOOL
-// Description :
-//=====================================================
-
-int ModulesLoaded(WPARAM, LPARAM)
-{
- NetlibInit();
- return 0;
-}
-
-//=====================================================
-// Name : Load
-// Parameters: PLUGINLINK *link
-// Returns : int
-// Description : Called when plugin is loaded into Miranda
-//=====================================================
-
-IconItem iconList[] =
-{
- { LPGEN("Main Icon"), MODNAME, IDI_MAIN },
-};
-
-int CMPlugin::Load()
-{
- g_plugin.registerIcon(LPGEN("Non-IM Contact"), iconList);
-
- HookEvent(ME_CLIST_DOUBLECLICKED, (MIRANDAHOOK)doubleClick);
- HookEvent(ME_OPT_INITIALISE, NimcOptInit);
- HookEvent(ME_CLIST_STATUSMODECHANGE, SetLCStatus);
-
- // load services (the first 5 are the basic ones needed to make a new protocol)
- CreateProtoServiceFunction(MODNAME, PS_GETCAPS, GetLCCaps);
- CreateProtoServiceFunction(MODNAME, PS_GETNAME, GetLCName);
- CreateProtoServiceFunction(MODNAME, PS_LOADICON, LoadLCIcon);
- CreateProtoServiceFunction(MODNAME, PS_GETSTATUS, GetLCStatus);
-
- CreateServiceFunction("AddLCcontact", addContact);
- CreateServiceFunction("EditLCcontact", editContact);
- CreateServiceFunction("LoadFilesDlg", LoadFilesDlg);
- CreateServiceFunction("ExportLCcontacts", exportContacts);
- CreateServiceFunction("ImportLCcontacts", ImportContacts);
- CreateServiceFunction("TestStringReplaceLine", testStringReplacer);
- CreateServiceFunction("NIM_Contact/DoubleClick", doubleClick);
-
- CMenuItem mi(&g_plugin);
- mi.root = g_plugin.addRootMenu(MO_MAIN, LPGENW("&Non-IM Contact"), 600090000);
- Menu_ConfigureItem(mi.root, MCI_OPT_UID, "D7CE61C5-1178-41BA-B2ED-5A711BB21AE9");
-
- SET_UID(mi, 0x73c11266, 0x153c, 0x4da4, 0x9b, 0x82, 0x5c, 0xce, 0xca, 0x86, 0xd, 0x41);
- mi.position = 600090000;
- mi.name.a = LPGEN("&Add Non-IM Contact");
- mi.pszService = "AddLCcontact";
- mi.hIcolibItem = iconList[0].hIcolib;
- Menu_AddMainMenuItem(&mi);
-
- SET_UID(mi, 0xa511c5e, 0x26d2, 0x41b1, 0xbd, 0xb7, 0x3e, 0x62, 0xc8, 0x44, 0x37, 0xc9);
- mi.position = 600090001;
- mi.name.a = LPGEN("&View/Edit Files");
- mi.pszService = "LoadFilesDlg";
- Menu_AddMainMenuItem(&mi);
-
- if (g_plugin.getByte("Beta", 0)) {
- SET_UID(mi, 0x23051356, 0xad45, 0x4101, 0x8e, 0x11, 0xf6, 0x3a, 0xe8, 0xa3, 0xa5, 0x25);
- mi.position = 600090002;
- mi.name.a = LPGEN("&Export all Non-IM Contacts");
- mi.pszService = "ExportLCcontacts";
- Menu_AddMainMenuItem(&mi);
-
- SET_UID(mi, 0xf3c4ebed, 0x789c, 0x4293, 0xaa, 0xcb, 0x22, 0xdc, 0xd4, 0xe0, 0x3c, 0x41);
- mi.position = 600090003;
- mi.name.a = LPGEN("&Import Non-IM Contacts");
- mi.pszService = "ImportLCcontacts";
- Menu_AddMainMenuItem(&mi);
- }
-
- SET_UID(mi, 0xb653d5e0, 0xb1e6, 0x46fc, 0xa7, 0x82, 0x35, 0x95, 0x74, 0xb1, 0xc, 0xdd);
- mi.position = 600090000;
- mi.name.a = LPGEN("&String Maker");
- mi.pszService = "TestStringReplaceLine";
- Menu_AddMainMenuItem(&mi);
-
- SET_UID(mi, 0x1033e16d, 0x8a7c, 0x43db, 0xa9, 0x83, 0x56, 0x2f, 0x8a, 0x16, 0x7c, 0xe9);
- mi.root = nullptr;
- mi.position = -2000080000;
- mi.name.a = LPGEN("E&dit Contact Settings");
- mi.pszService = "EditLCcontact";
- Menu_AddContactMenuItem(&mi, MODNAME);
-
- HookEvent(ME_SYSTEM_MODULESLOADED, ModulesLoaded);
- return 0;
-}
-
-//=====================================================
-// Name : Unload
-// Parameters: void
-// Returns :
-// Description : Unloads plugin
-//=====================================================
-
-int CMPlugin::Unload()
-{
- killTimer();
- return 0;
-}