From 73253e93327cf4ef0932de1b4afb56af22a0f37e Mon Sep 17 00:00:00 2001 From: pohly Date: Tue, 24 Aug 2004 20:52:45 +0000 Subject: updated source to opie-reader 0.7g --- (limited to 'noncore/apps/opie-reader/plucker_base.h') diff --git a/noncore/apps/opie-reader/plucker_base.h b/noncore/apps/opie-reader/plucker_base.h index 131b999..8d74cc2 100644 --- a/noncore/apps/opie-reader/plucker_base.h +++ b/noncore/apps/opie-reader/plucker_base.h @@ -1,7 +1,6 @@ #ifndef __PLUCKER_BASE_H #define __PLUCKER_BASE_H -#include "useqpe.h" #include "CExpander.h" #include #include "ztxt.h" @@ -9,6 +8,7 @@ #include "CBuffer.h" #include "my_list.h" #include "Navigation.h" +#include "hrule.h" struct CPlucker_record0 { @@ -27,10 +27,12 @@ struct CPluckerbkmk class QScrollView; class QWidget; #endif +class QString; -class CPlucker_base : public CExpander, public Cpdb +class CPlucker_base : public Cpdb { protected: + static const UInt8 continuation_bit; virtual void setbuffersize() = 0; virtual void GetHeader(UInt16&, UInt16&, UInt32&, UInt8&, UInt8&) = 0; virtual int HeaderSize() = 0; @@ -43,7 +45,7 @@ protected: QScrollView* m_viewer; QWidget* m_picture; #endif - size_t textlength, m_lastBreak; + size_t textlength, m_lastBreak, m_offset; UInt16 uid; int m_nextPara, m_nextParaIndex; CBufferFace m_ParaOffsets; @@ -59,13 +61,16 @@ protected: // char* urls; // size_t urlsize; size_t bufferpos; - UInt16 bufferrec; + int bufferrec; CPlucker_record0 hdr0; bool m_bufferisreserved; size_t currentpos; bool expand(int); - void UnZip(UInt8*, size_t, UInt8*, size_t); - void UnDoc(UInt8*, size_t, UInt8*, size_t); + static void UnZip(UInt8*, size_t, UInt8*, size_t); + static void UnDoc(UInt8*, size_t, UInt8*, size_t); + + void (*m_decompress)(UInt8*, size_t, UInt8*, size_t); + void (*getdecompressor(const QString& _s))(UInt8*, size_t, UInt8*, size_t); #ifdef LOCALPICTURES void showimg(UInt16 tgt); #endif @@ -75,16 +80,7 @@ protected: virtual int bgetch() = 0; CNavigation m_nav; public: -#ifdef USEQPE - void suspend() - { - CExpander::suspend(fin); - } - void unsuspend() - { - CExpander::unsuspend(fin); - } -#endif + QString about(); QImage* getPicture(unsigned long tgt); void sizes(unsigned long& _file, unsigned long& _text); bool hasrandomaccess() { return true; } @@ -94,19 +90,19 @@ protected: virtual tchar getch(bool) = 0; tchar getch_base(bool); int getch(); - void getch(tchar&, CStyle&); + void getch(tchar&, CStyle&, unsigned long& pos); unsigned int locate(); void locate(unsigned int n); CList* getbkmklist(); - linkType hyperlink(unsigned int n, QString&); + linkType hyperlink(unsigned int, unsigned int, QString&, QString&); MarkupType PreferredMarkup() { return cNONE; } void saveposn(size_t posn) { m_nav.saveposn(posn); } void writeposn(size_t posn) { m_nav.writeposn(posn); } - bool forward(size_t& loc) { return m_nav.forward(loc); } - bool back(size_t& loc) { return m_nav.back(loc); } + linkType forward(size_t& loc) { return (m_nav.forward(loc)) ? eLink : eNone; } + linkType back(size_t& loc) { return (m_nav.back(loc)) ? eLink : eNone; } bool hasnavigation() { return true; } void setSaveData(unsigned char*& data, unsigned short& len, unsigned char* src, unsigned short srclen); void putSaveData(unsigned char*& src, unsigned short& srclen); -- cgit v0.9.0.2