summaryrefslogtreecommitdiff
path: root/plugins/NewEventNotify/src/stdafx.h
blob: a83ef4c160ffbd9d81730133cfc6612de8812825 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/*
	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, <icebreaker@newmail.net>
	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
*/

#pragma once

//---------------------------
//---Includes
#define _CRT_NONSTDC_NO_DEPRECATE

#include <stddef.h>
#include <windows.h>
#include <time.h>

#include <vector>

#include <newpluginapi.h>
#include <m_database.h>
#include <m_langpack.h>
#include <m_popup.h>
#include <m_skin.h>
#include <m_srmm_int.h>
#include <m_clistint.h>
#include <m_protosvc.h>
#include <m_message.h>
#include <m_options.h>

#include <m_metacontacts.h>

#include "resource.h"
#include "version.h"

//---------------------------
//---Definitions

#define MODULENAME "NewEventNotify"

#define DEFAULT_COLBACK RGB(255,255,128)
#define DEFAULT_COLTEXT RGB(0,0,0)
#define DEFAULT_DELAY   0

#define EVENTTYPE_ERRMSG 25366

#define MASK_MESSAGE    0x0001
#define MASK_ERROR      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_MUCDISABLE "MUCDisabled"
#define OPT_PREVIEW "Preview"
#define OPT_MENUITEM "MenuItem"
#define OPT_LIMITPREVIEW "LimitPreview"

#define OPT_COLDEFAULT_MESSAGE "DefaultColorMsg"
#define OPT_COLBACK_MESSAGE "ColorBackMsg"
#define OPT_COLTEXT_MESSAGE "ColorTextMsg"
#define OPT_DELAY_MESSAGE "DelayMessage"

#define OPT_COLDEFAULT_FILE "DefaultColorFile"
#define OPT_COLBACK_FILE "ColorBackFile"
#define OPT_COLTEXT_FILE "ColorTextFile"
#define OPT_DELAY_FILE "DelayFile"

#define OPT_COLDEFAULT_ERR "DefaultColorErr"
#define OPT_COLBACK_ERR "ColorBackErr"
#define OPT_COLTEXT_ERR "ColorTextErr"
#define OPT_DELAY_ERR "DelayErr"

#define OPT_COLDEFAULT_OTHERS "DefaultColorOthers"
#define OPT_COLBACK_OTHERS "ColorBackOthers"
#define OPT_COLTEXT_OTHERS "ColorTextOthers"
#define OPT_DELAY_OTHERS "DelayOthers"

#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_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 LPGEN("Message")
#define POPUP_COMMENT_FILE LPGEN("File")
#define POPUP_COMMENT_CONTACTS LPGEN("Contacts")
#define POPUP_COMMENT_ADDED LPGEN("You were added!")
#define POPUP_COMMENT_AUTH LPGEN("Requests your authorization")

#define POPUP_COMMENT_OTHER LPGEN("Unknown Event")

#define MENUITEM_NAME LPGEN("Notify of new events")

//---------------------------
//---Structures

struct CMPlugin : public PLUGIN<CMPlugin>
{
	CMPlugin();

	int Load() override;

	void OptionsRead(void);
	void OptionsWrite(void);

	CMOption<bool> bPopups;

	bool bMUCDisable;
	bool bPreview;
	bool bDisableNonMessage;
	bool bMsgWindowCheck;
	bool bMsgReplyWindow;
	bool bMergePopup;
	bool bShowDate;
	bool bShowTime;
	bool bShowHeaders;
	bool bShowON;
	bool bHideSend;
	bool bNoRSS;
	bool iNoSounds;
	bool bReadCheck;
	bool bWindowCheck;

	struct
	{
		COLORREF backColor, textColor;
		int iDelay;
		bool bDefault;

	} msg, file, err, other;

	uint32_t maskNotify;
	uint32_t maskActL;
	uint32_t maskActR;
	uint32_t maskActTE;

	int iDelayDefault;
	int iLimitPreview;

	uint8_t iNumberMsg;
};

struct PLUGIN_DATA : public MZeroedObject
{
	MCONTACT hContact;
	UINT eventType;
	HWND hWnd;
	std::vector<MEVENT> events;
	long iSeconds;
};

//---------------------------
//---External Procedure Definitions

int PopupShow(MCONTACT hContact, MEVENT hEvent, UINT eventType);
int PopupUpdate(PLUGIN_DATA &pdata, MEVENT hEvent);
int PopupAct(HWND hWnd, UINT mask, PLUGIN_DATA *pdata);
int OptionsAdd(WPARAM addInfo, LPARAM);
int CheckMsgWnd(MCONTACT hContact);

PLUGIN_DATA* PU_GetByContact(MCONTACT hContact, UINT eventType);