Commit 690e37bd authored by Guillaume Seguin's avatar Guillaume Seguin

Add some documentation markers to add_extra_controls

parent f639bce1
...@@ -67,6 +67,9 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None): ...@@ -67,6 +67,9 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None):
standalone_mode = extra_buttons is not None standalone_mode = extra_buttons is not None
base_line = 1 if standalone_mode else 2 base_line = 1 if standalone_mode else 2
## Hotend & bed temperatures
# Hotend temp
self.Add(wx.StaticText(parentpanel, -1, _("Heat:")), pos = (base_line + 0, 0), span = (1, 2), flag = wx.ALIGN_CENTER_VERTICAL | wx.ALIGN_RIGHT) self.Add(wx.StaticText(parentpanel, -1, _("Heat:")), pos = (base_line + 0, 0), span = (1, 2), flag = wx.ALIGN_CENTER_VERTICAL | wx.ALIGN_RIGHT)
htemp_choices = [root.temps[i] + " (" + i + ")" for i in sorted(root.temps.keys(), key = lambda x:root.temps[x])] htemp_choices = [root.temps[i] + " (" + i + ")" for i in sorted(root.temps.keys(), key = lambda x:root.temps[x])]
...@@ -86,6 +89,7 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None): ...@@ -86,6 +89,7 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None):
root.printerControls.append(root.settbtn) root.printerControls.append(root.settbtn)
self.Add(root.settbtn, pos = (base_line + 0, 4), span = (1, 1)) self.Add(root.settbtn, pos = (base_line + 0, 4), span = (1, 1))
# Bed temp
self.Add(wx.StaticText(parentpanel, -1, _("Bed:")), pos = (base_line + 1, 0), span = (1, 2), flag = wx.ALIGN_CENTER_VERTICAL | wx.ALIGN_RIGHT) self.Add(wx.StaticText(parentpanel, -1, _("Bed:")), pos = (base_line + 1, 0), span = (1, 2), flag = wx.ALIGN_CENTER_VERTICAL | wx.ALIGN_RIGHT)
btemp_choices = [root.bedtemps[i] + " (" + i + ")" for i in sorted(root.bedtemps.keys(), key = lambda x:root.temps[x])] btemp_choices = [root.bedtemps[i] + " (" + i + ")" for i in sorted(root.bedtemps.keys(), key = lambda x:root.temps[x])]
...@@ -126,6 +130,8 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None): ...@@ -126,6 +130,8 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None):
root.tempdisp = wx.StaticText(parentpanel, -1, "") root.tempdisp = wx.StaticText(parentpanel, -1, "")
## Extrusion controls
if not extra_buttons: if not extra_buttons:
ebuttonspanel = root.newPanel(parentpanel) ebuttonspanel = root.newPanel(parentpanel)
ebuttonssizer = wx.BoxSizer(wx.HORIZONTAL) ebuttonssizer = wx.BoxSizer(wx.HORIZONTAL)
...@@ -181,6 +187,8 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None): ...@@ -181,6 +187,8 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None):
esettingspanel.SetSizer(esettingssizer) esettingspanel.SetSizer(esettingssizer)
self.Add(esettingspanel, pos = (base_line + 3, 0), span = (1, 5)) self.Add(esettingspanel, pos = (base_line + 3, 0), span = (1, 5))
## Temperature gauges
gauges_base_line = base_line + 8 if standalone_mode else base_line + 5 gauges_base_line = base_line + 8 if standalone_mode else base_line + 5
if root.display_gauges: if root.display_gauges:
root.hottgauge = TempGauge(parentpanel, size = (-1, 24), title = _("Heater:"), maxval = 300) root.hottgauge = TempGauge(parentpanel, size = (-1, 24), title = _("Heater:"), maxval = 300)
...@@ -207,6 +215,8 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None): ...@@ -207,6 +215,8 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None):
else: else:
self.Add(root.tempdisp, pos = (gauges_base_line + 0, 0), span = (1, 6)) self.Add(root.tempdisp, pos = (gauges_base_line + 0, 0), span = (1, 6))
## Temperature graph
if root.display_graph: if root.display_graph:
root.graph = Graph(parentpanel, wx.ID_ANY, root) root.graph = Graph(parentpanel, wx.ID_ANY, root)
if standalone_mode: if standalone_mode:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment