mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	This is a functional but hard to expand model for the dive sites. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			56 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "completionmodels.h"
 | |
| #include "dive.h"
 | |
| #include "mainwindow.h"
 | |
| 
 | |
| #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->next;
 | |
| 	while (current_tag_entry != NULL) {
 | |
| 		list.append(QString(current_tag_entry->tag->name));
 | |
| 		current_tag_entry = current_tag_entry->next;
 | |
| 	}
 | |
| 	setStringList(list);
 | |
| }
 |