-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtestdialog.h
More file actions
32 lines (25 loc) · 884 Bytes
/
testdialog.h
File metadata and controls
32 lines (25 loc) · 884 Bytes
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
/*/////////////////////////////////////////////////////////////
developed by Andreas D. Christ, software(at)quantentunnel.de
using Qt Creator and Qt SDK with non-commercial license, see http://qt.nokia.com
license: GPL or any other license compatible with Qt's license (users choice)
////////////////////////////////////////////////////////////*/
#ifndef TESTDIALOG_H
#define TESTDIALOG_H
#include "ui_testdialog.h"
#include <QDialog>
class QSqlTableModel;
class QSqlRecord;
class TestDialog : public QDialog, private Ui::TestDialog {
Q_OBJECT
public:
TestDialog(QWidget *parent = 0);
private slots:
void on_buttonBox_clicked(QAbstractButton* button);
void on_addColButton_clicked();
void on_insertButton_clicked();
void on_removeButton_clicked();
#ifndef AUTOINCREMENT
void table1PrimeInsert(int row, QSqlRecord& record);
#endif
};
#endif // TESTDIALOG_H