mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
model: unify tooltip formating in DiveTripModel
The formatting of the tooltips describing the columns was repeated in two functions. Infuriatingly, there were to minor differences: "Max. CNS" vs. "Max CNS" and one version understood "Country". Break that out into a single function to avoid these inconsistencies and to save a few lines of code. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
b3c58e7172
commit
1ce42158f1
2 changed files with 52 additions and 84 deletions
|
@ -211,6 +211,55 @@ static QPixmap &getPhotoIcon(int idx)
|
||||||
return icons[idx];
|
return icons[idx];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// textual description of the meaning of a column for use in tooltips
|
||||||
|
QString DiveTripModelBase::getDescription(int column)
|
||||||
|
{
|
||||||
|
switch (column) {
|
||||||
|
case NR:
|
||||||
|
return tr("#");
|
||||||
|
case DATE:
|
||||||
|
return tr("Date");
|
||||||
|
case RATING:
|
||||||
|
return tr("Rating");
|
||||||
|
case DEPTH:
|
||||||
|
return tr("Depth(%1)").arg((get_units()->length == units::METERS) ? tr("m") : tr("ft"));
|
||||||
|
case DURATION:
|
||||||
|
return tr("Duration");
|
||||||
|
case TEMPERATURE:
|
||||||
|
return tr("Temp.(°%1)").arg((get_units()->temperature == units::CELSIUS) ? "C" : "F");
|
||||||
|
case TOTALWEIGHT:
|
||||||
|
return tr("Weight(%1)").arg((get_units()->weight == units::KG) ? tr("kg") : tr("lbs"));
|
||||||
|
case SUIT:
|
||||||
|
return tr("Suit");
|
||||||
|
case CYLINDER:
|
||||||
|
return tr("Cylinder");
|
||||||
|
case GAS:
|
||||||
|
return tr("Gas");
|
||||||
|
case SAC:
|
||||||
|
const char *unit;
|
||||||
|
get_volume_units(0, NULL, &unit);
|
||||||
|
return tr("SAC(%1)").arg(QString(unit).append(tr("/min")));
|
||||||
|
case OTU:
|
||||||
|
return tr("OTU");
|
||||||
|
case MAXCNS:
|
||||||
|
return tr("Max. CNS");
|
||||||
|
case TAGS:
|
||||||
|
return tr("Tags");
|
||||||
|
case PHOTOS:
|
||||||
|
return tr("Media before/during/after dive");
|
||||||
|
case COUNTRY:
|
||||||
|
return tr("Country");
|
||||||
|
case BUDDIES:
|
||||||
|
return tr("Buddy");
|
||||||
|
case DIVEGUIDE:
|
||||||
|
return tr("Dive guide");
|
||||||
|
case LOCATION:
|
||||||
|
return tr("Location");
|
||||||
|
default:
|
||||||
|
return QString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
QVariant DiveTripModelBase::diveData(const struct dive *d, int column, int role) const
|
QVariant DiveTripModelBase::diveData(const struct dive *d, int column, int role) const
|
||||||
{
|
{
|
||||||
#ifdef SUBSURFACE_MOBILE
|
#ifdef SUBSURFACE_MOBILE
|
||||||
|
@ -326,49 +375,7 @@ QVariant DiveTripModelBase::diveData(const struct dive *d, int column, int role)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case Qt::ToolTipRole:
|
case Qt::ToolTipRole:
|
||||||
switch (column) {
|
return getDescription(column);
|
||||||
case NR:
|
|
||||||
return tr("#");
|
|
||||||
case DATE:
|
|
||||||
return tr("Date");
|
|
||||||
case RATING:
|
|
||||||
return tr("Rating");
|
|
||||||
case DEPTH:
|
|
||||||
return tr("Depth(%1)").arg((get_units()->length == units::METERS) ? tr("m") : tr("ft"));
|
|
||||||
case DURATION:
|
|
||||||
return tr("Duration");
|
|
||||||
case TEMPERATURE:
|
|
||||||
return tr("Temp.(°%1)").arg((get_units()->temperature == units::CELSIUS) ? "C" : "F");
|
|
||||||
case TOTALWEIGHT:
|
|
||||||
return tr("Weight(%1)").arg((get_units()->weight == units::KG) ? tr("kg") : tr("lbs"));
|
|
||||||
case SUIT:
|
|
||||||
return tr("Suit");
|
|
||||||
case CYLINDER:
|
|
||||||
return tr("Cylinder");
|
|
||||||
case GAS:
|
|
||||||
return tr("Gas");
|
|
||||||
case SAC:
|
|
||||||
const char *unit;
|
|
||||||
get_volume_units(0, NULL, &unit);
|
|
||||||
return tr("SAC(%1)").arg(QString(unit).append(tr("/min")));
|
|
||||||
case OTU:
|
|
||||||
return tr("OTU");
|
|
||||||
case MAXCNS:
|
|
||||||
return tr("Max. CNS");
|
|
||||||
case TAGS:
|
|
||||||
return tr("Tags");
|
|
||||||
case PHOTOS:
|
|
||||||
return tr("Media before/during/after dive");
|
|
||||||
case COUNTRY:
|
|
||||||
return tr("Country");
|
|
||||||
case BUDDIES:
|
|
||||||
return tr("Buddy");
|
|
||||||
case DIVEGUIDE:
|
|
||||||
return tr("Dive guide");
|
|
||||||
case LOCATION:
|
|
||||||
return tr("Location");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case STAR_ROLE:
|
case STAR_ROLE:
|
||||||
return d->rating;
|
return d->rating;
|
||||||
case DIVE_ROLE:
|
case DIVE_ROLE:
|
||||||
|
@ -439,47 +446,7 @@ QVariant DiveTripModelBase::headerData(int section, Qt::Orientation orientation,
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case Qt::ToolTipRole:
|
case Qt::ToolTipRole:
|
||||||
switch (section) {
|
return getDescription(section);
|
||||||
case NR:
|
|
||||||
return tr("#");
|
|
||||||
case DATE:
|
|
||||||
return tr("Date");
|
|
||||||
case RATING:
|
|
||||||
return tr("Rating");
|
|
||||||
case DEPTH:
|
|
||||||
return tr("Depth(%1)").arg((get_units()->length == units::METERS) ? tr("m") : tr("ft"));
|
|
||||||
case DURATION:
|
|
||||||
return tr("Duration");
|
|
||||||
case TEMPERATURE:
|
|
||||||
return tr("Temp.(°%1)").arg((get_units()->temperature == units::CELSIUS) ? "C" : "F");
|
|
||||||
case TOTALWEIGHT:
|
|
||||||
return tr("Weight(%1)").arg((get_units()->weight == units::KG) ? tr("kg") : tr("lbs"));
|
|
||||||
case SUIT:
|
|
||||||
return tr("Suit");
|
|
||||||
case CYLINDER:
|
|
||||||
return tr("Cylinder");
|
|
||||||
case GAS:
|
|
||||||
return tr("Gas");
|
|
||||||
case SAC:
|
|
||||||
const char *unit;
|
|
||||||
get_volume_units(0, NULL, &unit);
|
|
||||||
return tr("SAC(%1)").arg(QString(unit).append(tr("/min")));
|
|
||||||
case OTU:
|
|
||||||
return tr("OTU");
|
|
||||||
case MAXCNS:
|
|
||||||
return tr("Max CNS");
|
|
||||||
case TAGS:
|
|
||||||
return tr("Tags");
|
|
||||||
case PHOTOS:
|
|
||||||
return tr("Media before/during/after dive");
|
|
||||||
case BUDDIES:
|
|
||||||
return tr("Buddy");
|
|
||||||
case DIVEGUIDE:
|
|
||||||
return tr("Dive guide");
|
|
||||||
case LOCATION:
|
|
||||||
return tr("Location");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return QVariant();
|
return QVariant();
|
||||||
|
|
|
@ -95,6 +95,7 @@ protected:
|
||||||
static QVariant tripData(const dive_trip *trip, int column, int role);
|
static QVariant tripData(const dive_trip *trip, int column, int role);
|
||||||
static QString tripTitle(const dive_trip *trip);
|
static QString tripTitle(const dive_trip *trip);
|
||||||
static QString tripShortDate(const dive_trip *trip);
|
static QString tripShortDate(const dive_trip *trip);
|
||||||
|
static QString getDescription(int column);
|
||||||
void currentChanged();
|
void currentChanged();
|
||||||
|
|
||||||
virtual dive *diveOrNull(const QModelIndex &index) const = 0; // Returns a dive if this index represents a dive, null otherwise
|
virtual dive *diveOrNull(const QModelIndex &index) const = 0; // Returns a dive if this index represents a dive, null otherwise
|
||||||
|
|
Loading…
Add table
Reference in a new issue