mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
7dc642860d
As our menus are getting many export entries, it is better to create a single export dialog where user is able to select the export type and whether to export selected dives or all of them. This should also be more intuitive than the current way when export from file menu export all dives and right click menu on divelist exports only selected dives. Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
25 lines
390 B
C++
25 lines
390 B
C++
#ifndef DIVELOGEXPORTDIALOG_H
|
|
#define DIVELOGEXPORTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class DiveLogExportDialog;
|
|
}
|
|
|
|
class DiveLogExportDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DiveLogExportDialog(QWidget *parent = 0);
|
|
~DiveLogExportDialog();
|
|
|
|
private slots:
|
|
void on_buttonBox_accepted();
|
|
|
|
private:
|
|
Ui::DiveLogExportDialog *ui;
|
|
};
|
|
|
|
#endif // DIVELOGEXPORTDIALOG_H
|