summaryrefslogtreecommitdiff
path: root/plugins/IEView/HTMLBuilder.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-07-20 09:19:04 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-07-20 09:19:04 +0000
commitda9f6e8a856fc87172fb0d5997c607b4a930c102 (patch)
treea3f086c9e36a19b717a1cb1026a2eb751cfca078 /plugins/IEView/HTMLBuilder.h
parentaa4076ff72097fd65a6c8a2369749afee6adf034 (diff)
IEView, IgnoreState: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@1070 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEView/HTMLBuilder.h')
-rw-r--r--plugins/IEView/HTMLBuilder.h90
1 files changed, 0 insertions, 90 deletions
diff --git a/plugins/IEView/HTMLBuilder.h b/plugins/IEView/HTMLBuilder.h
deleted file mode 100644
index 9650d60712..0000000000
--- a/plugins/IEView/HTMLBuilder.h
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
-
-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