Cleanup of files to add export icons to all export types.

master
Tim Deagan 2015-01-17 20:49:18 -06:00
parent 7a8574aee2
commit b217b08394
17 changed files with 46 additions and 2 deletions

BIN
images/AMF-white.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
images/AMF.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 629 B

BIN
images/CSG-white.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
images/CSG.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 726 B

BIN
images/DXF-white.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
images/DXF.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 620 B

BIN
images/OFF-white.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
images/OFF.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 611 B

BIN
images/PNG-white.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
images/PNG.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 665 B

BIN
images/STL-white.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
images/STL.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 586 B

BIN
images/SVG-white.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
images/SVG.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 723 B

View File

@ -80,5 +80,19 @@
<file>icons/background.png</file>
<file>images/scalemarkers.png</file>
<file>images/scalemarkers-white.png</file>
<file>images/AMF.png</file>
<file>images/AMF-white.png</file>
<file>images/CSG.png</file>
<file>images/CSG-white.png</file>
<file>images/DXF.png</file>
<file>images/DXF-white.png</file>
<file>images/OFF.png</file>
<file>images/OFF-white.png</file>
<file>images/PNG.png</file>
<file>images/PNG-white.png</file>
<file>images/STL.png</file>
<file>images/STL-white.png</file>
<file>images/SVG.png</file>
<file>images/SVG-white.png</file>
</qresource>
</RCC>

View File

@ -794,13 +794,17 @@
<action name="designActionExportSTL">
<property name="icon">
<iconset resource="../openscad.qrc">
<normaloff>:/images/export.png</normaloff>:/images/export.png</iconset>
<normaloff>:/images/STL.png</normaloff>:/images/STL.png</iconset>
</property>
<property name="text">
<string>Export as &amp;STL...</string>
</property>
</action>
<action name="designActionExportOFF">
<property name="icon">
<iconset resource="../openscad.qrc">
<normaloff>:/images/OFF.png</normaloff>:/images/OFF.png</iconset>
</property>
<property name="text">
<string>Export as &amp;OFF...</string>
</property>
@ -1053,6 +1057,10 @@
</property>
</action>
<action name="designActionExportDXF">
<property name="icon">
<iconset resource="../openscad.qrc">
<normaloff>:/images/DXF.png</normaloff>:/images/DXF.png</iconset>
</property>
<property name="text">
<string>Export as DXF...</string>
</property>
@ -1132,11 +1140,19 @@
</property>
</action>
<action name="designActionExportImage">
<property name="icon">
<iconset resource="../openscad.qrc">
<normaloff>:/images/PNG.png</normaloff>:/images/PNG.png</iconset>
</property>
<property name="text">
<string>Export as Image...</string>
</property>
</action>
<action name="designActionExportCSG">
<property name="icon">
<iconset resource="../openscad.qrc">
<normaloff>:/images/CSG.png</normaloff>:/images/CSG.png</iconset>
</property>
<property name="text">
<string>Export as CSG...</string>
</property>
@ -1166,11 +1182,19 @@
</property>
</action>
<action name="designActionExportSVG">
<property name="icon">
<iconset resource="../openscad.qrc">
<normaloff>:/images/CSG.png</normaloff>:/images/CSG.png</iconset>
</property>
<property name="text">
<string>Export as SVG...</string>
</property>
</action>
<action name="designActionExportAMF">
<property name="icon">
<iconset resource="../openscad.qrc">
<normaloff>:/images/AMF.png</normaloff>:/images/AMF.png</iconset>
</property>
<property name="text">
<string>Export as AMF...</string>
</property>

View File

@ -497,7 +497,13 @@ MainWindow::MainWindow(const QString &filename)
initActionIcon(viewActionOrthogonal, ":/images/orthogonal.png", ":/images/orthogonalwhite.png");
initActionIcon(designActionPreview, ":/images/Preview-32.png", ":/images/Preview-32-white.png");
initActionIcon(viewActionAnimate, ":/images/animate.png", ":/images/animate.png");
initActionIcon(designActionExportSTL, ":/images/export.png", ":/images/export-white.png");
initActionIcon(designActionExportSTL, ":/images/STL.png", ":/images/STL-white.png");
initActionIcon(designActionExportAMF, ":/images/AMF.png", ":/images/AMF-white.png");
initActionIcon(designActionExportOFF, ":/images/OFF.png", ":/images/OFF-white.png");
initActionIcon(designActionExportDXF, ":/images/DXF.png", ":/images/DXF-white.png");
initActionIcon(designActionExportSVG, ":/images/SVG.png", ":/images/SVG-white.png");
initActionIcon(designActionExportCSG, ":/images/CSG.png", ":/images/CSG-white.png");
initActionIcon(designActionExportImage, ":/images/PNG.png", ":/images/PNG-white.png");
initActionIcon(viewActionViewAll, ":/images/zoom-all.png", ":/images/zoom-all-white.png");
initActionIcon(editActionUndo, ":/images/Command-Undo-32.png", ":/images/Command-Undo-32-white.png");
initActionIcon(editActionRedo, ":/images/Command-Redo-32.png", ":/images/Command-Redo-32-white.png");