summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/plucker.h
blob: 53189a653b4f0365d1d41713ffc88e225bf52dec (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
37
38
39
#ifndef __plucker_h
#define __plucker_h

#include "plucker_base.h"

#ifdef LOCALPICTURES
class QScrollView;
class QWidget;
#endif

class CPlucker : public CPlucker_base
{
    bool isEndOfSection(int thisrec)
      {
	return !m_bufferisreserved;
      }
    unsigned long NEFstartSection();
    unsigned long NEFendSection();
    void start2endSection();
    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();
    QString about() { return CPlucker_base::about()+QString("\nPlucker codec (c) Tim Wentford - Image reading code based on unpluck by Bill Janssen"); }
};
#endif