00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef FillSearchList_H
00018 #define FillSearchList_H
00019
00020 #include <qstring.h>
00021 #include <qstringlist.h>
00022 #include <qthread.h>
00023 class QObject;
00024
00025 class FillSearchList: public QThread {
00026
00027 protected:
00028 QObject *parent;
00029 QStringList terms;
00030
00031 void run();
00032 void addResult(QString where, QString table, QString cmd, QPtrList<QString> ids, QStringList sl);
00033 public:
00034 QString buildResultRec(QString target, QString s, QStringList keywords, QString heading);
00035 FillSearchList(QObject *parent, QStringList terms);
00036 ~FillSearchList();
00037 };
00038 #endif