summaryrefslogtreecommitdiffstats
path: root/kdoctools/kio_help.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdoctools/kio_help.h')
-rw-r--r--kdoctools/kio_help.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/kdoctools/kio_help.h b/kdoctools/kio_help.h
new file mode 100644
index 000000000..f0f34eea0
--- /dev/null
+++ b/kdoctools/kio_help.h
@@ -0,0 +1,47 @@
+#ifndef __help_h__
+#define __help_h__
+
+
+#include <sys/types.h>
+#include <sys/stat.h>
+
+
+#include <stdio.h>
+#include <unistd.h>
+
+
+#include <qintdict.h>
+#include <qstring.h>
+#include <qvaluelist.h>
+
+
+#include <kio/global.h>
+#include <kio/slavebase.h>
+
+class HelpProtocol : public KIO::SlaveBase
+{
+public:
+
+ HelpProtocol( bool ghelp, const QCString &pool, const QCString &app);
+ virtual ~HelpProtocol() { }
+
+ virtual void get( const KURL& url );
+
+ virtual void mimetype( const KURL& url );
+
+private:
+
+ QString langLookup(const QString& fname);
+ void emitFile( const KURL &url );
+ void get_file( const KURL& url );
+ QString lookupFile(const QString &fname, const QString &query,
+ bool &redirect);
+
+ void unicodeError( const QString &t );
+
+ QString mParsed;
+ bool mGhelp;
+};
+
+
+#endif