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
|
#include "skype_proto.h"
HANDLE CSkypeProto::hChooserMenu;
HANDLE CSkypeProto::hPrebuildMenuHook;
HANDLE CSkypeProto::g_hContactMenuSvc[CMITEMS_COUNT];
HANDLE CSkypeProto::g_hContactMenuItems[CMITEMS_COUNT];
INT_PTR CSkypeProto::MenuChooseService(WPARAM wParam, LPARAM lParam)
{
if (lParam)
*(void**)lParam = (void*)wParam;
return 0;
}
int CSkypeProto::OnPrebuildContactMenu(WPARAM wParam, LPARAM)
{
HANDLE hContact = (HANDLE)wParam;
if (hContact == NULL)
return 0;
return 0;
}
CSkypeProto* CSkypeProto::GetInstanceByHContact(HANDLE hContact)
{
char* proto = (char*)::CallService(MS_PROTO_GETCONTACTBASEPROTO, (WPARAM) hContact, 0);
if (proto == NULL)
return NULL;
for (int i = 0; i < CSkypeProto::instanceList.getCount(); i++)
if (!strcmp(proto, CSkypeProto::instanceList[i]->m_szModuleName))
return CSkypeProto::instanceList[i];
return NULL;
}
INT_PTR SkypeMenuHandleRequestAuth(WPARAM wParam, LPARAM lParam)
{
CSkypeProto* ppro = CSkypeProto::GetInstanceByHContact((HANDLE)wParam);
return(ppro) ? ppro->OnMenuHandleRequestAuth(wParam, lParam) : 0;
}
INT_PTR SkypeMenuHandleGrantAuth(WPARAM wParam, LPARAM lParam)
{
CSkypeProto* ppro = CSkypeProto::GetInstanceByHContact((HANDLE)wParam);
return(ppro) ? ppro->OnMenuHandleGrantAuth(wParam, lParam) : 0;
}
INT_PTR SkypeMenuRevokeAuth(WPARAM wParam, LPARAM lParam)
{
CSkypeProto* ppro = CSkypeProto::GetInstanceByHContact((HANDLE)wParam);
return(ppro) ? ppro->OnMenuRevokeAuth(wParam, lParam) : 0;
}
static void sttEnableMenuItem(HANDLE hMenuItem, BOOL bEnable)
{
CLISTMENUITEM clmi = {0};
clmi.cbSize = sizeof(CLISTMENUITEM);
clmi.flags = CMIM_FLAGS;
if (!bEnable)
clmi.flags |= CMIF_HIDDEN;
CallService(MS_CLIST_MODIFYMENUITEM, (WPARAM)hMenuItem, (LPARAM)&clmi);
}
int CSkypeProto::PrebuildContactMenu(WPARAM wParam, LPARAM lParam)
{
sttEnableMenuItem( g_hContactMenuItems[CMI_AUTH_REQUEST], FALSE );
sttEnableMenuItem( g_hContactMenuItems[CMI_AUTH_GRANT], FALSE );
sttEnableMenuItem( g_hContactMenuItems[CMI_AUTH_REVOKE], FALSE );
/*sttEnableMenuItem( g_hMenuCommands, FALSE );
sttEnableMenuItem( g_hMenuSendNote, FALSE );
sttEnableMenuItem( g_hMenuConvert, FALSE );
sttEnableMenuItem( g_hMenuRosterAdd, FALSE );
sttEnableMenuItem( g_hMenuLogin, FALSE );
sttEnableMenuItem( g_hMenuRefresh, FALSE );
sttEnableMenuItem( g_hMenuAddBookmark, FALSE );
sttEnableMenuItem( g_hMenuResourcesRoot, FALSE );
sttEnableMenuItem( g_hMenuDirectPresence[0], FALSE );*/
CSkypeProto* ppro = CSkypeProto::GetInstanceByHContact((HANDLE)wParam);
return (ppro) ? ppro->OnPrebuildContactMenu(wParam, lParam) : 0;
}
void CSkypeProto::InitMenus()
{
CSkypeProto::hPrebuildMenuHook = ::HookEvent(
ME_CLIST_PREBUILDCONTACTMENU,
CSkypeProto::PrebuildContactMenu);
TMenuParam mnu = {0};
mnu.cbSize = sizeof(mnu);
mnu.name = "SkypeAccountChooser";
mnu.ExecService = "Skype/MenuChoose";
hChooserMenu = (HANDLE)::CallService(MO_CREATENEWMENUOBJECT, 0, (LPARAM)&mnu);
//////////////////////////////////////////////////////////////////////////////////////
// Contact menu initialization
CLISTMENUITEM mi = { 0 };
mi.cbSize = sizeof(CLISTMENUITEM);
// "Request authorization"
mi.ptszName = LPGENT("Request authorization");
mi.flags = CMIF_ICONFROMICOLIB | CMIF_TCHAR;
mi.position = -2000001000;
mi.icolibItem = CSkypeProto::GetIconHandle("authReuest");
mi.pszService = "Skype/ReqAuth";
g_hContactMenuItems[CMI_AUTH_REQUEST] = Menu_AddContactMenuItem(&mi);
g_hContactMenuSvc[CMI_AUTH_REQUEST] = CreateServiceFunction(mi.pszService, SkypeMenuHandleRequestAuth);
// "Grant authorization"
mi.pszService = "Skype/GrantAuth";
mi.ptszName = LPGENT("Grant authorization");
mi.position = -2000001001;
mi.icolibItem = CSkypeProto::GetIconHandle("authGrant");
g_hContactMenuItems[CMI_AUTH_GRANT] = Menu_AddContactMenuItem(&mi);
g_hContactMenuSvc[CMI_AUTH_GRANT] = CreateServiceFunction(mi.pszService, SkypeMenuHandleGrantAuth);
// Revoke auth
mi.pszService = "Skype/RevokeAuth";
mi.ptszName = LPGENT("Revoke authorization");
mi.position = -2000001002;
mi.icolibItem = CSkypeProto::GetIconHandle("authRevoke");
g_hContactMenuItems[CMI_AUTH_REVOKE] = Menu_AddContactMenuItem(&mi);
g_hContactMenuSvc[CMI_AUTH_REVOKE] = CreateServiceFunction(mi.pszService, SkypeMenuRevokeAuth);
}
void CSkypeProto::UninitMenus()
{
::UnhookEvent(CSkypeProto::hPrebuildMenuHook);
}
|