summaryrefslogtreecommitdiff
path: root/plugins/NewStory/src/main.cpp
blob: f271bf1f4013d14c4287f9cccf82220432156878 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/*
Copyright (c) 2005 Victor Pavlychko (nullbyte@sotline.net.ua)
Copyright (C) 2012-24 Miranda NG team (https://miranda-ng.org)

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 version 2
of the License.

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, see <http://www.gnu.org/licenses/>.
*/

#include "stdafx.h"

#pragma comment(lib, "gdiplus.lib")

CMPlugin g_plugin;

CMOption<bool> g_bOptGrouping(MODULENAME, "MessageGrouping", false);
CMOption<bool> g_bOptDrawEdge(MODULENAME, "DrawEdge", true);
CMOption<bool> g_bOptHppCompat(MODULENAME, "HppCompat", false);

CMOption<bool> g_bShowType(MODULENAME, "ShowType", true);
CMOption<bool> g_bShowPreview(MODULENAME, "ShowPreview", true);
CMOption<bool> g_bShowDirection(MODULENAME, "ShowDirection", true);

CMOption<uint32_t> g_clCustom0(MODULENAME, "CustomColor0", -1);
CMOption<uint32_t> g_clCustom1(MODULENAME, "CustomColor1", -1);
CMOption<uint32_t> g_clCustom2(MODULENAME, "CustomColor2", -1);
CMOption<uint32_t> g_clCustom3(MODULENAME, "CustomColor3", -1);
CMOption<uint32_t> g_clCustom4(MODULENAME, "CustomColor4", -1);

CMOption<int> g_iPreviewHeight(MODULENAME, "PreviewHeight", 300);

MWindowList g_hNewstoryWindows = 0, g_hNewstoryLogs = 0;

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

PLUGININFOEX pluginInfoEx =
{
	sizeof(PLUGININFOEX),
	__PLUGIN_NAME,
	PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
	__DESCRIPTION,
	__AUTHOR,
	__COPYRIGHT,
	__AUTHORWEB,
	UNICODE_AWARE,
	// {1AD11C86-CAAB-4372-A0A4-8B1168D51B9E}
	{ 0x1ad11c86, 0xcaab, 0x4372, { 0xa0, 0xa4, 0x8b, 0x11, 0x68, 0xd5, 0x1b, 0x9e } }
};

CMPlugin::CMPlugin() :
	PLUGIN<CMPlugin>(MODULENAME, pluginInfoEx),
	bOptVScroll(MODULENAME, "VScroll", true),
	bSortAscending(MODULENAME, "SortAscending", true)
{}

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

extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = { MIID_UIHISTORY, MIID_LAST };

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

static IconItem icons[] =
{
	{ LPGEN("Main icon"), "main", IDI_NEWSTORY },
	{ LPGEN("User info"), "userinfo", IDI_USERINFO },
	{ LPGEN("User menu"), "usermenu", IDI_USERMENU },
	{ LPGEN("Search"), "search", IDI_SEARCH },
	{ LPGEN("Options"), "options", IDI_OPTIONS },
	{ LPGEN("Filter"), "filter", IDI_FILTER },
	{ LPGEN("Export"), "export", IDI_EXPORT },
	{ LPGEN("Copy"), "copy", IDI_COPY },
	{ LPGEN("Reply"), "reply", IDI_REPLY },
	{ LPGEN("Bookmark"), "bookmark", IDI_BOOKMARK },
	{ LPGEN("Send message"), "message", IDI_SENDMSG },

	{ LPGEN("Incoming message"), "msgin", IDI_MSGIN },
	{ LPGEN("Outgoing message"), "msgout", IDI_MSGOUT },
	{ LPGEN("User signed in"), "signin", IDI_SIGNIN },
	{ LPGEN("Unknown event"), "unknown", IDI_UNKNOWN },

	{ LPGEN("Find previous"), "findprev", IDI_FINDPREV },
	{ LPGEN("Find next"), "findnext", IDI_FINDNEXT },
	{ LPGEN("Jump to date"), "calendar", IDI_CALENDAR },
	{ LPGEN("Conversations"), "timetree", IDI_TIMETREE },
	{ LPGEN("All results"), "users", IDI_USERS },

	{ LPGEN("Template group"), "tplgroup", IDI_TPLGROUP },
	{ LPGEN("Cancel edit"), "reset", IDI_RESET },
	{ LPGEN("Downloaded"), "downloaded", IDI_OK },
	{ LPGEN("Delivered"), "delivered", IDI_DELIVERED },
	{ LPGEN("Remote read"), "remoteread", IDI_REMOTEREAD },
	{ LPGEN("Help"), "varhelp", IDI_VARHELP }
};

