diff options
Diffstat (limited to 'qt-models/completionmodels.h')
-rw-r--r-- | qt-models/completionmodels.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/qt-models/completionmodels.h b/qt-models/completionmodels.h new file mode 100644 index 000000000..859b8c007 --- /dev/null +++ b/qt-models/completionmodels.h @@ -0,0 +1,36 @@ +#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 LocationCompletionModel : 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 |