summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/plucker.h
blob: 6d6219589f27b3ee316a583d63b5799b5f6668f6 (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
#ifndef __plucker_h
#define __plucker_h

#include "plucker_base.h"

#ifdef LOCALPICTURES
class QScrollView;
class QWidget;
#endif

class CPlucker : public CPlucker_base
{
    void start2endSection()
	{
	    m_currentstart = currentpos-bufferpos;
	    m_currentend = m_currentstart+buffercontent;
	}
    void setbuffersize()
	{
	    compressedbuffersize = buffersize = 32*1024;
	}
    int HeaderSize();
    void GetHeader(UInt16& uid, UInt16& nParagraphs, UInt32& size, UInt8& type, UInt8& reserved);
    int bgetch();
    tchar getch(bool fast);
    UInt8 EOPPhase;



    bool CorrectDecoder(); // Virtual
    void setlink(QString&, const QString&); // Virtual
    QImage* imagefromdata(UInt8*, UInt32); // virtual
 public:
    CPlucker();
};
#endif