You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
833 B
48 lines
833 B
15 years ago
|
#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
|