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) (show whitespace changes)
-rw-r--r--noncore/apps/opie-reader/BuffDoc.h58
1 files changed, 40 insertions, 18 deletions
diff --git a/noncore/apps/opie-reader/BuffDoc.h b/noncore/apps/opie-reader/BuffDoc.h
index 61531c0..a7dd7bf 100644
--- a/noncore/apps/opie-reader/BuffDoc.h
+++ b/noncore/apps/opie-reader/BuffDoc.h
@@ -4,8 +4,5 @@
#include "useqpe.h"
-#include "ZText.h"
-#include "Aportis.h"
-#include "ztxt.h"
-#include "ppm_expander.h"
#include "CDrawBuffer.h"
#include "CFilter.h"
+#include "CExpander.h"
#include <qfontmetrics.h>
@@ -19,5 +16,15 @@ class BuffDoc
bool lastispara;
- CExpander* exp;
+ CExpander_Interface* exp;
CFilterChain* filt;
+ int m_hyphenthreshold;
+ // bool m_customhyphen;
public:
+ QString about();
+ bool findanchor(const QString& nm)
+ {
+ return filt->findanchor(nm);
+ }
+ // void setCustomHyphen(bool _v) { m_customhyphen = _v; }
+ // bool getCustomHyphen() { return m_customhyphen; }
+ void setHyphenThreshold(int _v) { m_hyphenthreshold = _v; }
void setSaveData(unsigned char*& data, unsigned short& len, unsigned char* src, unsigned short srclen)
@@ -58,3 +65,3 @@ class BuffDoc
lastword.empty();
- // odebug << "Buffdoc created" << oendl;
+// // qDebug("Buffdoc created");
}
@@ -77,3 +84,4 @@ class BuffDoc
{
- filt->getch(ch, sty);
+ unsigned long dummy;
+ filt->getch(ch, sty, dummy);
}
@@ -81,3 +89,3 @@ class BuffDoc
}
- void getch(tchar& ch, CStyle& sty)
+ void getch(tchar& ch, CStyle& sty, unsigned long& pos)
{
@@ -85,3 +93,3 @@ class BuffDoc
{
- filt->getch(ch, sty);
+ filt->getch(ch, sty, pos);
}
@@ -98,8 +106,18 @@ class BuffDoc
MarkupType PreferredMarkup() { return (exp == NULL) ? cTEXT : exp->PreferredMarkup(); }
- linkType hyperlink(unsigned int n, QString& wrd);
+ linkType hyperlink(unsigned int n, unsigned int noff, QString& wrd, QString& nm);
size_t getHome() { return ((exp != NULL) ? exp->getHome() : 0); }
void locate(unsigned int n);
- 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); }
+ bool getline(CDrawBuffer* buff, int w, unsigned short _lborder, unsigned short _rborder, bool hyphenate, int availht);
+ bool getline(CDrawBuffer* buff, int w, int cw, unsigned short _lborder, unsigned short _rborder, int availht);
+ void sizes(unsigned long& fs, unsigned long& ts)
+ {
+ if (exp != NULL)
+ {
+ exp->sizes(fs,ts);
+ }
+ else
+ {
+ fs = ts = 0;
+ }
+ }
int getpara(CBuffer& buff)
@@ -114,7 +132,11 @@ 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); }
- bool back(size_t& loc) { return exp->back(loc); }
- bool hasnavigation() { return exp->hasnavigation(); }
+ void saveposn(const QString& f, size_t posn) { filt->saveposn(f, posn); }
+ void writeposn(const QString& f, size_t posn) { filt->writeposn(f, posn); }
+ linkType forward(QString& f, size_t& loc) { return filt->forward(f, loc); }
+ linkType back(QString& f, size_t& loc) { return filt->back(f, loc); }
+ bool hasnavigation() { return filt->hasnavigation(); }
+ bool getFile(QString href)
+ {
+ return (exp == NULL) ? false : exp->getFile(href);
+ }
};