static int evtEventAdded(WPARAM hContact, LPARAM lParam)
{
	return SmartSendEvent(UM_ADD_EVENT, hContact, lParam);
}

static int evtEventDeleted(WPARAM hContact, LPARAM hEvent)
{
	return (g_plugin.bDisableDelete) ? 0 : SmartSendEvent(UM_REMOVE_EVENT, hContact, hEvent);
}

static int evtEventDelivered(WPARAM hContact, LPARAM hEvent)
{
	return SmartSendEvent(UM_DELIVER_EVENT, hContact, hEvent);
}

static int evtEventEdited(WPARAM hContact, LPARAM lParam)
{
	return SmartSendEvent(UM_EDIT_EVENT, hContact, lParam);
}

static int evtTopToolbar(WPARAM, LPARAM)
{
	// TopToolbar button
	TTBButton ttb = {};
	ttb.dwFlags = TTBBF_VISIBLE;
	ttb.pszService = "NewStory/GlobalSearch";
	ttb.name = LPGEN("Global search");
	ttb.hIconHandleUp = g_plugin.getIconHandle(IDI_NEWSTORY);
	g_plugin.addTTB(&ttb);
	return 0;
}

static int evtModuleLoaded(WPARAM, LPARAM)
{
	g_plugin.bHasSmileys = ServiceExists(MS_SMILEYADD_BATCHPARSE);
	return 0;
}

static int evtModulesLoaded(WPARAM, LPARAM)
{
	HookEvent(ME_TTB_MODULELOADED, evtTopToolbar);
	HookEvent(ME_SYSTEM_MODULELOAD, evtModuleLoaded);
	HookEvent(ME_SYSTEM_MODULEUNLOAD, evtModuleLoaded);
	evtModuleLoaded(0, 0);

	InitFonts();
	InitNewstoryControl();
	LoadTemplates();
	return 0;
}

static int evtPreShutdown(WPARAM, LPARAM)
{
	WindowList_Broadcast(g_hNewstoryWindows, WM_CLOSE, 0, 0);
	return 0;
}

void CMPlugin::LoadOptions()
{
	bShowType = g_bShowType;
	bDrawEdge = g_bOptDrawEdge;
	bHppCompat = g_bOptHppCompat;
	bShowPreview = g_bShowPreview;
	bMsgGrouping = g_bOptGrouping;
	bShowDirection = g_bShowDirection;

	clCustom[0] = g_clCustom0;
	clCustom[1] = g_clCustom1;
	clCustom[2] = g_clCustom2;
	clCustom[3] = g_clCustom3;
	clCustom[4] = g_clCustom4;
}

int CMPlugin::Load()
{
	registerIcon(MODULETITLE, icons);

	GdiplusStartupInput gdiplusStartupInput;
	GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);

	m_pNoImage = LoadImageFromResource(getInst(), IDI_NO_IMAGE, L"PNG");
	LoadOptions();

	m_log = RegisterSrmmLog(this, MODULETITLE, _T(MODULENAME), NewStory_Stub);

	g_hNewstoryLogs = WindowList_Create();
	g_hNewstoryWindows = WindowList_Create();

	HookEvent(ME_DB_EVENT_ADDED, evtEventAdded);
	HookEvent(ME_DB_EVENT_DELETED, evtEventDeleted);
	HookEvent(ME_DB_EVENT_DELIVERED, evtEventDelivered);
	HookEvent(ME_DB_EVENT_EDITED, evtEventEdited);
	HookEvent(ME_DB_EVENT_SETJSON, evtEventEdited);
	HookEvent(ME_OPT_INITIALISE, OptionsInitialize);
	HookEvent(ME_SYSTEM_MODULESLOADED, evtModulesLoaded);
	HookEvent(ME_SYSTEM_PRESHUTDOWN, evtPreShutdown);

	InitMenus();
	InitHotkeys();
	InitServices();
	return 0;
}

int CMPlugin::Unload()
{
	WindowList_Destroy(g_hNewstoryLogs);
	WindowList_Destroy(g_hNewstoryWindows);

	GdiplusShutdown(m_gdiplusToken);

	UnregisterSrmmLog(m_log);
	UnregisterClass(_T(NEWSTORYLIST_CLASS), g_plugin.getInst());
	DestroyFonts();
	return 0;
}