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
|
#include "stdafx.h"
__forceinline bool isChatRoom(MCONTACT hContact)
{ return (bool)db_get_b(hContact, ptrA(GetContactProto(hContact)), "ChatRoom", 0);
}
static void __cdecl OnToastNotificationClicked(void* arg)
{
MCONTACT hContact = (MCONTACT)arg;
if (hContact)
{
if (!isChatRoom(hContact))
{
CallService(MS_MSG_SENDMESSAGE, (WPARAM)hContact, (LPARAM)"");
}
else
{
ptrA szProto(GetContactProto(hContact));
ptrT szChatRoom(db_get_tsa(hContact, szProto, "ChatRoomID"));
GCDEST gcd = { szProto, szChatRoom, GC_EVENT_CONTROL };
GCEVENT gce = { sizeof(gce), &gcd };
gce.time = time(NULL);
CallServiceSync(MS_GC_EVENT, WINDOW_VISIBLE, reinterpret_cast<LPARAM>(&gce));
}
}
}
static void ShowToastNotification(TCHAR* text, TCHAR* title, MCONTACT hContact)
{
if (!db_get_b(0, "Popup", "ModuleIsEnabled", 1))
return;
ptrT imagePath;
ToastEventHandler *eventHandler;
if (hContact)
{
eventHandler = new ToastEventHandler(OnToastNotificationClicked, (void*)hContact);
const char* szProto = GetContactProto(hContact);
PROTO_AVATAR_INFORMATION pai;
pai.hContact = hContact;
if (ProtoServiceExists(szProto, PS_GETAVATARINFO))
{
CallProtoService(szProto, PS_GETAVATARINFO, (WPARAM)0, (LPARAM)&pai);
imagePath = mir_tstrdup(pai.filename);
}
}
else
eventHandler = new ToastEventHandler(nullptr);
ToastNotification notification(text, title, imagePath);
notification.Show(eventHandler);
}
static INT_PTR CreatePopup(WPARAM wParam, LPARAM)
{
POPUPDATA *ppd = (POPUPDATA*)wParam;
ptrW text(mir_a2u(ppd->lpzText));
ptrW contactName(mir_a2u(ppd->lpzContactName));
ShowToastNotification(text, contactName, ppd->lchContact);
return 0;
}
static INT_PTR CreatePopupW(WPARAM wParam, LPARAM)
{
POPUPDATAW *ppd = (POPUPDATAW*)wParam;
ShowToastNotification(ppd->lpwzText, ppd->lpwzContactName, ppd->lchContact);
return 0;
}
static INT_PTR CreatePopup2(WPARAM wParam, LPARAM)
{
POPUPDATA2 *ppd = (POPUPDATA2*)wParam;
ptrW text, title;
if (ppd->flags & PU2_UNICODE)
{
text = mir_wstrdup(ppd->lpwzText);
title = mir_wstrdup(ppd->lpwzTitle);
}
else
{
text = mir_a2u(ppd->lpzText);
title = mir_a2u(ppd->lpzTitle);
}
ShowToastNotification(text, title, ppd->lchContact);
return 0;
}
static INT_PTR PopupQuery(WPARAM wParam, LPARAM)
{
switch (wParam) {
case PUQS_ENABLEPOPUPS:
{
bool enabled = db_get_b(0, "Popup", "ModuleIsEnabled", 1) != 0;
if (!enabled) db_set_b(0, "Popup", "ModuleIsEnabled", 1);
return !enabled;
}
break;
case PUQS_DISABLEPOPUPS:
{
bool enabled = db_get_b(0, "Popup", "ModuleIsEnabled", 1) != 0;
if (enabled) db_set_b(0, "Popup", "ModuleIsEnabled", 0);
return enabled;
}
break;
case PUQS_GETSTATUS:
return db_get_b(0, "Popup", "ModuleIsEnabled", 1);
default:
return 1;
}
}
void InitServices()
{
CreateServiceFunction(MS_POPUP_ADDPOPUP, CreatePopup);
CreateServiceFunction(MS_POPUP_ADDPOPUPW, CreatePopupW);
CreateServiceFunction(MS_POPUP_ADDPOPUP2, CreatePopup2);
CreateServiceFunction(MS_POPUP_QUERY, PopupQuery);
}
|