2017-04-27 20:25:32 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-08-13 10:30:22 -03:00
|
|
|
#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();
|
|
|
|
};
|
|
|
|
|
2013-11-02 02:20:02 +01:00
|
|
|
class TagCompletionModel : public QStringListModel {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
void updateModel();
|
|
|
|
};
|
|
|
|
|
2014-02-11 19:14:46 +01:00
|
|
|
#endif // COMPLETIONMODELS_H
|