summaryrefslogtreecommitdiffstats
path: root/qt-ui/addweightsystemdialog.h
blob: e99dc08d8e46e6f03de575b22f73016eca06f98f (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
/*
 * addweightsystemdialog.h
 *
 * header file for the add weightsystem dialog of Subsurface
 *
 */
#ifndef ADDWEIGHTSYSTEMDIALOG_H
#define ADDWEIGHTSYSTEMDIALOG_H

#include <QDialog>
#include "../dive.h"

namespace Ui{
	class AddWeightsystemDialog;
}

class AddWeightsystemDialog : public QDialog{
	Q_OBJECT
public:
	explicit AddWeightsystemDialog(QWidget* parent = 0);
	void setWeightsystem(weightsystem_t *ws);
	void updateWeightsystem();

private:
	Ui::AddWeightsystemDialog *ui;
	weightsystem_t *currentWeightsystem;
};


#endif