#include "stdafx.h" __forceinline bool isChatRoom(MCONTACT hContact) { return (bool)db_get_b(hContact, 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 { const char *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(&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 = { 0 }; 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); }