diff options
Diffstat (limited to 'qt-ui/divelogexportdialog.h')
-rw-r--r-- | qt-ui/divelogexportdialog.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/qt-ui/divelogexportdialog.h b/qt-ui/divelogexportdialog.h new file mode 100644 index 000000000..92510a7aa --- /dev/null +++ b/qt-ui/divelogexportdialog.h @@ -0,0 +1,28 @@ +#ifndef DIVELOGEXPORTDIALOG_H +#define DIVELOGEXPORTDIALOG_H + +#include <QDialog> +#include <QAbstractButton> + +namespace Ui { + class DiveLogExportDialog; +} + +class DiveLogExportDialog : public QDialog { + Q_OBJECT + +public: + explicit DiveLogExportDialog(QWidget *parent = 0); + ~DiveLogExportDialog(); + +private +slots: + void on_buttonBox_accepted(); + void on_exportGroup_buttonClicked(QAbstractButton *); + +private: + Ui::DiveLogExportDialog *ui; + void showExplanation(); +}; + +#endif // DIVELOGEXPORTDIALOG_H |