- added a new feature for Geometry export-as-SVG, the ability to export only the paths (outlines); the new feature is controlled from a new parameter in Preferences -> Geometry -> Export

This commit is contained in:
Marius Stanciu
2022-09-01 13:08:06 +03:00
committed by Marius
parent 6eeac5312e
commit 3c1349a6c4
5 changed files with 20 additions and 5 deletions

View File

@@ -267,6 +267,7 @@ class PreferencesUIManager(QtCore.QObject):
# Geometry Export
"geometry_dxf_format": self.ui.geo_pref_form.geometry_exp_group.dxf_format_combo,
"geometry_paths_only": self.ui.geo_pref_form.geometry_exp_group.svg_paths_only_cb,
# Geometry Editor
"geometry_editor_sel_limit": self.ui.geo_pref_form.geometry_editor_group.sel_limit_entry,

View File

@@ -1,6 +1,7 @@
from PyQt6 import QtWidgets, QtCore
from appGUI.GUIElements import FCLabel, FCComboBox, GLay, FCFrame
from appGUI.GUIElements import FCLabel, FCComboBox, GLay, FCFrame, FCCheckBox
from appGUI.preferences.OptionsGroupUI import OptionsGroupUI
import gettext
import appTranslation as fcTranslate
@@ -36,7 +37,7 @@ class GeometryExpPrefGroupUI(OptionsGroupUI):
export_grid = GLay(v_spacing=5, h_spacing=3)
export_frame.setLayout(export_grid)
# Excellon non-decimal format
# DXF format
self.dxf_format_label = FCLabel("%s:" % _("Format"))
self.dxf_format_label.setToolTip(
_("Autodesk DXF Format used when exporting Geometry as DXF.")
@@ -48,4 +49,11 @@ class GeometryExpPrefGroupUI(OptionsGroupUI):
export_grid.addWidget(self.dxf_format_label, 0, 0)
export_grid.addWidget(self.dxf_format_combo, 0, 1)
# SVG format
self.svg_paths_only_cb = FCCheckBox(_("SVG Paths-Only"))
self.svg_paths_only_cb.setToolTip(
_("SVG Format. When checked it will export only paths.")
)
export_grid.addWidget(self.svg_paths_only_cb, 2, 0, 1, 2)
self.layout.addStretch()