summaryrefslogtreecommitdiff
path: root/protocols/Gadu-Gadu/src/links.cpp
blob: 50a8a6ac54c46764db27a1a7b77e62f40bbed562 (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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
////////////////////////////////////////////////////////////////////////////////
// Gadu-Gadu Plugin for Miranda IM
//
// Copyright (c) 2009-2012 Bartosz Bia³ek
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
////////////////////////////////////////////////////////////////////////////////

#include "gg.h"
#include "m_assocmgr.h"

//////////////////////////////////////////////////////////
// File Association Manager support

#define GGS_PARSELINK "%s/ParseLink"
#define GGS_MENUCHOOSE "%s/MenuChoose"

static HANDLE hInstanceMenu;
static HANDLE hServiceMenuChoose;
static HANDLE hServiceParseLink;

static INT_PTR gg_menuchoose(WPARAM wParam, LPARAM lParam)
{
	if (lParam)
		*(void**)lParam = (void*)wParam;
	return 0;
}

static INT_PTR gg_parselink(WPARAM wParam, LPARAM lParam)
{
	char *arg = (char*)lParam;
	list_t l = g_Instances;
	GGPROTO *gg = NULL;
	uin_t uin;
	CLISTMENUITEM mi = {0};
	int items = 0;

	if (list_count(l) == 0)
		return 0;

	if (arg == NULL)
		return 1;

	arg = strchr(arg, ':');

	if (arg == NULL)
		return 1;

	for (++arg; *arg == '/'; ++arg);
	uin = atoi(arg);

	if (!uin)
		return 1;

	for (mi.cbSize = sizeof(mi); l; l = l->next)
	{
		GGPROTO *gginst = (GGPROTO*)l->data;

		mi.flags = CMIM_FLAGS;
		if (gginst->m_iStatus > ID_STATUS_OFFLINE)
		{
			++items;
			gg = (GGPROTO*)l->data;
			mi.flags |= CMIM_ICON;
			mi.hIcon = LoadSkinnedProtoIcon(gg->m_szModuleName, gg->m_iStatus);
		}
		else
		{
			mi.flags |= CMIF_HIDDEN;
			mi.hIcon = NULL;
		}

		CallService(MS_CLIST_MODIFYMENUITEM, (WPARAM)gginst->hInstanceMenuItem, (LPARAM)&mi);
		if (mi.hIcon)
			Skin_ReleaseIcon(mi.hIcon);
	}

	if (items > 1)
	{
		ListParam param = {0};
		HMENU hMenu = CreatePopupMenu();
		POINT pt;
		int cmd = 0;

		param.MenuObjectHandle = hInstanceMenu;
		CallService(MO_BUILDMENU, (WPARAM)hMenu, (LPARAM)&param);

		GetCursorPos(&pt);
		cmd = TrackPopupMenu(hMenu, TPM_RETURNCMD, pt.x, pt.y, 0, pcli->hwndContactList, NULL);
		DestroyMenu(hMenu);

		if (cmd)
			CallService(MO_PROCESSCOMMANDBYMENUIDENT, cmd, (LPARAM)&gg);
	}

	if (gg == NULL)
		return 0;

	if (ServiceExists(MS_MSG_SENDMESSAGE))
	{
		HANDLE hContact = gg->getcontact(uin, 1, 0, NULL);
		if (hContact != NULL)
			CallService(MS_MSG_SENDMESSAGE, (WPARAM)hContact, 0);
	}

	return 0;
}

void gg_links_instancemenu_init()
{
	char service[MAXMODULELABELLENGTH];
	TMenuParam mnu = {0};
	TMO_MenuItem tmi = {0};

	mir_snprintf(service, sizeof(service), GGS_MENUCHOOSE, GGDEF_PROTO);
	hServiceMenuChoose = CreateServiceFunction(service, gg_menuchoose);
	mnu.cbSize = sizeof(mnu);
	mnu.name = "GGAccountChooser";
	mnu.ExecService = service;
	hInstanceMenu = (HANDLE)CallService(MO_CREATENEWMENUOBJECT, 0, (LPARAM)&mnu);

	tmi.cbSize = sizeof(tmi);
	tmi.flags = CMIF_ICONFROMICOLIB;
	tmi.pszName = "Cancel";
	tmi.position = 9999999;
	tmi.hIcolibItem = LoadSkinnedIconHandle(SKINICON_OTHER_DELETE);
	CallService(MO_ADDNEWMENUITEM, (WPARAM)hInstanceMenu, (LPARAM)&tmi);
}

void gg_links_init()
{
	if (ServiceExists(MS_ASSOCMGR_ADDNEWURLTYPE))
	{
		char service[MAXMODULELABELLENGTH];

		mir_snprintf(service, sizeof(service), GGS_PARSELINK, GGDEF_PROTO);
		hServiceParseLink = CreateServiceFunction(service, gg_parselink);
		AssocMgr_AddNewUrlType("gg:", Translate("Gadu-Gadu Link Protocol"), hInstance, IDI_GG, service, 0);
	}
}

void gg_links_destroy()
{
	DestroyServiceFunction(hServiceMenuChoose);
	if (ServiceExists(MS_ASSOCMGR_ADDNEWURLTYPE))
		DestroyServiceFunction(hServiceParseLink);
}

void GGPROTO::links_instance_init()
{
	if (ServiceExists(MS_ASSOCMGR_ADDNEWURLTYPE))
	{
		TMO_MenuItem tmi = {0};
		tmi.cbSize = sizeof(tmi);
		tmi.flags = CMIF_TCHAR;
		tmi.ownerdata = this;
		tmi.position = list_count(g_Instances);
		tmi.ptszName = m_tszUserName;
		hInstanceMenuItem = (HANDLE)CallService(MO_ADDNEWMENUITEM, (WPARAM)hInstanceMenu, (LPARAM)&tmi);
	}
}