element info: add more info (#2556)

* add removed stitches info
* add color info
pull/2558/head
Kaalleen 2023-10-15 14:47:46 +02:00 zatwierdzone przez GitHub
rodzic cea4f6fca8
commit 6f0150db00
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -39,6 +39,7 @@ class ElementInfo(InkstitchExtension):
self.list_items.append(ListItem(
name=f"{ element.node.label } ({ element.node.get_id() })",
value=stitch_groups[0].color,
headline=True
))
self.list_items.append(ListItem(
@ -72,6 +73,7 @@ class ElementInfo(InkstitchExtension):
))
stitch_lengths = []
removed_stitches = 0
for group in stitch_groups:
stitches = group.stitches
@ -80,6 +82,7 @@ class ElementInfo(InkstitchExtension):
st = stitch - previous_stitch
length = st.length() / PIXELS_PER_MM
if length <= self.metadata['min_stitch_len_mm']:
removed_stitches += 1
continue
stitch_lengths.append(length)
previous_stitch = stitch
@ -92,6 +95,10 @@ class ElementInfo(InkstitchExtension):
name=_("Stitches"),
value=str(stitch_plan.num_stitches - stitch_plan.num_jumps) + stitches_per_group
))
self.list_items.append(ListItem(
name=_("Small stitches (removed)"),
value=str(removed_stitches)
))
self.list_items.append(ListItem(
name=_("Jumps"),
value=str(stitch_plan.num_jumps - 1)

Wyświetl plik

@ -76,6 +76,9 @@ class ElementInfoFrame(wx.Frame):
if item.headline:
self.info_list.SetItemBackgroundColour(self.index, "black")
self.info_list.SetItemTextColour(self.index, "white")
self.index += 1
self.info_list.InsertItem(self.index, "")
self.info_list.SetItemBackgroundColour(self.index, item.value)
else:
self.info_list.SetItem(self.index, 1, item.value)
self.index += 1