KDocTools
kio_help.h
Go to the documentation of this file.00001 #ifndef __help_h__
00002 #define __help_h__
00003
00004
00005 #include <sys/types.h>
00006 #include <sys/stat.h>
00007
00008
00009 #include <stdio.h>
00010 #include <unistd.h>
00011
00012
00013 #include <qintdict.h>
00014 #include <qstring.h>
00015 #include <qvaluelist.h>
00016
00017
00018 #include <kio/global.h>
00019 #include <kio/slavebase.h>
00020
00021 class HelpProtocol : public KIO::SlaveBase
00022 {
00023 public:
00024
00025 HelpProtocol( bool ghelp, const QCString &pool, const QCString &app);
00026 virtual ~HelpProtocol() { }
00027
00028 virtual void get( const KURL& url );
00029
00030 virtual void mimetype( const KURL& url );
00031
00032 private:
00033
00034 QString langLookup(const QString& fname);
00035 void emitFile( const KURL &url );
00036 void get_file( const KURL& url );
00037 QString lookupFile(const QString &fname, const QString &query,
00038 bool &redirect);
00039
00040 void unicodeError( const QString &t );
00041
00042 QString mParsed;
00043 bool mGhelp;
00044 };
00045
00046
00047 #endif