mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
6200909ba4
Make dive.h a bit slimmer. It's only a drop in the bucket - but at least when modifying tag functions not the *whole* application is rebuilt anymore. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
59 lines
2.8 KiB
C++
59 lines
2.8 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "qt-models/completionmodels.h"
|
|
#include "core/dive.h"
|
|
#include "core/tag.h"
|
|
#include <QSet>
|
|
#include <QString>
|
|
|
|
#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); \
|
|
} \
|
|
} \
|
|
std::sort(list.begin(), list.end()); \
|
|
setStringList(list); \
|
|
}
|
|
|
|
#define CREATE_CSV_UPDATE_METHOD(Class, diveStructMember) \
|
|
void Class::updateModel() \
|
|
{ \
|
|
QSet<QString> set; \
|
|
struct dive *dive; \
|
|
int i = 0; \
|
|
for_each_dive (i, dive) \
|
|
{ \
|
|
QString buddy(dive->diveStructMember); \
|
|
foreach (const QString &value, buddy.split(",", QString::SkipEmptyParts)) \
|
|
{ \
|
|
set.insert(value.trimmed()); \
|
|
} \
|
|
} \
|
|
QStringList setList = set.toList(); \
|
|
std::sort(setList.begin(), setList.end()); \
|
|
setStringList(setList); \
|
|
}
|
|
|
|
CREATE_CSV_UPDATE_METHOD(BuddyCompletionModel, buddy);
|
|
CREATE_CSV_UPDATE_METHOD(DiveMasterCompletionModel, divemaster);
|
|
CREATE_UPDATE_METHOD(SuitCompletionModel, suit);
|
|
|
|
void TagCompletionModel::updateModel()
|
|
{
|
|
if (g_tag_list == NULL)
|
|
return;
|
|
QStringList list;
|
|
struct tag_entry *current_tag_entry = g_tag_list;
|
|
while (current_tag_entry != NULL) {
|
|
list.append(QString(current_tag_entry->tag->name));
|
|
current_tag_entry = current_tag_entry->next;
|
|
}
|
|
setStringList(list);
|
|
}
|