diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2021-01-02 22:05:28 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-01-03 13:41:15 -0800 |
commit | fbb17871c9aab2eee71da98163b802836c691476 (patch) | |
tree | 3d28cf5b90df62629c23083e84dd05106ca228c0 /subsurface.qrc | |
parent | 76d94eda235fe0883d88982ad55cef0c0cf9014b (diff) | |
download | subsurface-fbb17871c9aab2eee71da98163b802836c691476.tar.gz |
statistics: add SVG icons representing chart-types
Add a few icons representing chart type (in internal terms:
chart subtypes): bar (grouped, stacked, single), box-and-whisker,
data points, pie. These should be shown in the chart selection
box.
Yes, the "artwork" is not pretty, so see these as a placeholder.
Morover, add a "warning" icon. This icon already existed as SVG,
but was not references (its png render was).
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'subsurface.qrc')
-rw-r--r-- | subsurface.qrc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/subsurface.qrc b/subsurface.qrc index 462857b88..2a6f91428 100644 --- a/subsurface.qrc +++ b/subsurface.qrc @@ -100,5 +100,15 @@ <file alias="gps_good_result-icon">icons/resultgreen.png</file> <file alias="gps_warning_result-icon">icons/resultyellow.png</file> <file alias="gps_bad_result-icon">icons/resultred.png</file> + <file alias="chart-bar-grouped-horizontal-icon">icons/chart_bar_grouped_horizontal.svg</file> + <file alias="chart-bar-grouped-vertical-icon">icons/chart_bar_grouped_vertical.svg</file> + <file alias="chart-bar-stacked-horizontal-icon">icons/chart_bar_stacked_horizontal.svg</file> + <file alias="chart-bar-stacked-vertical-icon">icons/chart_bar_stacked_vertical.svg</file> + <file alias="chart-bar-horizontal-icon">icons/chart_bar_horizontal.svg</file> + <file alias="chart-bar-vertical-icon">icons/chart_bar_vertical.svg</file> + <file alias="chart-box-icon">icons/chart_box.svg</file> + <file alias="chart-pie-icon">icons/chart_pie.svg</file> + <file alias="chart-points-icon">icons/chart_points.svg</file> + <file alias="chart-warning-icon">icons/warning-icon.svg</file> </qresource> </RCC> |