summaryrefslogtreecommitdiffstats
path: root/qt-ui/maintab.h
diff options
context:
space:
mode:
Diffstat (limited to 'qt-ui/maintab.h')
-rw-r--r--qt-ui/maintab.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/qt-ui/maintab.h b/qt-ui/maintab.h
index 40904ab12..0e9f285ac 100644
--- a/qt-ui/maintab.h
+++ b/qt-ui/maintab.h
@@ -2,6 +2,9 @@
#define MAINTAB_H
#include <QTabWidget>
+#include <QDialog>
+
+#include "models.h"
namespace Ui
{
@@ -13,8 +16,20 @@ class MainTab : public QTabWidget
Q_OBJECT
public:
MainTab(QWidget *parent);
+ void clearStats();
+ void clearInfo();
+ void clearEquipment();
+ void reload();
+
+public Q_SLOTS:
+ void on_addCylinder_clicked();
+ void on_editCylinder_clicked();
+ void on_delCylinder_clicked();
+
private:
Ui::MainTab *ui;
+ WeightModel *weightModel;
+ CylindersModel *cylindersModel;
};
-#endif \ No newline at end of file
+#endif