From a9580df150d799246eaecbf3c1fb5cecf9f8ab49 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Mon, 23 Jul 2012 13:49:28 +0000 Subject: SecureIM, SeenPlugin, SendSS, Sessions: changed folder structure git-svn-id: http://svn.miranda-ng.org/main/trunk@1122 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SeenPlugin/missed.cpp | 301 ------------------------------------------ 1 file changed, 301 deletions(-) delete mode 100644 plugins/SeenPlugin/missed.cpp (limited to 'plugins/SeenPlugin/missed.cpp') diff --git a/plugins/SeenPlugin/missed.cpp b/plugins/SeenPlugin/missed.cpp deleted file mode 100644 index 179dd8ee4d..0000000000 --- a/plugins/SeenPlugin/missed.cpp +++ /dev/null @@ -1,301 +0,0 @@ -/* -"Last Seen mod" plugin for Miranda IM -Copyright ( C ) 2002-03 micron-x -Copyright ( C ) 2005-07 Y.B. - -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. - -File name : $URL: http://svn.berlios.de/svnroot/repos/mgoodies/trunk/lastseen-mod/missed.c $ -Revision : $Rev: 1570 $ -Last change on : $Date: 2007-12-30 01:30:07 +0300 (Вс, 30 дек 2007) $ -Last change by : $Author: y_b $ -*/ -#include "seen.h" - -#include - - - -MISSEDCONTACTS mcs; -extern HANDLE ehmissed; -extern HINSTANCE hInstance; - - - -WPARAM IsUserMissed(WPARAM contact) -{ - int loop=0; - - for (;loopszSetting,"Status") || (strcmp(cws->szModule,"ICQ") && strcmp(cws->szModule,"MSN")) || (HANDLE)wparam==NULL) return 0; - - if(CallService(MS_IGNORE_ISIGNORED,wparam,IGNOREEVENT_USERONLINE)) - return 0; - - if(cws->value.wVal==ID_STATUS_OFFLINE) - { - if(DBGetContactSettingByte((HANDLE)wparam,S_MOD,"Missed",0)==1) - { - mcs.times[mcs.count]++; - mcs.wpcontact[mcs.count++]=wparam; - DBWriteContactSettingByte((HANDLE)wparam,S_MOD,"Missed",0); - } - - else if(DBGetContactSettingByte((HANDLE)wparam,S_MOD,"Missed",0)==3) - mcs.times[HIWORD(IsUserMissed(wparam))]++; - - return 0; - } - - wpvar=IsUserMissed(wparam); - if(LOWORD(wpvar)) - DBWriteContactSettingByte((HANDLE)wparam,S_MOD,"Missed",3); - - else - DBWriteContactSettingByte((HANDLE)wparam,S_MOD,"Missed",1); - - return 0; -} - -*/ - -int Test(WPARAM wparam,LPARAM lparam) -{ - if(lparamICON_INVIS) - return 0; - - if(CallService(MS_IGNORE_ISIGNORED,wparam,IGNOREEVENT_USERONLINE)) - return 0; - - if(DBGetContactSettingByte((HANDLE)wparam,S_MOD,"Missed",0)==2) - return 0; - - switch(lparam){ - - case ICON_OFFLINE: - if(DBGetContactSettingByte((HANDLE)wparam,S_MOD,"Missed",0)==1) - { - WORD missed=IsUserMissed(wparam); - - if (!LOWORD(missed)) - { - mcs.times[mcs.count]=1; - mcs.wpcontact[mcs.count++]=wparam; - } - else - mcs.times[HIWORD(missed)]++; - - DBWriteContactSettingByte((HANDLE)wparam,S_MOD,"Missed",0); - } - break; - - case ICON_ONLINE: - case ICON_AWAY: - case ICON_NA: - case ICON_OCC: - case ICON_DND: - case ICON_FREE: - case ICON_INVIS: - DBWriteContactSettingByte((HANDLE)wparam,S_MOD,"Missed",1); - break; - } - - return 0; -} - - - -int ModeChange_mo(WPARAM wparam,LPARAM lparam) -{ - ACKDATA *ack; - int isetting=0; - - ack=(ACKDATA *)lparam; - - if(ack->type!=ACKTYPE_STATUS || ack->result!=ACKRESULT_SUCCESS || ack->hContact!=NULL) return 0; - - isetting=CallProtoService(ack->szModule,PS_GETSTATUS,0,0); - - switch(isetting){ - - case ID_STATUS_AWAY: - case ID_STATUS_DND: - case ID_STATUS_NA: - if(ehmissed==NULL) - { - ZeroMemory(&mcs,sizeof(mcs)); - CheckIfOnline(); - //ehmissed=HookEvent(ME_DB_CONTACT_SETTINGCHANGED,LogStatus); - ehmissed=HookEvent(ME_CLIST_CONTACTICONCHANGED,Test); - } - break; - - default: - if(ehmissed!=NULL) - { - UnhookEvent(ehmissed); - ehmissed=NULL; - ShowMissed(); - ResetMissed(); - } - break; - } - - return 0; -} -- cgit v1.2.3