mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Desktop: buddies in the dive list
As proposed in RFC #1587, now also alllow buddies to be shown in the divelist. Fixes: #1587 Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
This commit is contained in:
		
							parent
							
								
									77577f717f
								
							
						
					
					
						commit
						12789a3f9f
					
				
					 3 changed files with 21 additions and 0 deletions
				
			
		|  | @ -39,6 +39,7 @@ static QVariant dive_table_alignment(int column) | |||
| 	case DiveTripModel::TAGS: | ||||
| 	case DiveTripModel::PHOTOS: | ||||
| 	case DiveTripModel::COUNTRY: | ||||
| 	case DiveTripModel::BUDDIES: | ||||
| 	case DiveTripModel::LOCATION: | ||||
| 		retVal = int(Qt::AlignLeft | Qt::AlignVCenter); | ||||
| 		break; | ||||
|  | @ -151,6 +152,9 @@ QVariant DiveItem::data(int column, int role) const | |||
| 		case COUNTRY: | ||||
| 			retVal = QString(get_dive_country(dive)); | ||||
| 			break; | ||||
| 		case BUDDIES: | ||||
| 			retVal = QString(dive->buddy); | ||||
| 			break; | ||||
| 		case LOCATION: | ||||
| 			retVal = QString(get_dive_location(dive)); | ||||
| 			break; | ||||
|  | @ -203,6 +207,9 @@ QVariant DiveItem::data(int column, int role) const | |||
| 		case COUNTRY: | ||||
| 			retVal = QString(get_dive_country(dive)); | ||||
| 			break; | ||||
| 		case BUDDIES: | ||||
| 			retVal = QString(dive->buddy); | ||||
| 			break; | ||||
| 		case LOCATION: | ||||
| 			retVal = QString(get_dive_location(dive)); | ||||
| 			break; | ||||
|  | @ -286,6 +293,9 @@ QVariant DiveItem::data(int column, int role) const | |||
| 		case COUNTRY: | ||||
| 			retVal = tr("Country"); | ||||
| 			break; | ||||
| 		case BUDDIES: | ||||
| 			retVal = tr("Buddy"); | ||||
| 			break; | ||||
| 		case LOCATION: | ||||
| 			retVal = tr("Location"); | ||||
| 			break; | ||||
|  | @ -522,6 +532,9 @@ QVariant DiveTripModel::headerData(int section, Qt::Orientation orientation, int | |||
| 		case COUNTRY: | ||||
| 			ret = tr("Country"); | ||||
| 			break; | ||||
| 		case BUDDIES: | ||||
| 			ret = tr("Buddy"); | ||||
| 			break; | ||||
| 		case LOCATION: | ||||
| 			ret = tr("Location"); | ||||
| 			break; | ||||
|  | @ -576,6 +589,9 @@ QVariant DiveTripModel::headerData(int section, Qt::Orientation orientation, int | |||
| 		case PHOTOS: | ||||
| 			ret = tr("Media before/during/after dive"); | ||||
| 			break; | ||||
| 		case BUDDIES: | ||||
| 			ret = tr("Buddy"); | ||||
| 			break; | ||||
| 		case LOCATION: | ||||
| 			ret = tr("Location"); | ||||
| 			break; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue