/* Name: NewEventNotify - Plugin for Miranda IM File: neweventnotify.h - Main Header File Version: 0.2.2.2 Description: Notifies you about some events Author: icebreaker, Date: 18.07.02 13:59 / Update: 16.09.02 17:45 Copyright: (C) 2002 Starzinger Michael 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 */ //--------------------------- //---Includes #define _CRT_SECURE_NO_WARNINGS #define _CRT_NONSTDC_NO_DEPRECATE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "resource.h" //VERY_PUBLIC Begin ... will be moved to m_neweventnotify.h #define MS_NEN_MENUNOTIFY "NewEventNotify/MenuitemNotifyCommand" //VERY_PUBLIC End #define MS_MSG_MOD_MESSAGEDIALOGOPENED "SRMsg_MOD/MessageDialogOpened" //--------------------------- //---Definitions #define MODULE "NewEventNotify" #define VER_MAJOR 2 #define VER_MINOR 2 #define VER_BUILD 3 #define MAX_POPUPS 20 #define DEFAULT_COLBACK RGB(255,255,128) #define DEFAULT_COLTEXT RGB(0,0,0) #define DEFAULT_MASKNOTIFY (MASK_MESSAGE|MASK_URL|MASK_FILE|MASK_OTHER) #define DEFAULT_MASKACTL (MASK_OPEN|MASK_REMOVE|MASK_DISMISS) #define DEFAULT_MASKACTR (MASK_REMOVE|MASK_DISMISS) #define DEFAULT_MASKACTE (MASK_DISMISS) #define DEFAULT_DELAY -1 #define MASK_MESSAGE 0x0001 #define MASK_URL 0x0002 #define MASK_FILE 0x0004 #define MASK_OTHER 0x0008 #define MASK_DISMISS 0x0001 #define MASK_OPEN 0x0002 #define MASK_REMOVE 0x0004 #define SETTING_LIFETIME_MIN 1 #define SETTING_LIFETIME_MAX 60 #define SETTING_LIFETIME_DEFAULT 20 #define MAX_DATASIZE 24 #ifndef WM_MOUSEWHEEL #define WM_MOUSEWHEEL 0x020A #endif #define TIMER_TO_ACTION 50685 //Entries in the database, don't translate #define OPT_DISABLE "Disabled" #define OPT_PREVIEW "Preview" #define OPT_MENUITEM "MenuItem" #define OPT_COLDEFAULT_MESSAGE "DefaultColorMsg" #define OPT_COLBACK_MESSAGE "ColorBackMsg" #define OPT_COLTEXT_MESSAGE "ColorTextMsg" #define OPT_COLDEFAULT_URL "DefaultColorUrl" #define OPT_COLBACK_URL "ColorBackUrl" #define OPT_COLTEXT_URL "ColorTextUrl" #define OPT_COLDEFAULT_FILE "DefaultColorFile" #define OPT_COLBACK_FILE "ColorBackFile" #define OPT_COLTEXT_FILE "ColorTextFile" #define OPT_COLDEFAULT_OTHERS "DefaultColorOthers" #define OPT_COLBACK_OTHERS "ColorBackOthers" #define OPT_COLTEXT_OTHERS "ColorTextOthers" #define OPT_MASKNOTIFY "Notify" #define OPT_MASKACTL "ActionLeft" #define OPT_MASKACTR "ActionRight" #define OPT_MASKACTTE "ActionTimeExpires" #define OPT_MSGWINDOWCHECK "WindowCheck" #define OPT_MSGREPLYWINDOW "ReplyWindow" #define OPT_MERGEPOPUP "MergePopup" #define OPT_DELAY_MESSAGE "DelayMessage" #define OPT_DELAY_URL "DelayUrl" #define OPT_DELAY_FILE "DelayFile" #define OPT_DELAY_OTHERS "DelayOthers" #define OPT_SHOW_DATE "ShowDate" #define OPT_SHOW_TIME "ShowTime" #define OPT_SHOW_HEADERS "ShowHeaders" #define OPT_NUMBER_MSG "NumberMsg" #define OPT_SHOW_ON "ShowOldOrNew" #define OPT_HIDESEND "HideSend" #define OPT_NORSS "NoRSSAnnounces" #define OPT_READCHECK "ReadCheck" //--------------------------- //---Translateable Strings #define POPUP_COMMENT_MESSAGE "Message" #define POPUP_COMMENT_URL "URL" #define POPUP_COMMENT_FILE "File" #define POPUP_COMMENT_CONTACTS "Contacts" #define POPUP_COMMENT_ADDED "You were added!" #define POPUP_COMMENT_AUTH "Requests your authorisation" #define POPUP_COMMENT_WEBPAGER "ICQ Web pager" #define POPUP_COMMENT_EMAILEXP "ICQ Email express" #define POPUP_COMMENT_OTHER "Unknown Event" #define MENUITEM_NAME "Notify of new events" #define MENUITEM_ENABLE "Enable new event notification" #define MENUITEM_DISABLE "Disable new event notification" //--------------------------- //---Structures struct PLUGIN_OPTIONS { HINSTANCE hInst; BOOL bDisable; BOOL bPreview; BOOL bMenuitem; BOOL bDefaultColorMsg; BOOL bDefaultColorUrl; BOOL bDefaultColorFile; BOOL bDefaultColorOthers; COLORREF colBackMsg; COLORREF colTextMsg; COLORREF colBackUrl; COLORREF colTextUrl; COLORREF colBackFile; COLORREF colTextFile; COLORREF colBackOthers; COLORREF colTextOthers; UINT maskNotify; UINT maskActL; UINT maskActR; UINT maskActTE; BOOL bMsgWindowCheck; BOOL bMsgReplyWindow; int iDelayMsg; int iDelayUrl; int iDelayFile; int iDelayOthers; int iDelayDefault; BOOL bMergePopup; BOOL bShowDate; BOOL bShowTime; BOOL bShowHeaders; BYTE iNumberMsg; BOOL bShowON; BOOL bHideSend; BOOL bNoRSS; BOOL bReadCheck; }; struct EVENT_DATA_EX { HANDLE hEvent; int number; struct EVENT_DATA_EX* next; struct EVENT_DATA_EX* prev; }; struct PLUGIN_DATA { UINT eventType; HANDLE hContact; PLUGIN_OPTIONS* pluginOptions; HWND hWnd; struct EVENT_DATA_EX* firstEventData; struct EVENT_DATA_EX* firstShowEventData; struct EVENT_DATA_EX* lastEventData; long countEvent; long iSeconds; int iLock; }; //--------------------------- //---External Procedure Definitions int PopupShow(PLUGIN_OPTIONS* pluginOptions, HANDLE hContact, HANDLE hEvent, UINT eventType); int PopupUpdate(HANDLE hContact, HANDLE hEvent); int PopupPreview(PLUGIN_OPTIONS* pluginOptions); int PopupAct(HWND hWnd, UINT mask, PLUGIN_DATA* pdata); int OptionsInit(PLUGIN_OPTIONS* pluginOptions); int OptionsAdd(HINSTANCE hInst, WPARAM addInfo); int Opt_DisableNEN(BOOL Status); int MenuitemInit(BOOL bStatus); int MenuitemUpdate(BOOL bStatus); int NumberPopupData(HANDLE hContact, int eventType); int CheckMsgWnd(HANDLE hContact); extern HINSTANCE hInst;