/* New Away System - plugin for Miranda IM Copyright (c) 2005-2007 Chervov Dmitry 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 */ #pragma once #include "stdafx.h" #include "MsgTree.h" #include "ContactList.h" #include "statusmodes.h" #define DB_STATUSMSG "StatusMsg" #define DB_ENABLEREPLY "EnableReply" #define DB_IGNOREREQUESTS "IgnoreRequests" #define DB_UNK_CONTACT_PREFIX "Unk" // DB_ENABLEREPLY, DB_IGNOREREQUESTS and DB_POPUPNOTIFY settings prefix for not-on-list contacts class _CWndUserData { public: _CWndUserData(): MsgTree(NULL), CList(NULL) {} CMsgTree *MsgTree; CCList *CList; }; class CWndUserData { public: CWndUserData(HWND hWnd) : hWnd(hWnd) { _ASSERT(hWnd); dat = (_CWndUserData*)GetWindowLongPtr(hWnd, GWLP_USERDATA); if (!dat) { dat = new _CWndUserData; SetWindowLongPtr(hWnd, GWLP_USERDATA, (LONG_PTR)dat); } } ~CWndUserData() { _ASSERT(dat == (_CWndUserData*)GetWindowLongPtr(hWnd, GWLP_USERDATA)); if (!dat->MsgTree && !dat->CList) { SetWindowLongPtr(hWnd, GWLP_USERDATA, 0); delete dat; // TODO: memory leak - this is never executed - fix it } } CMsgTree *GetMsgTree() {return dat->MsgTree;} void SetMsgTree(CMsgTree *MsgTree) {dat->MsgTree = MsgTree;} CCList *GetCList() {return dat->CList;} void SetCList(CCList *CList) {dat->CList = CList;} private: HWND hWnd; _CWndUserData *dat; }; #define IL_SKINICON 0x80000000 #define IL_PROTOICON 0x40000000 #define ILI_NOICON (-1) #define ILI_EVENT_MESSAGE 0 #define ILI_EVENT_URL 1 #define ILI_EVENT_FILE 2 #define ILI_PROTO_ONL 3 #define ILI_PROTO_AWAY 4 #define ILI_PROTO_NA 5 #define ILI_PROTO_OCC 6 #define ILI_PROTO_DND 7 #define ILI_PROTO_FFC 8 #define ILI_PROTO_INV 9 #define ILI_PROTO_OTP 10 #define ILI_PROTO_OTL 11 #define ILI_DOT 12 #define ILI_MSGICON 13 #define ILI_IGNORE 14 #define ILI_SOE_DISABLED 15 #define ILI_SOE_ENABLED 16 #define ILI_NEWMESSAGE 17 #define ILI_NEWCATEGORY 18 #define ILI_SAVE 19 #define ILI_SAVEASNEW 20 #define ILI_DELETE 21 #define ILI_SETTINGS 22 static unsigned Icons[] = { SKINICON_EVENT_MESSAGE | IL_SKINICON, SKINICON_EVENT_URL | IL_SKINICON, SKINICON_EVENT_FILE | IL_SKINICON, ID_STATUS_ONLINE | IL_PROTOICON, ID_STATUS_AWAY | IL_PROTOICON, ID_STATUS_NA | IL_PROTOICON, ID_STATUS_OCCUPIED | IL_PROTOICON, ID_STATUS_DND | IL_PROTOICON, ID_STATUS_FREECHAT | IL_PROTOICON, ID_STATUS_INVISIBLE | IL_PROTOICON, ID_STATUS_ONTHEPHONE | IL_PROTOICON, ID_STATUS_OUTTOLUNCH | IL_PROTOICON, IDI_DOT, IDI_MSGICON, IDI_IGNORE, IDI_SOE_ENABLED, IDI_SOE_DISABLED, IDI_NEWMESSAGE, IDI_NEWCATEGORY, IDI_SAVE, IDI_SAVEASNEW, IDI_DELETE, IDI_SETTINGS }; class CIconList { public: ~CIconList() { for (int i = 0; i < IconList.GetSize(); i++) if (IconList[i]) DestroyIcon(IconList[i]); } HICON& operator [] (int nIndex) {return IconList[nIndex];} void ReloadIcons() { int cxIcon = GetSystemMetrics(SM_CXSMICON); int cyIcon = GetSystemMetrics(SM_CYSMICON); int i; for (i = 0; i < _countof(Icons); i++) { if (IconList.GetSize() > i && IconList[i]) DestroyIcon(IconList[i]); if (Icons[i] & IL_SKINICON) IconList.SetAtGrow(i) = (HICON)CopyImage(Skin_LoadIcon(Icons[i] & ~IL_SKINICON), IMAGE_ICON, cxIcon, cyIcon, LR_COPYFROMRESOURCE); else if (Icons[i] & IL_PROTOICON) IconList.SetAtGrow(i) = (HICON)CopyImage(Skin_LoadProtoIcon(NULL, Icons[i] & ~IL_PROTOICON), IMAGE_ICON, cxIcon, cyIcon, LR_COPYFROMRESOURCE); else IconList.SetAtGrow(i) = (HICON)GetIcon(Icons[i]); } } private: TMyArray IconList; }; extern CIconList g_IconList; class CProtoStates; class CProtoState { public: CProtoState(const char* szProto, CProtoStates* Parent): m_szProto(szProto), m_parent(Parent), m_status(szProto, Parent), m_awaySince(szProto, Parent) {} class CStatus { public: CStatus(const char* szProto, CProtoStates* GrandParent): m_szProto(szProto), m_grandParent(GrandParent), m_status(ID_STATUS_OFFLINE) {} CStatus& operator = (int Status); operator int() {return m_status;} friend class CProtoState; private: int m_status; CString m_szProto; CProtoStates* m_grandParent; } m_status; class CAwaySince { public: CAwaySince(const char* szProto, CProtoStates* GrandParent): m_szProto(szProto), m_grandParent(GrandParent) {Reset();} void Reset(); operator LPSYSTEMTIME() {return &m_awaySince;} friend class CProtoState; private: SYSTEMTIME m_awaySince; CString m_szProto; CProtoStates* m_grandParent; } m_awaySince; class CCurStatusMsg { public: CCurStatusMsg() {*this = NULL;} CCurStatusMsg& operator = (TCString Msg) { CurStatusMsg = Msg; SYSTEMTIME st; GetLocalTime(&st); SystemTimeToFileTime(&st, (LPFILETIME)&LastUpdateTime); // i'm too lazy to declare FILETIME structure and then copy its data to absolutely equivalent ULARGE_INTEGER structure, so we'll just pass a pointer to the ULARGE_INTEGER directly ;-P return *this; } operator TCString() {return CurStatusMsg;} DWORD GetUpdateTimeDifference() { ULARGE_INTEGER CurTime; SYSTEMTIME st; GetLocalTime(&st); SystemTimeToFileTime(&st, (LPFILETIME)&CurTime); return (DWORD)((CurTime.QuadPart - LastUpdateTime.QuadPart) / 10000); // in milliseconds } private: TCString CurStatusMsg; ULARGE_INTEGER LastUpdateTime; } CurStatusMsg; class CTempMsg { // we use temporary messages to keep user-defined per-protocol messages intact, when changing messages through MS_NAS_SETSTATE, or when autoaway becomes active etc.. temporary messages are automatically resetted when protocol status changes public: CTempMsg(): iIsSet(0) {} CTempMsg& operator = (TCString _Msg) {this->Msg = _Msg; iIsSet = true; return *this;} operator TCString() { _ASSERT(iIsSet); return Msg; } void Unset() {iIsSet = false;} int IsSet() {return iIsSet;} private: int iIsSet; // as we need TempMsg to support every possible value, including NULL and "", we'll use this variable to specify whether TempMsg is set TCString Msg; } TempMsg; void SetParent(CProtoStates* _Parent) { m_parent = _Parent; m_status.m_grandParent = _Parent; m_awaySince.m_grandParent = _Parent; } CString &GetProto() {return m_szProto;} //NightFox: fix? //private: public: CString m_szProto; CProtoStates *m_parent; }; class CProtoStates // this class stores all protocols' dynamic data { public: CProtoStates() {} CProtoStates(const CProtoStates &States) {*this = States;} CProtoStates& operator = (const CProtoStates& States) { ProtoStates = States.ProtoStates; for (int i = 0; i < ProtoStates.GetSize(); i++) ProtoStates[i].SetParent(this); return *this; } CProtoState& operator[](const char *szProto) { for (int i = 0; i < ProtoStates.GetSize(); i++) if (ProtoStates[i].GetProto() == szProto) return ProtoStates[i]; // we need to be sure that we have _all_ protocols in the list, before dealing with global status, so we're adding them here. if (!szProto) { int numAccs; PROTOACCOUNT **accs; Proto_EnumAccounts(&numAccs, &accs); for (int i = 0; i < numAccs; i++) (*this)[accs[i]->szModuleName]; // add a protocol if it isn't in the list yet } return ProtoStates[ProtoStates.AddElem(CProtoState(szProto, this))]; } friend class CProtoState; friend class CProtoState::CStatus; friend class CProtoState::CAwaySince; private: CProtoState& operator[](int nIndex) {return ProtoStates[nIndex];} int GetSize() {return ProtoStates.GetSize();} TMyArray ProtoStates; }; extern CProtoStates g_ProtoStates; static struct { int Status; char *Setting; } StatusSettings[] = { ID_STATUS_OFFLINE, "Off", ID_STATUS_ONLINE, "Onl", ID_STATUS_AWAY, "Away", ID_STATUS_NA, "Na", ID_STATUS_DND, "Dnd", ID_STATUS_OCCUPIED, "Occ", ID_STATUS_FREECHAT, "Ffc", ID_STATUS_INVISIBLE, "Inv", ID_STATUS_ONTHEPHONE, "Otp", ID_STATUS_OUTTOLUNCH, "Otl", ID_STATUS_IDLE, "Idle" }; class CProtoSettings { LPCSTR szProto; public: CProtoSettings(LPCSTR szProto = NULL, int iStatus = 0) : szProto(szProto), Status(iStatus, szProto) { Autoreply.Parent = this; } CString ProtoStatusToDBSetting(const char *Prefix, int MoreOpt_PerStatusID = 0) { if (!MoreOpt_PerStatusID || g_MoreOptPage.GetDBValueCopy(MoreOpt_PerStatusID)) { for (int i = 0; i < _countof(StatusSettings); i++) if (Status == StatusSettings[i].Status) return szProto ? (CString(Prefix) + "_" + szProto + "_" + StatusSettings[i].Setting) : (CString(Prefix) + StatusSettings[i].Setting); } return szProto ? (CString(Prefix) + "_" + szProto) : CString(Prefix); } class CAutoreply { public: CAutoreply& operator = (const int m_value) { CString Setting(Parent->szProto ? Parent->ProtoStatusToDBSetting(DB_ENABLEREPLY, IDC_MOREOPTDLG_PERSTATUSPROTOSETTINGS) : DB_ENABLEREPLY); if (db_get_b(NULL, MOD_NAME, Setting, VAL_USEDEFAULT) == m_value) return *this; if (m_value != VAL_USEDEFAULT) db_set_b(NULL, MOD_NAME, Setting, m_value != 0); else db_unset(NULL, MOD_NAME, Setting); return *this; } operator int() { return db_get_b(NULL, MOD_NAME, Parent->szProto ? Parent->ProtoStatusToDBSetting(DB_ENABLEREPLY, IDC_MOREOPTDLG_PERSTATUSPROTOSETTINGS) : DB_ENABLEREPLY, Parent->szProto ? VAL_USEDEFAULT : AUTOREPLY_DEF_REPLY); } int IncludingParents() // takes into account global data also, if per-protocol setting is not defined { _ASSERT(Parent->szProto); int m_value = *this; return (m_value == VAL_USEDEFAULT) ? CProtoSettings(NULL).Autoreply : m_value; } friend class CProtoSettings; private: CProtoSettings *Parent; } Autoreply; class CStatus { public: CStatus(int iStatus = 0, const char *szProto = NULL): Status(iStatus), szProto(szProto) {} CStatus& operator = (int _Status) {this->Status = _Status; return *this;} operator int() { if (!Status) Status = g_ProtoStates[szProto].m_status; return Status; } private: int Status; const char *szProto; } Status; void SetMsgFormat(int Flags, TCString Message); TCString GetMsgFormat(int Flags, int *pOrder = NULL); }; __inline CString StatusToDBSetting(int Status, const char *Prefix, int MoreOpt_PerStatusID = 0) { if (!MoreOpt_PerStatusID || g_MoreOptPage.GetDBValueCopy(MoreOpt_PerStatusID)) for (int i = 0; i < _countof(StatusSettings); i++) if (Status == StatusSettings[i].Status) return CString(Prefix) + StatusSettings[i].Setting; return CString(Prefix); } __inline CString ContactStatusToDBSetting(int Status, const char *Prefix, int MoreOpt_PerStatusID, MCONTACT hContact) { // it's a not-on-list contact if (hContact == INVALID_CONTACT_ID) return CString(DB_UNK_CONTACT_PREFIX) + Prefix; if (hContact) StatusToDBSetting(Status, Prefix, MoreOpt_PerStatusID); return CString(Prefix); } class CContactSettings { MCONTACT m_hContact; public: CContactSettings(int iStatus = 0, MCONTACT _hContact = NULL): Status(iStatus, _hContact), m_hContact(_hContact) { Ignore.Parent = this; Autoreply.Parent = this; } CString ContactStatusToDBSetting(const char *Prefix, int MoreOpt_PerStatusID = 0) { return ::ContactStatusToDBSetting((m_hContact != INVALID_CONTACT_ID) ? Status : NULL, Prefix, MoreOpt_PerStatusID, m_hContact); } class CIgnore { public: CIgnore& operator = (const int m_value) { CString Setting(Parent->ContactStatusToDBSetting(DB_IGNOREREQUESTS, IDC_MOREOPTDLG_PERSTATUSPERSONALSETTINGS)); MCONTACT hContact = (Parent->m_hContact != INVALID_CONTACT_ID) ? Parent->m_hContact : NULL; if (m_value) db_set_b(hContact, MOD_NAME, Setting, 1); else db_unset(hContact, MOD_NAME, Setting); return *this; } operator int() { return db_get_b((Parent->m_hContact != INVALID_CONTACT_ID) ? Parent->m_hContact : NULL, MOD_NAME, Parent->ContactStatusToDBSetting(DB_IGNOREREQUESTS, IDC_MOREOPTDLG_PERSTATUSPERSONALSETTINGS), 0); } friend class CContactSettings; private: CContactSettings *Parent; } Ignore; class CAutoreply { public: CAutoreply& operator = (const int m_value) { CString Setting(Parent->ContactStatusToDBSetting(DB_ENABLEREPLY, IDC_MOREOPTDLG_PERSTATUSPERSONALSETTINGS)); MCONTACT hContact = (Parent->m_hContact != INVALID_CONTACT_ID) ? Parent->m_hContact : NULL; if (db_get_b(hContact, MOD_NAME, Setting, VAL_USEDEFAULT) == m_value) return *this; if (m_value != VAL_USEDEFAULT) db_set_b(hContact, MOD_NAME, Setting, m_value != 0); else db_unset(hContact, MOD_NAME, Setting); return *this; } operator int() {return db_get_b((Parent->m_hContact != INVALID_CONTACT_ID) ? Parent->m_hContact : NULL, MOD_NAME, Parent->ContactStatusToDBSetting(DB_ENABLEREPLY, IDC_MOREOPTDLG_PERSTATUSPERSONALSETTINGS), Parent->m_hContact ? VAL_USEDEFAULT : AUTOREPLY_DEF_REPLY);} int IncludingParents(const char *szProtoOverride = NULL) // takes into account protocol and global data also, if per-contact setting is not defined { _ASSERT((Parent->m_hContact && Parent->m_hContact != INVALID_CONTACT_ID) || szProtoOverride); // we need either correct protocol or a correct hContact to determine its protocol int m_value = *this; if (m_value == VAL_USEDEFAULT) { const char *szProto = (Parent->m_hContact && Parent->m_hContact != INVALID_CONTACT_ID) ? GetContactProto(Parent->m_hContact) : szProtoOverride; return CProtoSettings(szProto).Autoreply.IncludingParents(); } return m_value; } int GetNextToggleValue() { switch ((int)*this) { case VAL_USEDEFAULT: return 0; break; case 0: return 1; break; default: return Parent->m_hContact ? VAL_USEDEFAULT : AUTOREPLY_DEF_REPLY; break; } } int Toggle() {return *this = GetNextToggleValue();} friend class CContactSettings; private: CContactSettings *Parent; } Autoreply; class CStatus { public: CStatus(int iStatus = 0, MCONTACT _hContact = NULL): Status(iStatus), m_hContact(_hContact) {} CStatus& operator = (int _Status) {this->Status = _Status; return *this;} operator int() { if (!Status) { _ASSERT(m_hContact != INVALID_CONTACT_ID); char *szProto = m_hContact ? GetContactProto(m_hContact) : NULL; Status = (szProto || !m_hContact) ? g_ProtoStates[szProto].m_status : ID_STATUS_AWAY; } return Status; } friend class CPopupNotify; friend class CAutoreply; private: int Status; MCONTACT m_hContact; } Status; void SetMsgFormat(int Flags, TCString Message); TCString GetMsgFormat(int Flags, int *pOrder = NULL, char *szProtoOverride = NULL); };