summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/BuffDoc.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-reader/BuffDoc.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-reader/BuffDoc.h18
1 files changed, 13 insertions, 5 deletions
diff --git a/noncore/apps/opie-reader/BuffDoc.h b/noncore/apps/opie-reader/BuffDoc.h
index 78d8457..29d0329 100644
--- a/noncore/apps/opie-reader/BuffDoc.h
+++ b/noncore/apps/opie-reader/BuffDoc.h
@@ -3,2 +3,3 @@
+#include "useqpe.h"
#include "ZText.h"
@@ -40,4 +41,9 @@ class BuffDoc
}
+#ifdef USEQPE
void suspend() { if (exp != NULL) exp->suspend(); }
void unsuspend() { if (exp != NULL) exp->unsuspend(); }
+#else
+ void suspend() {}
+ void unsuspend() {}
+#endif
~BuffDoc()
@@ -52,3 +58,3 @@ class BuffDoc
lastword.empty();
- // qDebug("Buffdoc created");
+// // qDebug("Buffdoc created");
}
@@ -84,3 +90,4 @@ class BuffDoc
}
- QPixmap* getPicture(unsigned long tgt) { return (exp == NULL) ? NULL : exp->getPicture(tgt); }
+ void setwidth(int w) { if (exp != NULL) exp->setwidth(w); }
+ QImage* getPicture(unsigned long tgt) { return (exp == NULL) ? NULL : exp->getPicture(tgt); }
unsigned int startSection() { return (exp == NULL) ? 0 : exp->startSection(); }
@@ -91,7 +98,7 @@ class BuffDoc
MarkupType PreferredMarkup() { return (exp == NULL) ? cTEXT : exp->PreferredMarkup(); }
- bool hyperlink(unsigned int n);
+ linkType hyperlink(unsigned int n, QString& wrd);
size_t getHome() { return ((exp != NULL) ? exp->getHome() : 0); }
void locate(unsigned int n);
- bool getline(CDrawBuffer* buff, int w);
- bool getline(CDrawBuffer* buff, int w, int cw);
+ bool getline(CDrawBuffer* buff, int w, unsigned char _border);
+ bool getline(CDrawBuffer* buff, int w, int cw, unsigned char _border);
void sizes(unsigned long& fs, unsigned long& ts) { exp->sizes(fs,ts); }
@@ -108,2 +115,3 @@ class BuffDoc
void saveposn(size_t posn) { exp->saveposn(posn); }
+ void writeposn(size_t posn) { exp->writeposn(posn); }
bool forward(size_t& loc) { return exp->forward(loc); }