diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-05-05 17:31:43 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-05-05 17:31:43 +0000 |
commit | 2ce72c986db45dc6488a978090973de9bae865fa (patch) | |
tree | 3065728968fbe71c5d2e78a5e4b544460b96a037 | |
parent | b39fed5ae59f261d614fc0a69ebec0c590fcbba2 (diff) |
oops
git-svn-id: http://svn.miranda-ng.org/main/trunk@13447 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/SkypeWeb/src/skype_events.cpp | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/skype_events.cpp b/protocols/SkypeWeb/src/skype_events.cpp new file mode 100644 index 0000000000..568927599b --- /dev/null +++ b/protocols/SkypeWeb/src/skype_events.cpp @@ -0,0 +1,79 @@ +/*
+Copyright (c) 2015 Miranda NG project (http://miranda-ng.org)
+
+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 version 2
+of the License.
+
+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, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "stdafx.h"
+
+INT_PTR CSkypeProto::EventGetIcon(WPARAM wParam, LPARAM lParam) // it not work , ????
+{
+ DBEVENTINFO* dbei = (DBEVENTINFO*)lParam;
+ HICON icon = NULL;
+
+ switch (dbei->eventType)
+ {
+ case SKYPE_DB_EVENT_TYPE_INCOMING_CALL:
+ {
+ icon = Skin_GetIconByHandle(GetIconHandle("inc_call"));
+ break;
+ }
+ default:
+ {
+ icon = LoadSkinnedIcon(SKINICON_EVENT_MESSAGE);
+ break;
+ }
+ }
+
+ return (INT_PTR)((wParam & LR_SHARED) ? icon : CopyIcon(icon));
+}
+
+void CSkypeProto::InitDBEvents()
+{
+ // custom event
+ DBEVENTTYPEDESCR dbEventType = { sizeof(dbEventType) };
+ dbEventType.module = m_szModuleName;
+ dbEventType.flags = DETF_HISTORY | DETF_MSGWINDOW;
+
+ dbEventType.eventType = SKYPE_DB_EVENT_TYPE_ACTION;
+ dbEventType.descr = Translate("Action");
+ CallService(MS_DB_EVENT_REGISTERTYPE, 0, (LPARAM)&dbEventType);
+
+ dbEventType.eventType = SKYPE_DB_EVENT_TYPE_INCOMING_CALL;
+ dbEventType.descr = Translate("Incoming call");
+ dbEventType.iconService = MODULE"/GetEventIcon";
+ dbEventType.textService = MODULE"/GetCallText";
+ dbEventType.flags |= DETF_NONOTIFY;
+ CallService(MS_DB_EVENT_REGISTERTYPE, 0, (LPARAM)&dbEventType);
+}
+
+INT_PTR CSkypeProto::GetCallEventText(WPARAM, LPARAM lParam)
+{
+ DBEVENTGETTEXT *pEvent = (DBEVENTGETTEXT *)lParam;
+
+ INT_PTR nRetVal = 0;
+ char *pszText = Translate("Incoming call");
+
+
+ if (pEvent->datatype == DBVT_TCHAR)
+ {
+ TCHAR *pwszText = _A2T(pszText);
+ nRetVal = (INT_PTR)mir_wstrdup(pwszText);
+ }
+
+ else if (pEvent->datatype == DBVT_ASCIIZ)
+ nRetVal = (INT_PTR)mir_strdup(Translate(pszText));
+
+ return nRetVal;
+}
\ No newline at end of file |