aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/tripselectiondialog.h
blob: 9cef28e171aeb06fe2cf866524bd513be52b0cd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// SPDX-License-Identifier: GPL-2.0
#ifndef TRIPSELECTIONDIALOG_H
#define TRIPSELECTIONDIALOG_H

#include <QDialog>
#include "ui_tripselectiondialog.h"

struct dive_trip;

class TripSelectionDialog : public QDialog {
	Q_OBJECT
private
slots:
	void selectionChanged();
public:
	TripSelectionDialog(QWidget *parent); // Must pass in MainWindow for QShortcut hackery.
	dive_trip *getTrip(); // NULL if user canceled.
private:
	dive_trip *selectedTrip() const;
	Ui::TripSelectionDialog ui;
};

#endif // TRIPSELECTIONDIALOG_H