diff options
author | Joseph W. Joshua <joejoshw@gmail.com> | 2014-05-29 18:54:19 +0300 |
---|---|---|
committer | Thiago Macieira <thiago@macieira.org> | 2014-08-09 11:50:14 -0300 |
commit | ec02737eda780284562692168569d9dd3837a1a9 (patch) | |
tree | 83f6e03969b192b9c18f3a5e6d1c16531d20cdd7 /qt-ui/configuredivecomputerdialog.h | |
parent | af1d77056eaa419c281c88ff5c354a0bafe2b595 (diff) | |
download | subsurface-ec02737eda780284562692168569d9dd3837a1a9.tar.gz |
Create Dive Computer configuration dialog
Create a dialog for reading and writing settings to and
from dive computers, with a menu entry in MainWindow to
open the dialog.
I will build up on this dialog and change it as needed.
Signed-off-by: Joseph W. Joshua <joejoshw@gmail.com>
Signed-off-by: Thiago Macieira <thiago@macieira.org>
Diffstat (limited to 'qt-ui/configuredivecomputerdialog.h')
-rw-r--r-- | qt-ui/configuredivecomputerdialog.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/qt-ui/configuredivecomputerdialog.h b/qt-ui/configuredivecomputerdialog.h new file mode 100644 index 000000000..b1f3924cf --- /dev/null +++ b/qt-ui/configuredivecomputerdialog.h @@ -0,0 +1,22 @@ +#ifndef CONFIGUREDIVECOMPUTERDIALOG_H +#define CONFIGUREDIVECOMPUTERDIALOG_H + +#include <QDialog> + +namespace Ui { +class ConfigureDiveComputerDialog; +} + +class ConfigureDiveComputerDialog : public QDialog +{ + Q_OBJECT + +public: + explicit ConfigureDiveComputerDialog(QWidget *parent = 0); + ~ConfigureDiveComputerDialog(); + +private: + Ui::ConfigureDiveComputerDialog *ui; +}; + +#endif // CONFIGUREDIVECOMPUTERDIALOG_H |