Merged Beta_8.995 into Evo_1.0

This commit is contained in:
Marius Stanciu
2022-04-18 19:54:54 +00:00
62 changed files with 361 additions and 258 deletions

View File

@@ -187,7 +187,7 @@ class CircleEditorUI:
self.circle_tool_box.addLayout(grid0)
# Position
self.pos_lbl = FCLabel('<b>%s</b>' % _("Position"))
self.pos_lbl = FCLabel('%s' % _("Position"), bold=True)
grid0.addWidget(self.pos_lbl, 0, 0, 1, 3)
# X Pos
@@ -246,7 +246,7 @@ class CircleEditorUI:
self.layout.addStretch(1)
# Note
self.note_lbl = FCLabel('<b>%s</b>' % _("Note"))
self.note_lbl = FCLabel('%s' % _("Note"), bold=True)
self.layout.addWidget(self.note_lbl)
self.note_description_lbl = FCLabel('%s' % _("Shift + click to select a shape for modification."))
self.layout.addWidget(self.note_description_lbl)

View File

@@ -164,7 +164,7 @@ class CopyEditorUI:
grid0.addWidget(separator_line, 4, 0, 1, 2)
# Type of Array
self.mode_label = FCLabel('<b>%s:</b>' % _("Mode"))
self.mode_label = FCLabel('%s:' % _("Mode"), bold=True)
self.mode_label.setToolTip(
_("Single copy or special (array of copies)")
)

View File

@@ -220,7 +220,7 @@ class RectangleEditorUI:
self.rect_tool_box.addLayout(grid0)
# Anchor
self.anchor_lbl = FCLabel('<b>%s:</b>' % _("Anchor"))
self.anchor_lbl = FCLabel('%s:' % _("Anchor"), bold=True)
choices = [
{"label": _("T Left"), "value": "tl"},
{"label": _("T Right"), "value": "tr"},
@@ -233,7 +233,7 @@ class RectangleEditorUI:
grid0.addWidget(self.anchor_radio, 0, 1)
# Position
self.pos_lbl = FCLabel('<b>%s</b>' % _("Position"))
self.pos_lbl = FCLabel('%s' % _("Position"), bold=True)
grid0.addWidget(self.pos_lbl, 2, 0, 1, 2)
# X Pos
@@ -277,7 +277,7 @@ class RectangleEditorUI:
grid0.addWidget(self.radius_entry, 10, 1)
# Size
self.size_lbl = FCLabel('<b>%s</b>' % _("Size"))
self.size_lbl = FCLabel('%s' % _("Size"), bold=True)
grid0.addWidget(self.size_lbl, 12, 0, 1, 2)
# Length
@@ -300,7 +300,7 @@ class RectangleEditorUI:
self.layout.addStretch(1)
# Note
self.note_lbl = FCLabel('<b>%s</b>' % _("Note"))
self.note_lbl = FCLabel('%s' % _("Note"), bold=True)
self.layout.addWidget(self.note_lbl)
self.note_description_lbl = FCLabel('%s' % _("Shift + click to select a shape for modification."))
self.layout.addWidget(self.note_description_lbl)

View File

@@ -196,7 +196,7 @@ class SimplificationEditorUI:
self.simp_tools_box.addLayout(grid0)
# Coordinates
coords_lbl = FCLabel('<b>%s</b>:' % _("Coordinates"))
coords_lbl = FCLabel('%s' % _("Coordinates"), bold=True)
coords_lbl.setToolTip(
_("The coordinates of the selected geometry element.")
)
@@ -209,7 +209,7 @@ class SimplificationEditorUI:
grid0.addWidget(self.geo_coords_entry, 24, 0, 1, 3)
# Vertex Points Number
vertex_lbl = FCLabel('<b>%s</b>:' % _("Vertex Points"))
vertex_lbl = FCLabel('%s' % _("Vertex Points"), bold=True)
vertex_lbl.setToolTip(
_("The number of vertex points in the selected geometry element.")
)
@@ -225,14 +225,14 @@ class SimplificationEditorUI:
grid0.addWidget(separator_line, 28, 0, 1, 3)
# Simplification Title
simplif_lbl = FCLabel('<b>%s</b>:' % _("Simplification"))
simplif_lbl = FCLabel('%s' % _("Simplification"), bold=True)
simplif_lbl.setToolTip(
_("Simplify a geometry by reducing its vertex points number.")
)
grid0.addWidget(simplif_lbl, 30, 0, 1, 3)
# Simplification Tolerance
simplification_tol_lbl = FCLabel('<b>%s</b>:' % _("Tolerance"))
simplification_tol_lbl = FCLabel('%s' % _("Tolerance"), bold=True)
simplification_tol_lbl.setToolTip(
_("All points in the simplified object will be\n"
"within the tolerance distance of the original geometry.")