mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 17:23:23 +00:00
Provide icons for bailout events on the dive profile.
Signed-off-by: Willem Ferguson <willemferguson@zoology.up.ac.za>
This commit is contained in:
parent
0e08c0870a
commit
5f95c226ef
4 changed files with 6 additions and 0 deletions
BIN
icons/CCR.png
Normal file
BIN
icons/CCR.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 998 B |
BIN
icons/OC.png
Normal file
BIN
icons/OC.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
|
@ -84,6 +84,10 @@ void DiveEventItem::setupPixmap(struct gasmix *lastgasmix)
|
|||
#define EVENT_PIXMAP_BIGGER(PIX) QPixmap(QString(PIX)).scaled(sz_bigger, sz_bigger, Qt::KeepAspectRatio, Qt::SmoothTransformation)
|
||||
if (empty_string(internalEvent->name)) {
|
||||
setPixmap(EVENT_PIXMAP(":status-warning-icon"));
|
||||
} else if (same_string_caseinsensitive(internalEvent->name, "OC")) {
|
||||
setPixmap(EVENT_PIXMAP(":bailout-icon"));
|
||||
} else if (same_string_caseinsensitive(internalEvent->name, "CCR") || same_string_caseinsensitive(internalEvent->name, "PSCR")) {
|
||||
setPixmap(EVENT_PIXMAP(":onCCRLoop-icon"));
|
||||
} else if (internalEvent->type == SAMPLE_EVENT_BOOKMARK) {
|
||||
setPixmap(EVENT_PIXMAP(":dive-bookmark-icon"));
|
||||
} else if (event_is_gaschange(internalEvent)) {
|
||||
|
|
|
@ -41,6 +41,8 @@
|
|||
<file alias="gaschange-ean-ICD-icon">icons/Nx_changeICD.png</file>
|
||||
<file alias="gaschange-trimix-ICD-icon">icons/Tmx_changeICD.png</file>
|
||||
<file alias="gaschange-oxygen-ICD-icon">icons/Oxy_changeICD.png</file>
|
||||
<file alias="onCCRLoop-icon">icons/CCR.png</file>
|
||||
<file alias="bailout-icon">icons/OC.png</file>
|
||||
<file alias="dive-bookmark-icon">icons/flag.png</file>
|
||||
<file alias="scale-icon">icons/scale.png</file>
|
||||
<file alias="ruler-icon">icons/ruler.png</file>
|
||||
|
|
Loading…
Add table
Reference in a new issue