-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvancedfind.h
45 lines (32 loc) · 970 Bytes
/
advancedfind.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef ADVANCEDFIND_H
#define ADVANCEDFIND_H
#include <QDialog>
#include "contact.h"
namespace Ui {
class AdvancedFind;
}
class AdvancedFind : public QDialog
{
Q_OBJECT
public:
explicit AdvancedFind(QWidget *parent = 0);
~AdvancedFind();
Contact::ContactRecord categorySearch1() ;
Contact::ContactRecord categorySearch2() ;
Contact::ContactRecord categoryFlag1() ;
Contact::ContactRecord categoryFlag2() ;
QString searchText1() ;
QString searchText2() ;
bool flagChecked1() ;
bool flagChecked2() ;
private slots:
void on_buttonBox_accepted();
void on_buttonBox_rejected();
void on_comboBox_SearchCategory1_currentIndexChanged(int index);
void on_comboBox_SearchCategory2_currentIndexChanged(int index);
void on_comboBox_SearchFlag1_currentIndexChanged(int index);
void on_comboBox_SearchFlag2_currentIndexChanged(int index);
private:
Ui::AdvancedFind *ui;
};
#endif // ADVANCEDFIND_H