-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.hpp
78 lines (50 loc) · 1.84 KB
/
mainwindow.hpp
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#ifndef MAINWINDOW_HPP
#define MAINWINDOW_HPP
// #include "qwcomboboxdelegate.hpp"
// #include "qwdatedelegate.hpp"
// #include "qwintdelegate.hpp"
// #include "qwspindoubledelegate.hpp"
#include <QComboBox>
#include <QMainWindow>
#include <QtSql>
QT_BEGIN_NAMESPACE
namespace Ui {
class MainWindow;
}
QT_END_NAMESPACE
class MainWindow : public QMainWindow {
Q_OBJECT
public:
MainWindow(QWidget* parent = nullptr);
~MainWindow();
void openTable();
private slots:
void on_actOpenDB_triggered();
void on_actRevert_triggered();
void on_actSubmit_triggered();
void on_actRecAppend_triggered();
void on_actRecInsert_triggered();
void on_actQuit_triggered();
void on_actFlush_database_triggered();
void on_actScan_triggered();
void onComboBoxindexchanged(int index);
void on_Btn_sqlsearch_clicked();
void on_comboBox_currentTextChanged(const QString& arg1);
private:
Ui::MainWindow* ui;
QSqlDatabase DB; // 数据库连接
QSqlTableModel* tabModel; // 数据模型
QSqlQueryModel* qryModel; //数据库模型
QItemSelectionModel* theSelection; //选择模型
// QWComboBoxDelegate delegateSex; // 自定义数据代理,性别
// QWComboBoxDelegate delegateDepart; // 自定义数据代理,部门
// QWspindoubleDelegate delegateSalary; // 自定义数据代理,工资
// QWDateDelegate delegateBirthdaty; // 自定义数据代理,生日
// QWIntDelegate delegateNO; // 自定义数据代理, 编号
QComboBox* data; // 数据库文件的数据库列表
QStringList gettables();
void updatesetting(QString& str);
void on_currentChanged(const QModelIndex& current, const QModelIndex& previous);
void on_currentRowChanged(const QModelIndex& current, const QModelIndex& previous);
};
#endif // MAINWINDOW_HPP