diff --git a/scwx-qt/res/textures/images/cursor-17.png b/scwx-qt/res/textures/images/cursor-17.png new file mode 100644 index 00000000..8f6c6dd9 Binary files /dev/null and b/scwx-qt/res/textures/images/cursor-17.png differ diff --git a/scwx-qt/res/textures/images/dot-3.png b/scwx-qt/res/textures/images/dot-3.png new file mode 100644 index 00000000..14c3f4bc Binary files /dev/null and b/scwx-qt/res/textures/images/dot-3.png differ diff --git a/scwx-qt/scwx-qt.qrc b/scwx-qt/scwx-qt.qrc index 79d50f23..285594a1 100644 --- a/scwx-qt/scwx-qt.qrc +++ b/scwx-qt/scwx-qt.qrc @@ -70,7 +70,9 @@ res/palettes/wct/ZDR.pal res/textures/lines/default-1x7.png res/textures/lines/test-pattern.png + res/textures/images/cursor-17.png res/textures/images/crosshairs-24.png + res/textures/images/dot-3.png res/textures/images/mapbox-logo.svg res/textures/images/maptiler-logo.svg diff --git a/scwx-qt/source/scwx/qt/types/texture_types.cpp b/scwx-qt/source/scwx/qt/types/texture_types.cpp index f38038a7..5f7da52b 100644 --- a/scwx-qt/source/scwx/qt/types/texture_types.cpp +++ b/scwx-qt/source/scwx/qt/types/texture_types.cpp @@ -22,6 +22,9 @@ static const std::unordered_map imageTextureInfo_ { {"images/compass-24", ":/res/icons/flaticon/compass-24.png"}}, {ImageTexture::Crosshairs24, {"images/crosshairs-24", ":/res/textures/images/crosshairs-24.png"}}, + {ImageTexture::Cursor17, + {"images/cursor-17", ":/res/textures/images/cursor-17.png"}}, + {ImageTexture::Dot3, {"images/dot-3", ":/res/textures/images/dot-3.png"}}, {ImageTexture::MapboxLogo, {"images/mapbox-logo", ":/res/textures/images/mapbox-logo.svg"}}, {ImageTexture::MapTilerLogo, diff --git a/scwx-qt/source/scwx/qt/types/texture_types.hpp b/scwx-qt/source/scwx/qt/types/texture_types.hpp index be3839ec..593d574d 100644 --- a/scwx-qt/source/scwx/qt/types/texture_types.hpp +++ b/scwx-qt/source/scwx/qt/types/texture_types.hpp @@ -16,6 +16,8 @@ enum class ImageTexture CardinalPoint24, Compass24, Crosshairs24, + Cursor17, + Dot3, MapboxLogo, MapTilerLogo };