summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/mlua_icons.cpp
blob: 64648484ed3e6c597cd810a603d27a489fed3a29 (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
#include "stdafx.h"

IconItem Icons[] =
{
	{ LPGEN("Script"), "script", IDI_SCRIPT },
	{ LPGEN("Loaded"), "loaded", IDI_LOADED },
	{ LPGEN("Failed"), "failed", IDI_FAILED },
	{ LPGEN("Open"),   "open",   IDI_OPEN   },
	{ LPGEN("Reload"), "reload", IDI_RELOAD },
};

void InitIcons()
{
	Icon_Register(g_hInstance, MODULE, Icons, _countof(Icons), MODULE);
}

HICON GetIcon(int iconId)
{
	for (auto &it : Icons)
		if (it.defIconID == iconId)
			return IcoLib_GetIconByHandle(it.hIcolib);

	return nullptr;
}

HANDLE GetIconHandle(int iconId)
{
	for (auto &it : Icons)
		if (it.defIconID == iconId)
			return it.hIcolib;

	return nullptr;
}