00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef RAWTEXT_H
00024 #define RAWTEXT_H
00025
00026 #include <rawverse.h>
00027 #include <rawstr.h>
00028 #include <swtext.h>
00029
00030 #include <defs.h>
00031
00032 class SWDLLEXPORT RawText:public SWText, public RawVerse {
00033 RawStr *fastSearch[2];
00034
00035 public:
00036
00037
00038 RawText (const char *ipath, const char *iname = 0, const char *idesc = 0, SWDisplay * idisp = 0, SWTextEncoding encoding = ENC_UNKNOWN, SWTextDirection dir = DIRECTION_LTR, SWTextMarkup markup = FMT_UNKNOWN,
00039 const char* ilang = 0);
00040 virtual ~ RawText ();
00041 virtual char *getRawEntry ();
00042 virtual SWModule & operator += (int increment);
00043 virtual SWModule & operator -= (int decrement) { return this->operator += (-decrement); }
00044 virtual signed char createSearchFramework ();
00045 virtual bool hasSearchFramework () { return true; }
00046 #ifdef _MSC_VER
00047 virtual SWModule & operator = (SW_POSITION);
00048 #else
00049 virtual RawText & operator = (SW_POSITION);
00050 #endif
00051 virtual ListKey & Search (const char *istr, int searchType = 0, int flags = 0, SWKey * scope = 0, bool * justCheckIfSupported = 0, void (*percent) (char, void *) = &SWModule::nullPercent, void *percentUserData = 0);
00052
00053
00054 virtual bool isWritable () { return ((idxfp[0]->getFd() > 0) && ((idxfp[0]->mode & O_RDWR) == O_RDWR)); }
00055 static char createModule (const char *path) { return RawVerse::createModule (path); }
00056 virtual SWModule & setentry (const char *inbuf, long len);
00057 virtual SWModule & operator << (const char *inbuf);
00058 virtual SWModule & operator << (const SWKey * linkKey);
00059 virtual void deleteEntry ();
00060
00061 };
00062
00063
00064 #endif