summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/Text.h
blob: 4c689be8619955fb8314bf579378512dd4575449 (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
#ifndef __Text_h
#define __Text_h
#include <stdio.h>
#include <sys/stat.h>
#include "CExpander.h"

class Text: public CExpander {
  FILE* file;
public:
  Text() : file(NULL) {};
  virtual ~Text() { if (file != NULL) fclose(file); }
  virtual int openfile(const tchar *src)
    {
      if (file != NULL) fclose(file);
      return ((file = fopen(src,"rb")) == NULL);
    }
  virtual int getch() { return fgetc(file); }
  virtual unsigned int locate() { return ftell(file); }
  virtual void locate(unsigned int n) { fseek(file,n,SEEK_SET); }
  virtual bool hasrandomaccess() { return true; }
  virtual void sizes(unsigned long& _file, unsigned long& _text)
    {
      struct stat _stat;
      fstat(fileno(file),&_stat);
      _text = _file = _stat.st_size;
    }
};
#endif