summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/striphtml.h
authorpohly <pohly>2005-05-05 14:39:33 (UTC)
committer pohly <pohly>2005-05-05 14:39:33 (UTC)
commit39fbfd5eb7e45d73d38e8a2ce9437a3d7e1b8e91 (patch) (side-by-side diff)
tree96e66fdc18dca4d4ab8611133e072f57dea224b9 /noncore/apps/opie-reader/striphtml.h
parent279fc4fd1986074acbadd3a8e86fcf3968a8dd5c (diff)
downloadopie-39fbfd5eb7e45d73d38e8a2ce9437a3d7e1b8e91.zip
opie-39fbfd5eb7e45d73d38e8a2ce9437a3d7e1b8e91.tar.gz
opie-39fbfd5eb7e45d73d38e8a2ce9437a3d7e1b8e91.tar.bz2
new opie-reader sources with support for ArriereGo, Reb input and flite output plugins
Diffstat (limited to 'noncore/apps/opie-reader/striphtml.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-reader/striphtml.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/apps/opie-reader/striphtml.h b/noncore/apps/opie-reader/striphtml.h
index 42e2b7e..b1f7c0a 100644
--- a/noncore/apps/opie-reader/striphtml.h
+++ b/noncore/apps/opie-reader/striphtml.h
@@ -1,25 +1,27 @@
#ifndef __STRIPHTML_H
#define __STRIPHTML_H
#include "CFilter.h"
#include "Navigation.h"
#include "CBuffer.h"
#include "CExpander.h"
#include "my_list.h"
class striphtml : public CFilter
{
+ void reset();
bool ignorespace;
bool m_bchm;
+ int tablenesteddepth;
CList<CStyle> stylestack;
static CNavigation_base<htmlmark> m_nav;
QMap<QString, tchar>* entmap;
CStyle currentstyle;
bool isPre;
unsigned short skip_ws();
unsigned short skip_ws_end();
unsigned short skip_ws_end(unsigned long&);
unsigned short parse_m();
QMap<QString, unsigned long>* href2filepos;
QMap<unsigned long, QString>* id2href;
unsigned long currentid;
@@ -80,14 +82,15 @@ class striphtml : public CFilter
}
}
else
{
f = m.filename();
}
loc = m.posn();
return ret;
}
bool hasnavigation() { return true; }
virtual void locate(unsigned int n);
void setchm(bool _b) { m_bchm = _b; }
+ QString getTableAsHtml(unsigned long loc);
};
#endif