51 lines
915 B
C++
51 lines
915 B
C++
#ifndef SETSYSTEM_H
|
|
#define SETSYSTEM_H
|
|
|
|
#include <QWidget>
|
|
#include <QtSql>
|
|
#include <QDataWidgetMapper>
|
|
#include <QSqlTableModel>
|
|
#include <QTableView>
|
|
#include <QStandardItemModel>
|
|
#include <QStyledItemDelegate>
|
|
#include<QAbstractTableModel>
|
|
#include <QPushButton>
|
|
#include <QMessageBox>
|
|
#include "addshu.h"
|
|
#include "shu.h"
|
|
#include "zhong.h"
|
|
#include "addzhong.h"
|
|
#include "yaomin.h"
|
|
#include "lis.h"
|
|
namespace Ui {
|
|
class setsystem;
|
|
}
|
|
|
|
class setsystem : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit setsystem(QWidget *parent = nullptr);
|
|
~setsystem();
|
|
|
|
|
|
|
|
private:
|
|
Ui::setsystem *ui;
|
|
shu *m_shu;
|
|
zhong *m_zhong;
|
|
yaomin *m_yaomin;
|
|
lis *m_lis;
|
|
signals:
|
|
void xitong();
|
|
private slots:
|
|
void on_pushButton_clicked();
|
|
void on_radioButton_2_clicked();
|
|
void on_radioButton_clicked();
|
|
void on_radioButton_3_clicked();
|
|
void on_radioButton_4_clicked();
|
|
};
|
|
|
|
#endif // SETSYSTEM_H
|