fixes
[fapman] / searchoptions.h
1 #ifndef SEARCHOPTIONS_H
2 #define SEARCHOPTIONS_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class SearchOptions;
8 }
9
10 class SearchOptions : public QDialog
11 {
12     Q_OBJECT
13
14 public:
15     explicit SearchOptions(QWidget *parent = 0);
16     ~SearchOptions();
17
18         void setSelections(bool pkgname, bool dispname, bool dshort, bool dlong);
19         bool searchPkgName();
20         bool searchDisplayName();
21         bool searchDescShort();
22         bool searchDescLong();
23
24 protected:
25     void changeEvent(QEvent *e);
26
27 private:
28     Ui::SearchOptions *ui;
29 };
30
31 #endif // SEARCHOPTIONS_H