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
|
#include "stdafx.h"
MyColourID colors[] =
{
{ "Incoming Messages", "ColorMsgIn", RGB(0xff, 0xff, 0xff) },
{ "Outgoing Messages", "ColorMsgOut", RGB(0xff, 0xff, 0xff) },
{ "Incoming Files", "ColorFileIn", RGB(0xff, 0xff, 0xff) },
{ "Outgoing Files", "ColorFileOut", RGB(0xff, 0xff, 0xff) },
{ "Incoming URLs", "ColorURLIn", RGB(0xff, 0xff, 0xff) },
{ "Outgoing URLs", "ColorURLOut", RGB(0xff, 0xff, 0xff) },
{ "Status changes", "ColorStatus", RGB(0xff, 0xff, 0xff) },
{ "Other Outgoing Events", "ColorOut", RGB(0xff, 0xff, 0xff) },
{ "Other Incoming Events", "ColorIn", RGB(0xff, 0xff, 0xff) },
{ "Selected Items", "ColorSel", RGB(0x60, 0x60, 0x60) },
{ "Selected Items (Text)", "ColorSelTxt", RGB(0xff, 0xff, 0xff) }
};
MyFontID fonts[] =
{
{ "Incoming Messages", "FontMsgIn" },
{ "Outgoing Messages", "FontMsgOut" },
{ "Incoming Files", "FontFileIn" },
{ "Outgoing Files", "FontFileOut" },
{ "Incoming URLs", "FontURLIn" },
{ "Outgoing URLs", "FontURLOut" },
{ "Status changes", "FontStatus" },
{ "Other Outgoing Events", "FontOut" },
{ "Other Incoming Events", "FontIn" }
};
int evtFontsChanged(WPARAM, LPARAM)
{
for (auto &it : colors)
it.cl = Colour_Get(MODULENAME, it.szName);
for (auto &it : fonts) {
it.cl = (COLORREF)Font_Get(MODULENAME, it.szName, &it.lf);
DeleteObject(it.hfnt);
it.hfnt = CreateFontIndirectA(&it.lf);
}
// WindowList_Broadcast(hNewstoryWindows, UM_REDRAWLISTH, 0, 0);
return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
void InitFonts()
{
HookEvent(ME_FONT_RELOAD, evtFontsChanged);
HookEvent(ME_COLOUR_RELOAD, evtFontsChanged);
ColourID cid = {};
strncpy_s(cid.group, MODULENAME, _TRUNCATE);
strncpy_s(cid.dbSettingsGroup, MODULENAME, _TRUNCATE);
for (auto &it : colors) {
cid.order = int(&it - colors);
strncpy_s(cid.name, it.szName, _TRUNCATE);
strncpy_s(cid.setting, it.szSetting, _TRUNCATE);
cid.defcolour = it.defaultValue;
g_plugin.addColor(&cid);
it.cl = Colour_Get(cid.group, cid.name);
}
FontID fontid = {};
strncpy_s(fontid.group, MODULENAME, _TRUNCATE);
strncpy_s(fontid.dbSettingsGroup, MODULENAME, _TRUNCATE);
for (auto &it : fonts) {
fontid.order = int(&it - fonts);
strncpy_s(fontid.name, it.szName, _TRUNCATE);
strncpy_s(fontid.setting, it.szSetting, _TRUNCATE);
g_plugin.addFont(&fontid);
it.cl = Font_Get(MODULENAME, it.szName, &it.lf);
it.hfnt = CreateFontIndirectA(&it.lf);
}
}
void DestroyFonts()
{
for (auto &it : fonts)
DeleteObject(it.hfnt);
}
|