summaryrefslogtreecommitdiff
path: root/plugins/DbEditorPP/src/icons.cpp
blob: 3e388b72441eaf04e29854490fcf76abb100f299 (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
#include "stdafx.h"


int dbeIcons[] = {
	ICO_EMPTY,
	ICO_BINARY,
	ICO_BYTE,
	ICO_WORD,
	ICO_DWORD,
	ICO_STRING,
	ICO_UNICODE,
	ICO_HANDLE,
	ICO_SETTINGS,
	ICO_CLOSED,
	ICO_OPENED,
	ICO_CONTACTS,
	ICO_ONLINE,
	ICO_OFFLINE
};


IconItem iconList[] = {
	{ LPGEN("Main icon"), "DBE++_0", ICO_DBE_BUTT },
	{ LPGEN("Closed module"), "DBE++_1", ICO_CLOSED },
	{ LPGEN("Open module"), "DBE++_2", ICO_OPENED },
	{ LPGEN("Settings"), "DBE++_5", ICO_SETTINGS },
	{ LPGEN("Contacts group"), "DBE++_6", ICO_CONTACTS },
	{ LPGEN("Unknown contact"), "DBE++_7", ICO_OFFLINE },
	{ LPGEN("Known contact"), "DBE++_8", ICO_ONLINE },
	{ LPGEN("Open user tree"), "DBE++_9", ICO_REGUSER },
	{ LPGEN("Empty setting"), "DBE++10", ICO_EMPTY },
	{ LPGEN("BLOB setting"), "DBE++_BINARY", ICO_BINARY },
	{ LPGEN("Byte setting"), "DBE++_BYTE", ICO_BYTE },
	{ LPGEN("Word setting"), "DBE++_WORD", ICO_WORD },
	{ LPGEN("Dword setting"), "DBE++_DWORD", ICO_DWORD },
	{ LPGEN("String setting"), "DBE++_STRING", ICO_STRING },
	{ LPGEN("Unicode setting"), "DBE++_UNICODE", ICO_UNICODE },
	{ LPGEN("Handle"), "DBE++_HANDLE", ICO_HANDLE }
};



HANDLE GetIcoLibHandle(int icon)
{
	for (int i = 0; i < _countof(iconList); i++)
		if (iconList[i].defIconID == icon)
			return iconList[i].hIcolib;
	return INVALID_HANDLE_VALUE;
}

void IcoLibRegister(void)
{
	Icon_Register(hInst, modFullname, iconList, _countof(iconList));
}

HICON LoadSkinnedDBEIcon(int icon)
{
	for (int i = 0; i < _countof(iconList); i++)
		if (iconList[i].defIconID == icon)
			return IcoLib_GetIconByHandle(iconList[i].hIcolib);

	return LoadIcon(hInst, MAKEINTRESOURCE(icon));
}

HIMAGELIST LoadIcons()
{
	HICON hIcon;
	HIMAGELIST hil = ImageList_Create(16, 16, ILC_COLOR32 | ILC_MASK, _countof(dbeIcons), 5);
	if (!hil)
		return NULL;

	for(int i = 0; i < _countof(dbeIcons); i++)
		ImageList_AddIcon(hil, LoadSkinnedDBEIcon(dbeIcons[i]));

	int protoCount = 0;
	PROTOACCOUNT **protocols = NULL;
	Proto_EnumAccounts(&protoCount, &protocols);

	for (int i = 0; i < protoCount; i++) {
		if (!Proto_GetAccount(protocols[i]->szModuleName))
			ImageList_AddIcon(hil, LoadSkinnedDBEIcon(ICO_OFFLINE));
		else if (hIcon = Skin_LoadProtoIcon(protocols[i]->szModuleName, ID_STATUS_ONLINE))
			ImageList_AddIcon(hil, hIcon);
		else
			ImageList_AddIcon(hil, LoadSkinnedDBEIcon(ICO_ONLINE));
	}

	return hil;
}

int GetProtoIconIndex(const char *szProto)
{
	if (szProto && szProto[0]) {
		int protoCount = 0;
		PROTOACCOUNT **protocols = NULL;
		Proto_EnumAccounts(&protoCount, &protocols);

		for (int i = 0; i < protoCount; i++)
			if (!mir_strcmp(protocols[i]->szModuleName, szProto))
				return i + _countof(dbeIcons);

		if (Proto_GetAccount(szProto))
			return _countof(dbeIcons) - 2; // ICO_ONLINE;
	}
	return _countof(dbeIcons) - 1; // ICO_OFFLINE;
}