From a3dfd14c2a207fc4fca657ae5e021ef8bd5bdc9d Mon Sep 17 00:00:00 2001 From: carlopav Date: Sun, 1 Mar 2020 22:09:33 +0100 Subject: [PATCH] [Gui] New Icons for HiddenLine and NoShading Just an experiment, didn't try to compile Gui: Changed icons in Draw Style menu And also saved old icons in pure svg. --- src/Gui/CommandView.cpp | 104 ++--- src/Gui/Icons/DrawStyleAsIs.svg | 529 +++++++++++--------------- src/Gui/Icons/DrawStyleFlatLines.svg | 302 +++++---------- src/Gui/Icons/DrawStyleHiddenLine.svg | 124 ++++++ src/Gui/Icons/DrawStyleNoShading.svg | 124 ++++++ src/Gui/Icons/DrawStylePoints.svg | 340 +++++------------ src/Gui/Icons/DrawStyleShaded.svg | 242 ++++-------- src/Gui/Icons/DrawStyleWireFrame.svg | 212 ++++------- 8 files changed, 860 insertions(+), 1117 deletions(-) create mode 100644 src/Gui/Icons/DrawStyleHiddenLine.svg create mode 100644 src/Gui/Icons/DrawStyleNoShading.svg diff --git a/src/Gui/CommandView.cpp b/src/Gui/CommandView.cpp index 2672074db6..6d8a8356b5 100644 --- a/src/Gui/CommandView.cpp +++ b/src/Gui/CommandView.cpp @@ -597,33 +597,33 @@ Gui::Action * StdCmdDrawStyle::createAction(void) a0->setShortcut(QKeySequence(QString::fromUtf8("V,1"))); QAction* a1 = pcAction->addAction(QString()); a1->setCheckable(true); - a1->setIcon(BitmapFactory().iconFromTheme("DrawStyleFlatLines")); - a1->setObjectName(QString::fromLatin1("Std_DrawStyleFlatLines")); - a1->setShortcut(QKeySequence(QString::fromUtf8("V,2"))); + a1->setIcon(BitmapFactory().iconFromTheme("DrawStylePoints")); + a1->setObjectName(QString::fromLatin1("Std_DrawStylePoints")); + a1->setShortcut(QKeySequence(QString::fromUtf8("V,2"))); QAction* a2 = pcAction->addAction(QString()); a2->setCheckable(true); - a2->setIcon(BitmapFactory().iconFromTheme("DrawStyleShaded")); - a2->setObjectName(QString::fromLatin1("Std_DrawStyleShaded")); + a2->setIcon(BitmapFactory().iconFromTheme("DrawStyleWireFrame")); + a2->setObjectName(QString::fromLatin1("Std_DrawStyleWireframe")); a2->setShortcut(QKeySequence(QString::fromUtf8("V,3"))); QAction* a3 = pcAction->addAction(QString()); a3->setCheckable(true); - a3->setIcon(BitmapFactory().iconFromTheme("DrawStyleWireFrame")); - a3->setObjectName(QString::fromLatin1("Std_DrawStyleWireframe")); + a3->setIcon(BitmapFactory().iconFromTheme("DrawStyleHiddenLine")); + a3->setObjectName(QString::fromLatin1("Std_DrawStyleHiddenLine")); a3->setShortcut(QKeySequence(QString::fromUtf8("V,4"))); QAction* a4 = pcAction->addAction(QString()); a4->setCheckable(true); - a4->setIcon(BitmapFactory().iconFromTheme("DrawStylePoints")); - a4->setObjectName(QString::fromLatin1("Std_DrawStylePoints")); + a4->setIcon(BitmapFactory().iconFromTheme("DrawStyleNoShading")); + a4->setObjectName(QString::fromLatin1("Std_DrawStyleNoShading")); a4->setShortcut(QKeySequence(QString::fromUtf8("V,5"))); QAction* a5 = pcAction->addAction(QString()); a5->setCheckable(true); - a5->setIcon(BitmapFactory().iconFromTheme("DrawStyleWireFrame")); - a5->setObjectName(QString::fromLatin1("Std_DrawStyleHiddenLine")); + a5->setIcon(BitmapFactory().iconFromTheme("DrawStyleShaded")); + a5->setObjectName(QString::fromLatin1("Std_DrawStyleShaded")); a5->setShortcut(QKeySequence(QString::fromUtf8("V,6"))); QAction* a6 = pcAction->addAction(QString()); - a6->setCheckable(true); - a6->setIcon(BitmapFactory().iconFromTheme("DrawStyleWireFrame")); - a6->setObjectName(QString::fromLatin1("Std_DrawStyleNoShading")); + a1->setCheckable(true); + a6->setIcon(BitmapFactory().iconFromTheme("DrawStyleFlatLines")); + a6->setObjectName(QString::fromLatin1("Std_DrawStyleFlatLines")); a6->setShortcut(QKeySequence(QString::fromUtf8("V,7"))); @@ -649,34 +649,34 @@ void StdCmdDrawStyle::languageChange() "Std_DrawStyle", "Normal mode")); a[1]->setText(QCoreApplication::translate( - "Std_DrawStyle", "Flat lines")); - a[1]->setToolTip(QCoreApplication::translate( - "Std_DrawStyle", "Flat lines mode")); - - a[2]->setText(QCoreApplication::translate( - "Std_DrawStyle", "Shaded")); - a[2]->setToolTip(QCoreApplication::translate( - "Std_DrawStyle", "Shaded mode")); - - a[3]->setText(QCoreApplication::translate( - "Std_DrawStyle", "Wireframe")); - a[3]->setToolTip(QCoreApplication::translate( - "Std_DrawStyle", "Wireframe mode")); - - a[4]->setText(QCoreApplication::translate( "Std_DrawStyle", "Points")); - a[4]->setToolTip(QCoreApplication::translate( + a[1]->setToolTip(QCoreApplication::translate( "Std_DrawStyle", "Points mode")); - a[5]->setText(QCoreApplication::translate( + a[2]->setText(QCoreApplication::translate( + "Std_DrawStyle", "Wireframe")); + a[2]->setToolTip(QCoreApplication::translate( + "Std_DrawStyle", "Wireframe mode")); + + a[3]->setText(QCoreApplication::translate( "Std_DrawStyle", "Hidden line")); - a[5]->setToolTip(QCoreApplication::translate( + a[3]->setToolTip(QCoreApplication::translate( "Std_DrawStyle", "Hidden line mode")); - a[6]->setText(QCoreApplication::translate( + a[4]->setText(QCoreApplication::translate( "Std_DrawStyle", "No shading")); - a[6]->setToolTip(QCoreApplication::translate( + a[4]->setToolTip(QCoreApplication::translate( "Std_DrawStyle", "No shading mode")); + + a[5]->setText(QCoreApplication::translate( + "Std_DrawStyle", "Shaded")); + a[5]->setToolTip(QCoreApplication::translate( + "Std_DrawStyle", "Shaded mode")); + + a[6]->setText(QCoreApplication::translate( + "Std_DrawStyle", "Flat lines")); + a[6]->setToolTip(QCoreApplication::translate( + "Std_DrawStyle", "Flat lines mode")); } void StdCmdDrawStyle::updateIcon(const MDIView *view) @@ -692,32 +692,32 @@ void StdCmdDrawStyle::updateIcon(const MDIView *view) if (!actionGroup) return; - if (mode == "Flat Lines") + if (mode == "Point") { actionGroup->setCheckedAction(1); return; } - if (mode == "Shaded") + if (mode == "Wireframe") { actionGroup->setCheckedAction(2); return; } - if (mode == "Wireframe") + if (mode == "Hidden Line") { actionGroup->setCheckedAction(3); return; } - if (mode == "Point") + if (mode == "No shading") { actionGroup->setCheckedAction(4); return; } - if (mode == "Hidden Line") + if (mode == "Shaded") { actionGroup->setCheckedAction(5); return; - } - if (mode == "No shading") + } + if (mode == "Flat Lines") { actionGroup->setCheckedAction(6); return; @@ -743,23 +743,23 @@ void StdCmdDrawStyle::activated(int iMsg) switch (iMsg) { case 1: - (oneChangedSignal) ? viewer->updateOverrideMode("Flat Lines") : viewer->setOverrideMode("Flat Lines"); - break; - case 2: - (oneChangedSignal) ? viewer->updateOverrideMode("Shaded") : viewer->setOverrideMode("Shaded"); - break; - case 3: - (oneChangedSignal) ? viewer->updateOverrideMode("Wireframe") : viewer->setOverrideMode("Wireframe"); - break; - case 4: (oneChangedSignal) ? viewer->updateOverrideMode("Point") : viewer->setOverrideMode("Point"); break; - case 5: + case 2: + (oneChangedSignal) ? viewer->updateOverrideMode("Wireframe") : viewer->setOverrideMode("Wireframe"); + break; + case 3: (oneChangedSignal) ? viewer->updateOverrideMode("Hidden Line") : viewer->setOverrideMode("Hidden Line"); break; - case 6: + case 4: (oneChangedSignal) ? viewer->updateOverrideMode("No Shading") : viewer->setOverrideMode("No Shading"); break; + case 5: + (oneChangedSignal) ? viewer->updateOverrideMode("Shaded") : viewer->setOverrideMode("Shaded"); + break; + case 6: + (oneChangedSignal) ? viewer->updateOverrideMode("Flat Lines") : viewer->setOverrideMode("Flat Lines"); + break; default: (oneChangedSignal) ? viewer->updateOverrideMode("As Is") : viewer->setOverrideMode("As Is"); break; diff --git a/src/Gui/Icons/DrawStyleAsIs.svg b/src/Gui/Icons/DrawStyleAsIs.svg index a5a3e5fa45..ffe15faa64 100644 --- a/src/Gui/Icons/DrawStyleAsIs.svg +++ b/src/Gui/Icons/DrawStyleAsIs.svg @@ -1,6 +1,4 @@ - - + height="64px" + width="64px"> + style="stop-color:#06989a;stop-opacity:1;" /> + style="stop-color:#16d0d2;stop-opacity:1" /> + style="stop-color:#16d0d2;stop-opacity:1" /> + style="stop-color:#34e0e2;stop-opacity:1" /> + style="stop-color:#89d5f8;stop-opacity:1;" /> + style="stop-color:#00899e;stop-opacity:1;" /> + style="stop-color:#000000;stop-opacity:1;" /> + style="stop-color:#000000;stop-opacity:0;" /> + style="stop-color:#ffffff;stop-opacity:1;" /> + style="stop-color:#3465a4;stop-opacity:0;" /> - - - + + fx="18.417862" + cy="17.013988" + cx="18.417862" + id="radialGradient3259" + xlink:href="#linearGradient3253" /> + + x2="10" + y1="46" + x1="14" + id="linearGradient3781" + xlink:href="#linearGradient3775" /> + x2="42" + y1="44" + x1="50" + id="linearGradient3789" + xlink:href="#linearGradient3783" /> + x2="127.68171" + y1="158.3524" + x1="145.72011" + id="linearGradient3905" + xlink:href="#linearGradient3899" /> + style="stop-color:#a40000;stop-opacity:1" /> + style="stop-color:#ef2929;stop-opacity:1" /> + xlink:href="#linearGradient3899" /> + - + x2="147.897" + y1="118.31313" + x1="130.56519" + id="linearGradient3897" + xlink:href="#linearGradient3891" /> + style="stop-color:#a40000;stop-opacity:1" /> + style="stop-color:#ef2929;stop-opacity:1" /> + xlink:href="#linearGradient3891" /> + xlink:href="#linearGradient3891" /> + xlink:href="#linearGradient3891" /> + xlink:href="#linearGradient3891" /> + xlink:href="#linearGradient3891" /> + xlink:href="#linearGradient3899" /> + xlink:href="#linearGradient3899" /> + y1="158.3524" + x1="145.72011" + gradientUnits="userSpaceOnUse" + id="linearGradient3057" + xlink:href="#linearGradient3899" /> - - - @@ -307,152 +240,118 @@ image/svg+xml - + + id="layer1"> + d="M 59,45.307693 32,59 5,45.307693 32,29.615385 z" + style="fill:none;stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + transform="translate(60,0)" + id="g3913"> + id="path3003-5-3" /> + id="path3003-5-3-1" /> + d="M 59,45.307693 32,59 5,45.307693 32,29.615385 z" + style="fill:none;stroke:#34e0e2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + d="M 32,59 5,45.307692 5,16.692308 32,30.384615 z" + style="fill:none;stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + d="M 32,59 59,45.307692 59,16.692308 32,30.384615 z" + style="fill:none;stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + d="M 59,16.692308 32,30.384615 5,16.692308 32,5 z" + style="fill:none;stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + d="M 32,59 59,45.307692 59,16.692308 32,28.384615 z" + style="fill:url(#linearGradient3789);stroke:#16d0d2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1" /> + d="M 32,59 5,45.307692 5,16.692308 32,28.384615 z" + style="fill:url(#linearGradient3781);stroke:#34e0e2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1" /> + d="M 59,16.692308 32,28.384615 5,16.692308 32,5 z" + style="fill:#34e0e2;stroke:#34e0e2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + transform="matrix(0.85797173,0,0,0.85797173,0.11300939,0.11301801)" + id="g3036"> + style="fill:none;stroke:#280000;stroke-width:9.04101658;display:inline"> + transform="matrix(0.17391304,0,0,0.17391304,114,114)" + id="circle3869" + r="124" + cy="138" + cx="138" /> - - - - + x2="154.17392" + y1="121.82609" + x1="121.82609" /> + transform="matrix(1.0268967,0,0,1.0268966,-105.71173,-105.71173)" + id="g3879-5" + style="fill:none;stroke:url(#linearGradient3051);stroke-width:4.54004622;display:inline"> + id="circle3869-3" + r="124" + cy="138" + cx="138" /> + + + + + y2="150.10345" + x2="151.6535" + y1="122.34983" + x1="123.77466" /> diff --git a/src/Gui/Icons/DrawStyleFlatLines.svg b/src/Gui/Icons/DrawStyleFlatLines.svg index 05d1bcada9..4a4f544b4a 100644 --- a/src/Gui/Icons/DrawStyleFlatLines.svg +++ b/src/Gui/Icons/DrawStyleFlatLines.svg @@ -1,6 +1,4 @@ - - + height="64px" + width="64px"> + id="linearGradient915"> + style="stop-color:#042a2a;stop-opacity:1" /> + style="stop-color:#34e0e2;stop-opacity:1" /> + id="linearGradient907"> + style="stop-color:#042a2a;stop-opacity:1" /> + style="stop-color:#34e0e2;stop-opacity:1" /> + + + + + style="stop-color:#89d5f8;stop-opacity:1;" /> + style="stop-color:#00899e;stop-opacity:1;" /> + style="stop-color:#000000;stop-opacity:1;" /> + style="stop-color:#000000;stop-opacity:0;" /> + style="stop-color:#ffffff;stop-opacity:1;" /> + style="stop-color:#3465a4;stop-opacity:0;" /> - - - + + fx="18.417862" + cy="17.013988" + cx="18.417862" + id="radialGradient3259" + xlink:href="#linearGradient3253" /> + + gradientUnits="userSpaceOnUse" + y2="14.668943" + x2="31.705853" + y1="45.151108" + x1="55.247467" + id="linearGradient865" + xlink:href="#linearGradient899" /> + gradientUnits="userSpaceOnUse" + y2="14.668943" + x2="31.705853" + y1="45.151108" + x1="55.247467" + id="linearGradient873" + xlink:href="#linearGradient907" /> + - - - @@ -179,95 +146,36 @@ - + id="layer1"> - - - + transform="matrix(-1,0,0,0.99363058,4,0.0382165)" + id="g3913-7" /> + - + d="M 32,59 5,47.307692 5,16.692308 32,28.384615 z" + style="fill:url(#linearGradient881);stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1" /> + d="M 32,59 59,47.307692 59,16.692308 32,28.384615 z" + style="fill:url(#linearGradient865);stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1" /> - - - + style="fill:url(#linearGradient873);stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1" /> + id="path3003-3" + d="M 32,59 5,47.307692 5,16.692308 32,28.384615 z" + style="fill:none;stroke:#16d0d2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + id="path3003-5-6" + d="M 32,59 59,47.307692 59,16.692308 32,28.384615 z" + style="fill:none;stroke:#16d0d2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - + id="path3003-2" + d="M 59,16.692308 32,28.384615 5,16.692308 32,5 z" + style="fill:none;stroke:#34e0e2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> diff --git a/src/Gui/Icons/DrawStyleHiddenLine.svg b/src/Gui/Icons/DrawStyleHiddenLine.svg new file mode 100644 index 0000000000..05be5af27d --- /dev/null +++ b/src/Gui/Icons/DrawStyleHiddenLine.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/src/Gui/Icons/DrawStyleNoShading.svg b/src/Gui/Icons/DrawStyleNoShading.svg new file mode 100644 index 0000000000..d6e9671509 --- /dev/null +++ b/src/Gui/Icons/DrawStyleNoShading.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/src/Gui/Icons/DrawStylePoints.svg b/src/Gui/Icons/DrawStylePoints.svg index 7f231b5ffe..2f7632e530 100644 --- a/src/Gui/Icons/DrawStylePoints.svg +++ b/src/Gui/Icons/DrawStylePoints.svg @@ -1,6 +1,4 @@ - - + height="64px" + width="64px"> + style="stop-color:#89d5f8;stop-opacity:1;" /> + style="stop-color:#00899e;stop-opacity:1;" /> + style="stop-color:#000000;stop-opacity:1;" /> + style="stop-color:#000000;stop-opacity:0;" /> + style="stop-color:#ffffff;stop-opacity:1;" /> + style="stop-color:#3465a4;stop-opacity:0;" /> - - - + + fx="18.417862" + cy="17.013988" + cx="18.417862" + id="radialGradient3259" + xlink:href="#linearGradient3253" /> + - - - @@ -137,199 +89,117 @@ + id="layer1"> - + + id="path3008-3" + d="m 32.012652,57.63604 a 1.5427784,1.4142135 0 1 1 -3.085557,0 1.5427784,1.4142135 0 1 1 3.085557,0 z" + transform="matrix(1.2963623,0,0,1.4142139,-7.4999963,-24.509687)" /> + id="g3028-6" + transform="translate(1.6950274e-7,-20.000001)"> - + + d="m 32.012652,57.63604 c 0,0.781048 -0.690726,1.414213 -1.542779,1.414213 -0.852053,0 -1.542778,-0.633165 -1.542778,-1.414213 0,-0.781049 0.690725,-1.414214 1.542778,-1.414214 0.852053,0 1.542779,0.633165 1.542779,1.414214 z" + transform="matrix(1.2963623,0,0,1.4142139,-7.4999963,-24.509687)" /> + id="g3028-3" + transform="translate(-25.000001,-9.9999976)"> - + + d="m 32.012652,57.63604 c 0,0.781048 -0.690726,1.414213 -1.542779,1.414213 -0.852053,0 -1.542778,-0.633165 -1.542778,-1.414213 0,-0.781049 0.690725,-1.414214 1.542778,-1.414214 0.852053,0 1.542779,0.633165 1.542779,1.414214 z" + transform="matrix(1.2963623,0,0,1.4142139,-7.4999963,-24.509687)" /> + id="g3028-2" + transform="translate(25,-9.9999976)"> - + + d="m 32.012652,57.63604 c 0,0.781048 -0.690726,1.414213 -1.542779,1.414213 -0.852053,0 -1.542778,-0.633165 -1.542778,-1.414213 0,-0.781049 0.690725,-1.414214 1.542778,-1.414214 0.852053,0 1.542779,0.633165 1.542779,1.414214 z" + transform="matrix(1.2963623,0,0,1.4142139,-7.4999963,-24.509687)" /> + id="g3028-27" + transform="translate(1.6950274e-7,-29.999998)"> - + + d="m 32.012652,57.63604 c 0,0.781048 -0.690726,1.414213 -1.542779,1.414213 -0.852053,0 -1.542778,-0.633165 -1.542778,-1.414213 0,-0.781049 0.690725,-1.414214 1.542778,-1.414214 0.852053,0 1.542779,0.633165 1.542779,1.414214 z" + transform="matrix(1.2963623,0,0,1.4142139,-7.4999963,-24.509687)" /> + id="g3028-36" + transform="translate(25,-41.999998)"> - + + d="m 32.012652,57.63604 c 0,0.781048 -0.690726,1.414213 -1.542779,1.414213 -0.852053,0 -1.542778,-0.633165 -1.542778,-1.414213 0,-0.781049 0.690725,-1.414214 1.542778,-1.414214 0.852053,0 1.542779,0.633165 1.542779,1.414214 z" + transform="matrix(1.2963623,0,0,1.4142139,-7.4999963,-24.509687)" /> + id="g3028-61" + transform="translate(-25.000001,-41.999998)"> - + + id="path3008-3-7" + d="m 32.012652,57.63604 c 0,0.781048 -0.690726,1.414213 -1.542779,1.414213 -0.852053,0 -1.542778,-0.633165 -1.542778,-1.414213 0,-0.781049 0.690725,-1.414214 1.542778,-1.414214 0.852053,0 1.542779,0.633165 1.542779,1.414214 z" + transform="matrix(1.2963623,0,0,1.4142139,-7.4999963,-24.509687)" /> + id="g3028-9" + transform="translate(3.7385835e-8,-50)"> - + + id="path3008-3-0" + d="m 32.012652,57.63604 c 0,0.781048 -0.690726,1.414213 -1.542779,1.414213 -0.852053,0 -1.542778,-0.633165 -1.542778,-1.414213 0,-0.781049 0.690725,-1.414214 1.542778,-1.414214 0.852053,0 1.542779,0.633165 1.542779,1.414214 z" + transform="matrix(1.2963623,0,0,1.4142139,-7.4999963,-24.509687)" /> diff --git a/src/Gui/Icons/DrawStyleShaded.svg b/src/Gui/Icons/DrawStyleShaded.svg index 12899e746c..595c633e06 100644 --- a/src/Gui/Icons/DrawStyleShaded.svg +++ b/src/Gui/Icons/DrawStyleShaded.svg @@ -1,6 +1,4 @@ - - + height="64px" + width="64px"> - - - - - - - - + style="stop-color:#89d5f8;stop-opacity:1;" /> + style="stop-color:#00899e;stop-opacity:1;" /> + style="stop-color:#000000;stop-opacity:1;" /> + style="stop-color:#000000;stop-opacity:0;" /> + style="stop-color:#ffffff;stop-opacity:1;" /> + style="stop-color:#3465a4;stop-opacity:0;" /> - - - + - - + fx="18.417862" + cy="17.013988" + cx="18.417862" + id="radialGradient3259" + xlink:href="#linearGradient3253" /> + - - - @@ -179,72 +89,50 @@ + id="layer1"> + d="M 59,45.307693 32,59 5,45.307693 32,29.615385 z" + style="fill:none;stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + transform="translate(60,0)" + id="g3913"> + id="path3003-5-3" /> + id="path3003-5-3-1" /> + d="M 59,45.307693 32,59 5,45.307693 32,29.615385 z" + style="fill:none;stroke:#34e0e2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + d="M 32,59 5,45.307692 5,16.692308 32,30.384615 z" + style="fill:none;stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + d="M 32,59 59,45.307692 59,16.692308 32,30.384615 z" + style="fill:none;stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + d="M 59,16.692308 32,30.384615 5,16.692308 32,5 z" + style="fill:none;stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + d="M 32,59 59,45.307692 59,16.692308 32,28.384615 z" + style="fill:#06989a;stroke:#16d0d2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1" /> + d="M 32,59 5,45.307692 5,16.692308 32,28.384615 z" + style="fill:#16d0d2;stroke:#34e0e2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1" /> + d="M 59,16.692308 32,28.384615 5,16.692308 32,5 z" + style="fill:#34e0e2;stroke:#34e0e2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> diff --git a/src/Gui/Icons/DrawStyleWireFrame.svg b/src/Gui/Icons/DrawStyleWireFrame.svg index 3a4e751a02..3f7686a9c3 100644 --- a/src/Gui/Icons/DrawStyleWireFrame.svg +++ b/src/Gui/Icons/DrawStyleWireFrame.svg @@ -1,6 +1,4 @@ - - + height="64px" + width="64px"> + style="stop-color:#89d5f8;stop-opacity:1;" /> + style="stop-color:#00899e;stop-opacity:1;" /> + style="stop-color:#000000;stop-opacity:1;" /> + style="stop-color:#000000;stop-opacity:0;" /> + style="stop-color:#ffffff;stop-opacity:1;" /> + style="stop-color:#3465a4;stop-opacity:0;" /> - - - + + fx="18.417862" + cy="17.013988" + cx="18.417862" + id="radialGradient3259" + xlink:href="#linearGradient3253" /> + - - - @@ -137,76 +89,54 @@ + id="layer1"> + transform="matrix(-1,0,0,0.99363058,4,0.0382165)" + id="g3913-7"> + id="path3003-5-3-0" /> + id="path3003-5-3-1-9" /> + transform="translate(60,0)" + id="g3913"> + id="path3003-5-3" /> + id="path3003-5-3-1" /> - - - + style="fill:none;stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + style="fill:none;stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + + + + d="M 59,16.692308 32,28.384615 5,16.692308 32,5 z" + style="fill:none;stroke:#34e0e2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />