diff --git a/src/Gui/CommandView.cpp b/src/Gui/CommandView.cpp
index f2005234a8..8ef15b3530 100644
--- a/src/Gui/CommandView.cpp
+++ b/src/Gui/CommandView.cpp
@@ -1984,7 +1984,7 @@ StdViewLoadImage::StdViewLoadImage()
sToolTipText= QT_TR_NOOP("Loads a image");
sWhatsThis = "Std_ViewLoadPicture";
sStatusTip = QT_TR_NOOP("Loads a image");
- //sPixmap = "camera-photo";
+ sPixmap = "image-open";
eType = 0;
}
diff --git a/src/Gui/Icons/image-open.svg b/src/Gui/Icons/image-open.svg
new file mode 100644
index 0000000000..6f199ddda2
--- /dev/null
+++ b/src/Gui/Icons/image-open.svg
@@ -0,0 +1,480 @@
+
+
+
+
diff --git a/src/Gui/Icons/image-plane.svg b/src/Gui/Icons/image-plane.svg
new file mode 100644
index 0000000000..84b26a34d9
--- /dev/null
+++ b/src/Gui/Icons/image-plane.svg
@@ -0,0 +1,557 @@
+
+
+
+
diff --git a/src/Gui/Icons/image-scaling.svg b/src/Gui/Icons/image-scaling.svg
new file mode 100644
index 0000000000..501dd9b5f3
--- /dev/null
+++ b/src/Gui/Icons/image-scaling.svg
@@ -0,0 +1,349 @@
+
+
+
+
diff --git a/src/Gui/Icons/resource.qrc b/src/Gui/Icons/resource.qrc
index 39df69cbc5..90c3458461 100644
--- a/src/Gui/Icons/resource.qrc
+++ b/src/Gui/Icons/resource.qrc
@@ -255,6 +255,9 @@
Std_UserEditModeCutting.svg
Std_UserEditModeColor.svg
Warning.svg
+ image-open.svg
+ image-plane.svg
+ image-scaling.svg
diff --git a/src/Gui/ImageView.cpp b/src/Gui/ImageView.cpp
index 3f3cd7b60f..38059d36ac 100644
--- a/src/Gui/ImageView.cpp
+++ b/src/Gui/ImageView.cpp
@@ -43,6 +43,7 @@
#endif
#include "ImageView.h"
+#include "BitmapFactory.h"
using namespace Gui;
@@ -62,6 +63,7 @@ ImageView::ImageView(QWidget* parent)
scrollArea->setVisible(false);
setCentralWidget(scrollArea);
setAcceptDrops(true);
+ setWindowIcon(Gui::BitmapFactory().pixmap("colors"));
}
bool ImageView::loadFile(const QString& fileName)
diff --git a/src/Gui/ViewProviderImagePlane.cpp b/src/Gui/ViewProviderImagePlane.cpp
index d3240272e4..34aebcca7c 100644
--- a/src/Gui/ViewProviderImagePlane.cpp
+++ b/src/Gui/ViewProviderImagePlane.cpp
@@ -54,6 +54,8 @@ ViewProviderImagePlane::ViewProviderImagePlane()
pcCoords = new SoCoordinate3();
pcCoords->ref();
+
+ sPixmap = "image-plane";
}
ViewProviderImagePlane::~ViewProviderImagePlane()