Convert plot_gas_value to gasmix

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2014-06-01 20:59:41 -07:00
parent 28093ae957
commit d740ad1317
4 changed files with 5 additions and 8 deletions

View file

@ -137,7 +137,6 @@ private:
Ui::DivePlanner ui; Ui::DivePlanner ui;
}; };
QString gasToStr(gasmix gas);
QString dpGasToStr(const divedatapoint &p); QString dpGasToStr(const divedatapoint &p);
#endif // DIVEPLANNER_H #endif // DIVEPLANNER_H

View file

@ -463,8 +463,7 @@ void DiveGasPressureItem::modelDataChanged(const QModelIndex &topLeft, const QMo
if (!seen_cyl[cyl]) { if (!seen_cyl[cyl]) {
plot_pressure_value(mbar, entry->sec, Qt::AlignRight | Qt::AlignTop); plot_pressure_value(mbar, entry->sec, Qt::AlignRight | Qt::AlignTop);
plot_gas_value(mbar, entry->sec, Qt::AlignRight | Qt::AlignBottom, plot_gas_value(mbar, entry->sec, Qt::AlignRight | Qt::AlignBottom,
get_o2(&dive->cylinder[cyl].gasmix), dive->cylinder[cyl].gasmix);
get_he(&dive->cylinder[cyl].gasmix));
seen_cyl[cyl] = true; seen_cyl[cyl] = true;
} }
} }
@ -491,11 +490,9 @@ void DiveGasPressureItem::plot_pressure_value(int mbar, int sec, QFlags<Qt::Alig
texts.push_back(text); texts.push_back(text);
} }
void DiveGasPressureItem::plot_gas_value(int mbar, int sec, QFlags<Qt::AlignmentFlag> flags, int o2, int he) void DiveGasPressureItem::plot_gas_value(int mbar, int sec, QFlags<Qt::AlignmentFlag> flags, struct gasmix gasmix)
{ {
QString gas = (is_air(o2, he)) ? tr("air") : QString gas = gasToStr(gasmix);
(he == 0) ? QString(tr("EAN%1")).arg((o2 + 5) / 10) :
QString("%1/%2").arg((o2 + 5) / 10).arg((he + 5) / 10);
DiveTextItem *text = new DiveTextItem(this); DiveTextItem *text = new DiveTextItem(this);
text->setPos(hAxis->posAtValue(sec), vAxis->posAtValue(mbar)); text->setPos(hAxis->posAtValue(sec), vAxis->posAtValue(mbar));
text->setText(gas); text->setText(gas);

View file

@ -120,7 +120,7 @@ public:
private: private:
void plot_pressure_value(int mbar, int sec, QFlags<Qt::AlignmentFlag> align); void plot_pressure_value(int mbar, int sec, QFlags<Qt::AlignmentFlag> align);
void plot_gas_value(int mbar, int sec, QFlags<Qt::AlignmentFlag> align, int o2, int he); void plot_gas_value(int mbar, int sec, QFlags<Qt::AlignmentFlag> align, struct gasmix gasmix);
QVector<QPolygonF> polygons; QVector<QPolygonF> polygons;
}; };

View file

@ -15,4 +15,5 @@ QString weight_string(int weight_in_grams);
bool gpsHasChanged(struct dive *dive, struct dive *master, const QString &gps_text, bool *parsed); bool gpsHasChanged(struct dive *dive, struct dive *master, const QString &gps_text, bool *parsed);
QString printGPSCoords(int lat, int lon); QString printGPSCoords(int lat, int lon);
QList<int> getDivesInTrip(dive_trip_t *trip); QList<int> getDivesInTrip(dive_trip_t *trip);
QString gasToStr(struct gasmix gas);
#endif // QTHELPER_H #endif // QTHELPER_H