summaryrefslogtreecommitdiff
path: root/plugins/AsSingleWindow/src/AsSingleWindow.cpp
blob: 6ff1c083f4e572352baed3a2f9c8407ec094cb3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#include "stdafx.h"
#include "AsSingleWindow.h"
#include "Options.h"
#include "WindowsManager.h"
#include "version.h"

sPluginVars pluginVars;

CMPlugin g_plugin;
CLIST_INTERFACE *pcli;
int &hLangpack(g_plugin.m_hLang);

/////////////////////////////////////////////////////////////////////////////////////////

PLUGININFOEX pluginInfoEx = {
	 sizeof(PLUGININFOEX),
	 __PLUGIN_NAME,
	 PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
	 __DESCRIPTION,
	 __AUTHOR,
	 __COPYRIGHT,
	 __AUTHORWEB,
	 UNICODE_AWARE,
	 {0xF6C73B4, 0x2B2B, 0x711D, {0xFB, 0xB6, 0xBB, 0x26, 0x7D, 0xFD, 0x72, 0x08}}, // 0xF6C73B42B2B711DFBB6BB267DFD7208
};

CMPlugin::CMPlugin() :
	PLUGIN<CMPlugin>(MODULENAME, pluginInfoEx)
{}

extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
{
	return &pluginInfoEx;
}

/////////////////////////////////////////////////////////////////////////////////////////

static int MsgWindowEvent(WPARAM, LPARAM lParam)
{
	MessageWindowEventData* data = (MessageWindowEventData*)lParam;

	if (data == nullptr)
		return 0;

	switch (data->uType) {
	case MSG_WINDOW_EVT_OPEN:
		// Здесь можно отлавливать только открытие окна,
		// т.к. закрытие может быть закрытием вкладки
		windowAdd(data->hwndWindow, false);
		break;
	}

	return 0;
}

static int OnModulesLoaded(WPARAM, LPARAM)
{
	windowAdd(pcli->hwndContactList, true);

	HookEvent(ME_MSG_WINDOWEVENT, MsgWindowEvent);

	optionsLoad();
	return 0;
}

static int OnShutdown(WPARAM, LPARAM)
{
	for (auto itr = pluginVars.allWindows.begin(); itr != pluginVars.allWindows.end(); ++itr)
		mir_unsubclassWindow(itr->hWnd, wndProcSync);
	return 0;
}

extern "C" __declspec(dllexport) int Load(void)
{
	pcli = Clist_GetInterface();

	::InitializeCriticalSection(&pluginVars.m_CS);
	pluginVars.IsUpdateInProgress = false;
	HookEvent(ME_SYSTEM_MODULESLOADED, OnModulesLoaded);
	HookEvent(ME_SYSTEM_SHUTDOWN, OnShutdown);
	HookEvent(ME_OPT_INITIALISE, InitOptions);
	return 0;
}

/////////////////////////////////////////////////////////////////////////////////////////

extern "C" __declspec(dllexport) int Unload(void)
{
	::DeleteCriticalSection(&pluginVars.m_CS);
	return 0;
}