aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2014-01-21 14:27:44 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-01-21 14:30:36 -0800
commit1f785111f7308850db5ee037b73f761bbfb5f0d1 (patch)
tree318771575b4f3f6d17463c526d55c65aabfbc264 /qt-ui
parentbd960368922f16bc96d114c684cc381754c58a6a (diff)
downloadsubsurface-1f785111f7308850db5ee037b73f761bbfb5f0d1.tar.gz
Whitespace, whitespace, whitespace
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r--qt-ui/profile/diveprofileitem.cpp19
1 files changed, 11 insertions, 8 deletions
diff --git a/qt-ui/profile/diveprofileitem.cpp b/qt-ui/profile/diveprofileitem.cpp
index 158202638..9fda21485 100644
--- a/qt-ui/profile/diveprofileitem.cpp
+++ b/qt-ui/profile/diveprofileitem.cpp
@@ -102,9 +102,10 @@ void DiveProfileItem::paint(QPainter* painter, const QStyleOptionGraphicsItem* o
}
}
-void DiveProfileItem::modelDataChanged(){
+void DiveProfileItem::modelDataChanged()
+{
AbstractProfilePolygonItem::modelDataChanged();
- if(polygon().isEmpty())
+ if (polygon().isEmpty())
return;
show_reported_ceiling = prefs.profile_dc_ceiling;
@@ -132,7 +133,8 @@ void DiveProfileItem::modelDataChanged(){
QLinearGradient pat(0, polygon().boundingRect().top(), 0, polygon().boundingRect().bottom());
pat.setColorAt(1, getColor(DEPTH_BOTTOM));
pat.setColorAt(0, getColor(DEPTH_TOP));
- setBrush(QBrush(pat));AbstractProfilePolygonItem::preferencesChanged();
+ setBrush(QBrush(pat));
+ AbstractProfilePolygonItem::preferencesChanged();
int last = -1;
for (int i = 0, count = dataModel->rowCount(); i < count; i++) {
@@ -198,7 +200,7 @@ void DiveTemperatureItem::modelDataChanged()
int last = -300, last_printed_temp = 0, sec = 0;
for (int i = 0, modelDataCount = dataModel->rowCount(); i < modelDataCount; i++) {
int mkelvin = dataModel->index(i, vDataColumn).data().toInt();
- if(!mkelvin)
+ if (!mkelvin)
continue;
int sec = dataModel->index(i, hDataColumn).data().toInt();
QPointF point( hAxis->posAtValue(sec), vAxis->posAtValue(mkelvin));
@@ -223,7 +225,8 @@ void DiveTemperatureItem::modelDataChanged()
* different or if the last temperature print has been more
* than a quarter of the dive back */
int last_temperature = dataModel->data(dataModel->index(dataModel->rowCount()-1, DivePlotDataModel::TEMPERATURE)).toInt();
- if (last_temperature > 200000 && ((abs(last_temperature - last_printed_temp) > 500) || ((double)last / (double)sec < 0.75))){
+ if (last_temperature > 200000 &&
+ ((abs(last_temperature - last_printed_temp) > 500) || ((double)last / (double)sec < 0.75))) {
createTextItem(sec, last_temperature);
}
}
@@ -345,7 +348,7 @@ void DiveGasPressureItem::paint(QPainter* painter, const QStyleOptionGraphicsIte
QPen pen;
pen.setCosmetic(true);
pen.setWidth(2);
- Q_FOREACH(const QPolygonF& poly, polygons){
+ Q_FOREACH(const QPolygonF& poly, polygons) {
for (int i = 1, count = poly.count(); i < count; i++) {
pen.setBrush(QBrush(Qt::red)); // TODO: Fix the color.
painter->setPen(pen);
@@ -411,9 +414,9 @@ void DiveReportedCeiling::modelDataChanged()
void DiveReportedCeiling::preferencesChanged()
{
- if (prefs.profile_dc_ceiling){
+ if (prefs.profile_dc_ceiling) {
setVisible(prefs.profile_red_ceiling);
- }else{
+ } else {
setVisible(false);
}
}