2013-08-13 13:30:22 +00:00
|
|
|
#include "completionmodels.h"
|
|
|
|
#include "dive.h"
|
2013-11-30 17:18:04 +00:00
|
|
|
#include "mainwindow.h"
|
2013-08-13 13:30:22 +00:00
|
|
|
|
|
|
|
#define CREATE_SINGLETON(X) \
|
|
|
|
X* X::instance() \
|
|
|
|
{ \
|
2013-11-30 17:18:04 +00:00
|
|
|
static QScopedPointer<X> self(new X()); \
|
|
|
|
return self.data(); \
|
2013-08-13 13:30:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CREATE_SINGLETON(BuddyCompletionModel);
|
|
|
|
CREATE_SINGLETON(DiveMasterCompletionModel);
|
|
|
|
CREATE_SINGLETON(LocationCompletionModel);
|
|
|
|
CREATE_SINGLETON(SuitCompletionModel);
|
2013-11-02 01:20:02 +00:00
|
|
|
CREATE_SINGLETON(TagCompletionModel);
|
2013-08-13 13:30:22 +00:00
|
|
|
|
|
|
|
#undef CREATE_SINGLETON
|
|
|
|
|
|
|
|
#define CREATE_UPDATE_METHOD(Class, diveStructMember) \
|
|
|
|
void Class::updateModel() \
|
|
|
|
{ \
|
|
|
|
QStringList list; \
|
|
|
|
struct dive* dive; \
|
|
|
|
int i = 0; \
|
|
|
|
for_each_dive(i, dive){ \
|
|
|
|
QString buddy(dive->diveStructMember); \
|
|
|
|
if (!list.contains(buddy)){ \
|
|
|
|
list.append(buddy); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
setStringList(list); \
|
|
|
|
}
|
|
|
|
|
|
|
|
CREATE_UPDATE_METHOD(BuddyCompletionModel, buddy);
|
|
|
|
CREATE_UPDATE_METHOD(DiveMasterCompletionModel, divemaster);
|
|
|
|
CREATE_UPDATE_METHOD(LocationCompletionModel, location);
|
|
|
|
CREATE_UPDATE_METHOD(SuitCompletionModel, suit);
|
|
|
|
|
2013-11-02 01:20:02 +00:00
|
|
|
void TagCompletionModel::updateModel()
|
|
|
|
{
|
|
|
|
if(g_tag_list == NULL)
|
|
|
|
return;
|
|
|
|
QStringList list;
|
|
|
|
struct tag_entry *current_tag_entry = g_tag_list->next;
|
|
|
|
while (current_tag_entry != NULL) {
|
|
|
|
list.append(QString(current_tag_entry->tag->name));
|
|
|
|
current_tag_entry = current_tag_entry->next;
|
|
|
|
}
|
|
|
|
setStringList(list);
|
|
|
|
}
|