Commit b39458eb authored by Jeremy Kajikawa's avatar Jeremy Kajikawa

Modified: weaver.py

Added SkeinForge button,  Beginnings of the Wxyz panel is next,
Are the Workflow Buttons listed complete?

I can also add a progress bar as well but that will be the last entry
  on the entire UI after all three panels are complete
parent 8246ef2e
...@@ -84,8 +84,8 @@ try: ...@@ -84,8 +84,8 @@ try:
self.PauseResume = wx.ToggleButton(self, wx.ID_ANY, 'Pause') self.PauseResume = wx.ToggleButton(self, wx.ID_ANY, 'Pause')
hbox.Add(self.PauseResume, 0, wx.ALL, 0) hbox.Add(self.PauseResume, 0, wx.ALL, 0)
vbox.Add(hbox, 0, wx.ALL, 1) vbox.Add(hbox, 0, wx.ALL, 1)
hbox = wx.BoxSizer(wx.HORIZONTAL) self.SkeinForge = wx.Button(self, wx.ID_ANY, 'Edit in SkeinForge')
vbox.Add(hbox, 0, wx.ALL, 1) vbox.Add(self.SkeinForge, 0, wx.ALL, 1)
self.hlayout.Add(vbox, 1, wx.ALL, 1) self.hlayout.Add(vbox, 1, wx.ALL, 1)
# #
...@@ -105,7 +105,7 @@ try: ...@@ -105,7 +105,7 @@ try:
self.Bind(wx.EVT_BUTTON, self.OnLoadGCode, self.LoadGCode) self.Bind(wx.EVT_BUTTON, self.OnLoadGCode, self.LoadGCode)
self.Bind(wx.EVT_BUTTON, self.OnPrintCancel, self.PrintCancel) self.Bind(wx.EVT_BUTTON, self.OnPrintCancel, self.PrintCancel)
self.Bind(wx.EVT_BUTTON, self.OnPauseResume, self.PauseResume) self.Bind(wx.EVT_BUTTON, self.OnPauseResume, self.PauseResume)
# self.Bind(wx.EVT_BUTTON, self.OnSkeinForge, self.SkeinForge) self.Bind(wx.EVT_BUTTON, self.OnSkeinForge, self.SkeinForge)
self.CreateStatusBar() self.CreateStatusBar()
self.SetSizer(self.vlayout) self.SetSizer(self.vlayout)
......
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