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

static BBButton* MakeBBButton(lua_State *L)
{
	BBButton *tbb = (BBButton*)mir_calloc(sizeof(BBButton));
	tbb->cbSize = sizeof(BBButton);
	tbb->dwDefPos = 100;

	lua_pushstring(L, "Module");
	lua_gettable(L, -2);
	tbb->pszModuleName = mir_utf8decode((char*)luaL_checkstring(L, -1), NULL);
	lua_pop(L, 1);

	lua_pushstring(L, "ButtonID");
	lua_gettable(L, -2);
	tbb->dwButtonID = luaL_checkinteger(L, -1);
	lua_pop(L, 1);

	lua_pushstring(L, "Flags");
	lua_gettable(L, -2);
	tbb->bbbFlags = lua_tointeger(L, -1);
	lua_pop(L, 1);

	if ((tbb->bbbFlags & BBBF_ANSITOOLTIP))
		tbb->bbbFlags &= ~BBBF_ANSITOOLTIP;

	lua_pushstring(L, "Tooltip");
	lua_gettable(L, -2);
	tbb->ptszTooltip = mir_utf8decodeT((char*)lua_tostring(L, -1));
	lua_pop(L, 1);

	lua_pushstring(L, "Icon");
	lua_gettable(L, -2);
	tbb->hIcon = (HANDLE)lua_touserdata(L, -1);
	lua_pop(L, 1);

	return tbb;
}

static int lua_AddButton(lua_State *L)
{
	if (lua_type(L, 1) != LUA_TTABLE)
	{
		lua_pushlightuserdata(L, 0);
		return 1;
	}

	mir_ptr<BBButton> bbb(MakeBBButton(L));

	INT_PTR res = ::CallService(MS_BB_ADDBUTTON, 0, (LPARAM)bbb);
	lua_pushinteger(L, res);


	return 1;
}

static int lua_ModifyButton(lua_State *L)
{
	if (lua_type(L, 1) != LUA_TTABLE)
	{
		lua_pushlightuserdata(L, 0);
		return 1;
	}

	mir_ptr<BBButton> bbb(MakeBBButton(L));

	INT_PTR res = ::CallService(MS_BB_MODIFYBUTTON, 0, (LPARAM)bbb);
	lua_pushinteger(L, res);

	return 1;
}

static int lua_RemoveButton(lua_State *L)
{
	BBButton bbb = { sizeof(BBButton) };
	bbb.pszModuleName = mir_utf8decode((char*)luaL_checkstring(L, 1), NULL);
	bbb.dwButtonID = luaL_checkinteger(L, 2);

	INT_PTR res = ::CallService(MS_BB_REMOVEBUTTON, 0, (LPARAM)&bbb);
	lua_pushinteger(L, res);

	mir_free(bbb.pszModuleName);

	return 1;
}

int ButtonPressedHookEventObjParam(void *obj, WPARAM wParam, LPARAM lParam, LPARAM param)
{
	lua_State *L = (lua_State*)obj;

	int ref = param;
	lua_rawgeti(L, LUA_REGISTRYINDEX, ref);

	lua_pushnumber(L, wParam);
	
	CustomButtonClickData *bcd = (CustomButtonClickData*)lParam;

	lua_newtable(L);
	lua_pushstring(L, "Module");
	lua_pushstring(L, ptrA(mir_utf8encode(bcd->pszModule)));
	lua_settable(L, -3);
	lua_pushstring(L, "ButtonID");
	lua_pushinteger(L, bcd->dwButtonId);
	lua_settable(L, -3);
	lua_pushstring(L, "hContact");
	lua_pushinteger(L, bcd->hContact);
	lua_settable(L, -3);
	lua_pushstring(L, "Flags");
	lua_pushinteger(L, bcd->flags);
	lua_settable(L, -3);

	if (lua_pcall(L, 2, 1, 0))
		printf("%s\n", lua_tostring(L, -1));

	int res = (int)lua_tointeger(L, 1);

	return res;
}

static int lua_OnMsgToolBarButtonPressed(lua_State *L)
{
	if (!lua_isfunction(L, 1))
	{
		lua_pushlightuserdata(L, NULL);
		return 1;
	}

	lua_pushvalue(L, 1);
	int ref = luaL_ref(L, LUA_REGISTRYINDEX);

	HANDLE res = ::HookEventObjParam(ME_MSG_BUTTONPRESSED, ButtonPressedHookEventObjParam, L, ref);
	lua_pushlightuserdata(L, res);

	CMLua::Hooks.insert(res);
	CMLua::HookRefs.insert(new HandleRefParam(L, res, ref));

	return 1;
}

static luaL_Reg msgbuttinsbarApi[] =
{
	{ "AddButton", lua_AddButton },
	{ "ModifyButton", lua_ModifyButton },
	{ "RemoveButton", lua_RemoveButton },

	{ "OnMsgToolBarButtonPressed", lua_OnMsgToolBarButtonPressed },

	{ NULL, NULL }
};

LUAMOD_API int luaopen_m_msg_buttonsbar(lua_State *L)
{
	luaL_newlib(L, msgbuttinsbarApi);

	return 1;
}