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.
34 lines
499 B
34 lines
499 B
#ifndef KHC_HTMLSEARCH_H
|
|
#define KHC_HTMLSEARCH_H
|
|
|
|
#include <qobject.h>
|
|
#include <qstring.h>
|
|
|
|
class KConfig;
|
|
|
|
namespace KHC {
|
|
|
|
class DocEntry;
|
|
|
|
class HTMLSearch : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
HTMLSearch();
|
|
~HTMLSearch();
|
|
|
|
void setupDocEntry( KHC::DocEntry * );
|
|
|
|
QString defaultSearch( KHC::DocEntry * );
|
|
QString defaultIndexer( KHC::DocEntry * );
|
|
QString defaultIndexTestFile( KHC::DocEntry * );
|
|
|
|
private:
|
|
KConfig *mConfig;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
// vim:ts=2:sw=2:et
|