2014-05-20 19:33:32 +03:00
|
|
|
#ifndef DIVELOGEXPORTDIALOG_H
|
|
|
|
#define DIVELOGEXPORTDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2014-05-23 23:28:08 +03:00
|
|
|
#include <QAbstractButton>
|
2014-05-20 19:33:32 +03:00
|
|
|
|
|
|
|
namespace Ui {
|
2014-05-22 11:40:22 -07:00
|
|
|
class DiveLogExportDialog;
|
2014-05-20 19:33:32 +03:00
|
|
|
}
|
|
|
|
|
2014-05-22 11:40:22 -07:00
|
|
|
class DiveLogExportDialog : public QDialog {
|
2014-05-20 19:33:32 +03:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit DiveLogExportDialog(QWidget *parent = 0);
|
|
|
|
~DiveLogExportDialog();
|
|
|
|
|
2014-05-22 11:40:22 -07:00
|
|
|
private
|
|
|
|
slots:
|
2014-05-20 19:33:32 +03:00
|
|
|
void on_buttonBox_accepted();
|
2014-05-23 23:28:08 +03:00
|
|
|
void on_exportGroup_buttonClicked(QAbstractButton *);
|
2014-05-20 19:33:32 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::DiveLogExportDialog *ui;
|
2014-05-24 06:42:10 -07:00
|
|
|
void showExplanation();
|
2014-05-20 19:33:32 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DIVELOGEXPORTDIALOG_H
|