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

static int lua_AddIcon(lua_State *L)
{
	TCHAR filePath[MAX_PATH];
	GetModuleFileName(g_hInstance, filePath, SIZEOF(filePath));

	char iconName[MAX_PATH];
	mir_snprintf(iconName, SIZEOF(iconName), "%s_%s", MODULE, luaL_checkstring(L, 1));

	SKINICONDESC si = { 0 };
	si.flags = SIDF_PATH_TCHAR;
	si.pszName = iconName;
	si.description.a = (char*)lua_tostring(L, 2);
	si.section.a = lua_isnone(L, 3) ? "MirLua" : (char*)lua_tostring(L, 3);
	si.defaultFile.t = filePath;
	si.iDefaultIndex = -IDI_ICON;

	HANDLE res = ::Skin_AddIcon(&si);
	lua_pushlightuserdata(L, res);

	return 1;
}

static int lua_GetIcon(lua_State *L)
{
	char iconName[MAX_PATH];
	mir_snprintf(iconName, SIZEOF(iconName), "%s_%s", MODULE, luaL_checkstring(L, 1));

	HANDLE res = ::Skin_GetIconHandle(iconName);
	lua_pushlightuserdata(L, res);

	return 1;
}

static int lua_RemoveIcon(lua_State *L)
{
	INT_PTR res = 0;
	
	if (lua_isuserdata(L, 1))
		res = ::CallService(MS_SKIN2_REMOVEICON, (WPARAM)lua_touserdata(L, 1), 0);
	else if (lua_isstring(L, 1))
	{
		char iconName[MAX_PATH];
		mir_snprintf(iconName, SIZEOF(iconName), "%s_%s", MODULE, lua_tostring(L, 1));
		res = ::CallService(MS_SKIN2_REMOVEICON, 0, (LPARAM)iconName);
	}
	else
		res = 1;

	lua_pushinteger(L, res);

	return 1;
}

static luaL_Reg icolibApi[] =
{
	{ "AddIcon", lua_AddIcon },
	{ "GetIcon", lua_GetIcon },
	{ "RemoveIcon", lua_RemoveIcon },

	{ NULL, NULL }
};

LUAMOD_API int luaopen_m_icolib(lua_State *L)
{
	luaL_newlib(L, icolibApi);

	return 1;
}