diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-02-23 15:28:31 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-02-23 15:28:31 -0800 |
commit | b5a02e50aa94c10d2c9f2062af6b4e8d9cfb9294 (patch) | |
tree | bbb1b714255c8c66fd9bf9d4d05d7f2d8f1c9d24 /qt-ui/profile | |
parent | 76393a2f536dd6823b08ec3a53ffcb16b216bbf4 (diff) | |
download | subsurface-b5a02e50aa94c10d2c9f2062af6b4e8d9cfb9294.tar.gz |
New profile: create new class for DiveHeartrateItem
This allows us to give it a different color (red) and make it a smaller
size.
While implementing this I also fixed the size of the temperature text in
the new profile.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile')
-rw-r--r-- | qt-ui/profile/diveprofileitem.cpp | 69 | ||||
-rw-r--r-- | qt-ui/profile/diveprofileitem.h | 10 | ||||
-rw-r--r-- | qt-ui/profile/profilewidget2.cpp | 2 | ||||
-rw-r--r-- | qt-ui/profile/profilewidget2.h | 3 |
4 files changed, 81 insertions, 3 deletions
diff --git a/qt-ui/profile/diveprofileitem.cpp b/qt-ui/profile/diveprofileitem.cpp index a16ef7dd3..cb0a8cc46 100644 --- a/qt-ui/profile/diveprofileitem.cpp +++ b/qt-ui/profile/diveprofileitem.cpp @@ -216,6 +216,73 @@ void DiveProfileItem::plot_depth_sample(struct plot_data *entry,QFlags<Qt::Align texts.append(item); } +DiveHeartrateItem::DiveHeartrateItem() +{ + QPen pen; + pen.setBrush(QBrush(getColor(::HR_PLOT))); + pen.setCosmetic(true); + pen.setWidth(1); + setPen(pen); +} + +void DiveHeartrateItem::modelDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) +{ + int last = -300, last_printed_hr = 0, sec = 0, last_valid_hr = 0; + // We don't have enougth data to calculate things, quit. + if (!shouldCalculateStuff(topLeft, bottomRight)) + return; + + qDeleteAll(texts); + texts.clear(); + // Ignore empty values. things do not look good with '0' as temperature in kelvin... + QPolygonF poly; + for (int i = 0, modelDataCount = dataModel->rowCount(); i < modelDataCount; i++) { + int hr = dataModel->index(i, vDataColumn).data().toInt(); + if (!hr) + continue; + last_valid_hr = hr; + sec = dataModel->index(i, hDataColumn).data().toInt(); + QPointF point( hAxis->posAtValue(sec), vAxis->posAtValue(hr)); + poly.append(point); + + /* don't print a HR + * if it's been less than 5min and less than a 20 beats change OR + * if it's been less than 2min OR if the change from the + * last print is less than 10 beats */ + if (((sec < last + 300) && (abs(hr - last_printed_hr) < 20)) || + (sec < last + 120) || + (abs(hr - last_printed_hr) < 10)) + continue; + last = sec; + if (hr > 0) + createTextItem(sec, hr); + last_printed_hr = hr; + } + setPolygon(poly); + + if( texts.count()) + texts.last()->setAlignment(Qt::AlignLeft | Qt::AlignBottom); +} + +void DiveHeartrateItem::createTextItem(int sec, int hr) +{ + DiveTextItem *text = new DiveTextItem(this); + text->setAlignment(Qt::AlignRight | Qt::AlignBottom); + text->setBrush(getColor(HR_TEXT)); + text->setPos(QPointF(hAxis->posAtValue(sec), vAxis->posAtValue(hr))); + text->setScale(0.7); // need to call this BEFORE setText() + text->setText(QString("%1").arg(hr)); + texts.append(text); +} + +void DiveHeartrateItem::paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget) +{ + if(polygon().isEmpty()) + return; + painter->setPen(pen()); + painter->drawPolyline(polygon()); +} + DiveTemperatureItem::DiveTemperatureItem() { QPen pen; @@ -281,8 +348,8 @@ void DiveTemperatureItem::createTextItem(int sec, int mkelvin) text->setAlignment(Qt::AlignRight | Qt::AlignBottom); text->setBrush(getColor(TEMP_TEXT)); text->setPos(QPointF(hAxis->posAtValue(sec), vAxis->posAtValue(mkelvin))); + text->setScale(0.8); // need to call this BEFORE setText() text->setText(QString("%1%2").arg(deg, 0, 'f', 1).arg(unit)); - // text->setSize(TEMP_TEXT_SIZE); //TODO: TEXT SIZE! texts.append(text); } diff --git a/qt-ui/profile/diveprofileitem.h b/qt-ui/profile/diveprofileitem.h index e8bac0421..86ea01c64 100644 --- a/qt-ui/profile/diveprofileitem.h +++ b/qt-ui/profile/diveprofileitem.h @@ -88,6 +88,16 @@ private: void createTextItem(int seconds, int mkelvin); }; +class DiveHeartrateItem : public AbstractProfilePolygonItem { + Q_OBJECT +public: + DiveHeartrateItem(); + virtual void modelDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight); + virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget); +private: + void createTextItem(int seconds, int hr); +}; + class DiveGasPressureItem : public AbstractProfilePolygonItem{ Q_OBJECT diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp index 2d4b71f46..9094669fd 100644 --- a/qt-ui/profile/profilewidget2.cpp +++ b/qt-ui/profile/profilewidget2.cpp @@ -76,7 +76,7 @@ ProfileWidget2::ProfileWidget2(QWidget *parent) : pheGasItem( new PartialPressureGasItem()), po2GasItem( new PartialPressureGasItem()), heartBeatAxis(new DiveCartesianAxis()), - heartBeatItem(new DiveTemperatureItem()) // FIXME: making this a DiveTemperatureItem is a hack + heartBeatItem(new DiveHeartrateItem()) { memset(&plotInfo, 0, sizeof(plotInfo)); diff --git a/qt-ui/profile/profilewidget2.h b/qt-ui/profile/profilewidget2.h index 6b244d251..31f806451 100644 --- a/qt-ui/profile/profilewidget2.h +++ b/qt-ui/profile/profilewidget2.h @@ -32,6 +32,7 @@ class DiveCartesianAxis; class DiveProfileItem; class TimeAxis; class DiveTemperatureItem; +class DiveHeartrateItem; class DiveGasPressureItem; class DiveCalculatedCeiling; class DiveCalculatedTissue; @@ -98,7 +99,7 @@ private: PartialPressureGasItem *pheGasItem; PartialPressureGasItem *po2GasItem; DiveCartesianAxis *heartBeatAxis; - DiveTemperatureItem *heartBeatItem; + DiveHeartrateItem *heartBeatItem; }; #endif // PROFILEWIDGET2_H |