mainWindows spinBox decleration
This commit is contained in:
@ -2,6 +2,11 @@
|
||||
#define MAINWINDOW_H
|
||||
|
||||
#include <QMainWindow>
|
||||
#include "sqmtablemodel.h"
|
||||
|
||||
class SQMTableModel;
|
||||
class QSpinBox;
|
||||
class QTableView;
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
namespace Ui { class MainWindow; }
|
||||
@ -15,7 +20,14 @@ public:
|
||||
MainWindow(QWidget *parent = nullptr);
|
||||
~MainWindow();
|
||||
|
||||
private slots:
|
||||
void SetModel();
|
||||
|
||||
private:
|
||||
Ui::MainWindow *ui;
|
||||
QSpinBox *spinBase, *spinExp, *spinMod;
|
||||
QTableView *resultTable;
|
||||
SQMTableModel *resultTableModel;
|
||||
|
||||
};
|
||||
#endif // MAINWINDOW_H
|
||||
|
Reference in New Issue
Block a user