mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 06:30:26 +00:00
f54764cdbc
Not necessary to do own memory management. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
30 lines
702 B
C++
30 lines
702 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef DIVECOMPUTERMANAGEMENTDIALOG_H
|
|
#define DIVECOMPUTERMANAGEMENTDIALOG_H
|
|
#include <QDialog>
|
|
#include "ui_divecomputermanagementdialog.h"
|
|
#include "qt-models/divecomputermodel.h"
|
|
|
|
class QModelIndex;
|
|
|
|
class DiveComputerManagementDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static DiveComputerManagementDialog *instance();
|
|
void update();
|
|
void init();
|
|
|
|
public
|
|
slots:
|
|
void tryRemove(const QModelIndex &index);
|
|
void accept();
|
|
void reject();
|
|
|
|
private:
|
|
explicit DiveComputerManagementDialog(QWidget *parent = 0, Qt::WindowFlags f = 0);
|
|
Ui::DiveComputerManagementDialog ui;
|
|
QScopedPointer<DiveComputerModel> model;
|
|
};
|
|
|
|
#endif // DIVECOMPUTERMANAGEMENTDIALOG_H
|