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.
33 lines
490 B
33 lines
490 B
#ifndef KHC_HTMLSEARCH_H
|
|
#define KHC_HTMLSEARCH_H
|
|
|
|
#include <tqobject.h>
|
|
#include <tqstring.h>
|
|
|
|
class TDEConfig;
|
|
|
|
namespace KHC {
|
|
|
|
class DocEntry;
|
|
|
|
class HTMLSearch : public TQObject
|
|
{
|
|
TQ_OBJECT
|
|
public:
|
|
HTMLSearch();
|
|
~HTMLSearch();
|
|
|
|
void setupDocEntry( KHC::DocEntry * );
|
|
|
|
TQString defaultSearch( KHC::DocEntry * );
|
|
TQString defaultIndexer( KHC::DocEntry * );
|
|
TQString defaultIndexTestFile( KHC::DocEntry * );
|
|
|
|
private:
|
|
TDEConfig *mConfig;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|