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
|
/*
IEView Plugin for Miranda IM
Copyright (C) 2005-2010 Piotr Piastucki
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.
*/
class HTMLBuilder;
#ifndef HTMLBUILDER_INCLUDED
#define HTMLBUILDER_INCLUDED
#define EVENTTYPE_STATUSCHANGE 25368
#define EVENTTYPE_JABBER_CHATSTATES 2000
#include "IEView.h"
#include "Options.h"
#include "TextToken.h"
class HTMLBuilder {
private:
IEVIEWEVENT lastIEViewEvent;
static int mimFlags;
enum MIMFLAGS {
MIM_CHECKED = 1,
MIM_UNICODE = 2
};
protected:
DWORD lastEventTime;
int iLastEventType;
enum ENCODEFLAGS {
ENF_NONE = 0,
ENF_SMILEYS = 1,
ENF_NAMESMILEYS = 2,
ENF_BBCODES = 4,
ENF_LINKS = 8,
ENF_ALL = 255,
ENF_CHAT_FORMATTING = 256
};
// virtual char *encode(const char *text, const char *proto, bool replaceSmiley);
virtual char *encodeUTF8(HANDLE hContact, const char *proto, const wchar_t *text, int flags, bool isSent);
virtual char *encodeUTF8(HANDLE hContact, const char *proto, const char *text, int flags, bool isSent);
virtual char *encodeUTF8(HANDLE hContact, const char *proto, const char *text, int cp, int flags, bool isSent);
virtual wchar_t *encode(HANDLE hContact, const char *proto, const wchar_t *text, int flags, bool isSent);
virtual bool encode(HANDLE hContact, const char *proto, const wchar_t *text, wchar_t **output, int *outputSize, int level, int flags, bool isSent);
virtual char* getProto(HANDLE hContact);
virtual char* getProto(const char *proto, HANDLE hContact);
virtual char* getRealProto(HANDLE hContact);
virtual char* getRealProto(HANDLE hContact, const char *proto);
virtual wchar_t *getContactName(HANDLE hContact, const char* szProto);
virtual char *getEncodedContactName(HANDLE hContact, const char *szProto, const char *szSmileyProto);
virtual void getUINs(HANDLE hContact, char *&uinIn, char *&uinOut);
virtual HANDLE getRealContact(HANDLE hContact);
virtual DWORD getLastEventTime();
virtual void setLastEventTime(DWORD);
virtual int getLastEventType();
virtual void setLastEventType(int);
virtual bool isSameDate(time_t time1, time_t time2);
virtual bool isDbEventShown(DBEVENTINFO * dbei)=0;
virtual ProtocolSettings *getSRMMProtocolSettings(const char *protocolName);
virtual ProtocolSettings *getSRMMProtocolSettings(HANDLE hContact);
virtual ProtocolSettings *getHistoryProtocolSettings(const char *protocolName);
virtual ProtocolSettings *getHistoryProtocolSettings(HANDLE hContact);
virtual ProtocolSettings *getChatProtocolSettings(const char *protocolName);
virtual ProtocolSettings *getChatProtocolSettings(HANDLE hContact);
void setLastIEViewEvent(IEVIEWEVENT *event);
virtual void buildHead(IEView *, IEVIEWEVENT *event)=0;
public:
HTMLBuilder();
virtual ~HTMLBuilder();
void appendEventOld(IEView *, IEVIEWEVENT *event);
void appendEventNew(IEView *, IEVIEWEVENT *event);
void clear(IEView *, IEVIEWEVENT *event);
virtual void appendEvent(IEView *, IEVIEWEVENT *event)=0;
};
#endif
|