From b1e50fb157c6c86af28d4beb4e365ec15a08e748 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sat, 28 Jun 2014 21:07:39 -0700 Subject: Profile: change event icon for gaschange This is not ideal, but it gets us closer to what we need. Fixes #556 Signed-off-by: Dirk Hohndel --- icons/gaschange.png | Bin 0 -> 3344 bytes qt-ui/profile/diveeventitem.cpp | 3 +++ subsurface.qrc | 1 + 3 files changed, 4 insertions(+) create mode 100644 icons/gaschange.png diff --git a/icons/gaschange.png b/icons/gaschange.png new file mode 100644 index 000000000..200c132df Binary files /dev/null and b/icons/gaschange.png differ diff --git a/qt-ui/profile/diveeventitem.cpp b/qt-ui/profile/diveeventitem.cpp index f20d44e5c..73d58a672 100644 --- a/qt-ui/profile/diveeventitem.cpp +++ b/qt-ui/profile/diveeventitem.cpp @@ -58,12 +58,15 @@ void DiveEventItem::setEvent(struct event *ev) void DiveEventItem::setupPixmap() { #define EVENT_PIXMAP(PIX) QPixmap(QString(PIX)).scaled(20, 20, Qt::KeepAspectRatio, Qt::SmoothTransformation) +#define EVENT_PIXMAP_BIGGER(PIX) QPixmap(QString(PIX)).scaled(30, 28, Qt::KeepAspectRatio, Qt::SmoothTransformation) if (!internalEvent->name) { setPixmap(EVENT_PIXMAP(":warning")); } else if (internalEvent->type == SAMPLE_EVENT_BOOKMARK) { setPixmap(EVENT_PIXMAP(":flag")); } else if (strcmp(internalEvent->name, "heading") == 0) { setPixmap(EVENT_PIXMAP(":flag")); + } else if (internalEvent->type == SAMPLE_EVENT_GASCHANGE || internalEvent->type == SAMPLE_EVENT_GASCHANGE2) { + setPixmap(EVENT_PIXMAP_BIGGER(":gaschange")); } else { setPixmap(EVENT_PIXMAP(":warning")); } diff --git a/subsurface.qrc b/subsurface.qrc index 48dce73dd..1fc6d68ca 100644 --- a/subsurface.qrc +++ b/subsurface.qrc @@ -12,6 +12,7 @@ icons/maximum.png icons/average.png icons/warning.png + icons/gaschange.png icons/flag.png icons/scale.png icons/ruler.png -- cgit v1.2.3-70-g09d2