summaryrefslogtreecommitdiffstats
path: root/qt-ui/maintab.h
blob: e097813626274ba73183e410f0b000bbbfd53cb8 (plain) (blame)
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
/*
 * maintab.h
 *
 * header file for the main tab of Subsurface
 *
 */
#ifndef MAINTAB_H
#define MAINTAB_H

#include <QTabWidget>
#include <QDialog>

#include "models.h"

namespace Ui
{
	class MainTab;
}

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();
	void on_addWeight_clicked();
	void on_editWeight_clicked();
	void on_delWeight_clicked();

	void updateDiveInfo(int dive);

private:
	Ui::MainTab *ui;
	WeightModel *weightModel;
	CylindersModel *cylindersModel;
};

#endif