aboutsummaryrefslogtreecommitdiffstats
path: root/qt-models/completionmodels.h
blob: 24ba67e5f154fb8f14abd9e444cd2137409f0663 (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
24
25
26
27
28
29
30
31
// SPDX-License-Identifier: GPL-2.0
#ifndef COMPLETIONMODELS_H
#define COMPLETIONMODELS_H

#include <QStringListModel>

class BuddyCompletionModel : public QStringListModel {
	Q_OBJECT
public:
	void updateModel();
};

class DiveMasterCompletionModel : public QStringListModel {
	Q_OBJECT
public:
	void updateModel();
};

class SuitCompletionModel : public QStringListModel {
	Q_OBJECT
public:
	void updateModel();
};

class TagCompletionModel : public QStringListModel {
	Q_OBJECT
public:
	void updateModel();
};

#endif // COMPLETIONMODELS_H