chiark / gitweb /
Cooldown toolhead and bed whenever print is canceled (including closing print window...
[cura.git] / Cura / gui / printWindow.py
1 __copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
2
3 import wx
4 import power
5 import time
6 import sys
7 import os
8 import ctypes
9 import subprocess
10
11 #TODO: This does not belong here!
12 if sys.platform.startswith('win'):
13         def preventComputerFromSleeping(frame, prevent):
14                 """
15                 Function used to prevent the computer from going into sleep mode.
16                 :param prevent: True = Prevent the system from going to sleep from this point on.
17                 :param prevent: False = No longer prevent the system from going to sleep.
18                 """
19                 ES_CONTINUOUS = 0x80000000
20                 ES_SYSTEM_REQUIRED = 0x00000001
21                 ES_AWAYMODE_REQUIRED = 0x00000040
22                 #SetThreadExecutionState returns 0 when failed, which is ignored. The function should be supported from windows XP and up.
23                 if prevent:
24                         # For Vista and up we use ES_AWAYMODE_REQUIRED to prevent a print from failing if the PC does go to sleep
25                         # As it's not supported on XP, we catch the error and fallback to using ES_SYSTEM_REQUIRED only
26                         if ctypes.windll.kernel32.SetThreadExecutionState(ES_CONTINUOUS | ES_SYSTEM_REQUIRED | ES_AWAYMODE_REQUIRED) == 0:
27                                 ctypes.windll.kernel32.SetThreadExecutionState(ES_CONTINUOUS | ES_SYSTEM_REQUIRED)
28                 else:
29                         ctypes.windll.kernel32.SetThreadExecutionState(ES_CONTINUOUS)
30
31 elif sys.platform.startswith('darwin'):
32         import objc
33         bundle = objc.initFrameworkWrapper("IOKit",
34         frameworkIdentifier="com.apple.iokit",
35         frameworkPath=objc.pathForFramework("/System/Library/Frameworks/IOKit.framework"),
36         globals=globals())
37         objc.loadBundleFunctions(bundle, globals(), [("IOPMAssertionCreateWithName", b"i@I@o^I")])
38         def preventComputerFromSleeping(frame, prevent):
39                 if prevent:
40                         success, preventComputerFromSleeping.assertionID = IOPMAssertionCreateWithName(kIOPMAssertionTypeNoDisplaySleep, kIOPMAssertionLevelOn, "Cura is printing", None)
41                         if success != kIOReturnSuccess:
42                                 preventComputerFromSleeping.assertionID = None
43                 else:
44                         if preventComputerFromSleeping.assertionID is not None:
45                                 IOPMAssertionRelease(preventComputerFromSleeping.assertionID)
46                                 preventComputerFromSleeping.assertionID = None
47 else:
48         def preventComputerFromSleeping(frame, prevent):
49                 if os.path.isfile("/usr/bin/xdg-screensaver"):
50                         try:
51                                 cmd = ['xdg-screensaver', 'suspend' if prevent else 'resume', str(frame.GetHandle())]
52                                 subprocess.call(cmd)
53                         except:
54                                 pass
55
56 class printWindowPlugin(wx.Frame):
57         def __init__(self, parent, printerConnection, filename):
58                 super(printWindowPlugin, self).__init__(parent, -1, style=wx.CLOSE_BOX|wx.CLIP_CHILDREN|wx.CAPTION|wx.SYSTEM_MENU|wx.FRAME_FLOAT_ON_PARENT|wx.MINIMIZE_BOX, title=_("Printing on %s") % (printerConnection.getName()))
59                 self._printerConnection = printerConnection
60                 self._basePath = os.path.dirname(filename)
61                 self._backgroundImage = None
62                 self._colorCommandMap = {}
63                 self._buttonList = []
64                 self._termLog = None
65                 self._termInput = None
66                 self._termHistory = []
67                 self._termHistoryIdx = 0
68                 self._progressBar = None
69                 self._tempGraph = None
70                 self._infoText = None
71                 self._lastUpdateTime = time.time()
72                 self._isPrinting = False
73
74                 variables = {
75                         'setImage': self.script_setImage,
76                         'addColorCommand': self.script_addColorCommand,
77                         'addTerminal': self.script_addTerminal,
78                         'addTemperatureGraph': self.script_addTemperatureGraph,
79                         'addProgressbar': self.script_addProgressbar,
80                         'addButton': self.script_addButton,
81                         'addSpinner': self.script_addSpinner,
82                         'addTextButton': self.script_addTextButton,
83
84                         'sendGCode': self.script_sendGCode,
85                         'connect': self.script_connect,
86                         'startPrint': self.script_startPrint,
87                         'pausePrint': self.script_pausePrint,
88                         'cancelPrint': self.script_cancelPrint,
89                         'showErrorLog': self.script_showErrorLog,
90                 }
91                 execfile(filename, variables, variables)
92
93                 self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground)
94                 self.Bind(wx.EVT_PAINT, self.OnDraw)
95                 self.Bind(wx.EVT_LEFT_DOWN, self.OnLeftClick)
96                 self.Bind(wx.EVT_CLOSE, self.OnClose)
97
98                 self._updateButtonStates()
99
100                 self._printerConnection.addCallback(self._doPrinterConnectionUpdate)
101
102                 if self._printerConnection.hasActiveConnection() and not self._printerConnection.isActiveConnectionOpen():
103                         self._printerConnection.openActiveConnection()
104
105         def script_setImage(self, guiImage, mapImage):
106                 self._backgroundImage = wx.BitmapFromImage(wx.Image(os.path.join(self._basePath, guiImage)))
107                 self._mapImage = wx.Image(os.path.join(self._basePath, mapImage))
108                 self.SetClientSize(self._mapImage.GetSize())
109
110         def script_addColorCommand(self, r, g, b, command, data = None):
111                 self._colorCommandMap[(r, g, b)] = (command, data)
112
113         def script_addTerminal(self, r, g, b):
114                 x, y, w, h = self._getColoredRect(r, g, b)
115                 if x < 0 or self._termLog is not None:
116                         return
117                 f = wx.Font(8, wx.FONTFAMILY_MODERN, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, False)
118                 self._termLog = wx.TextCtrl(self, style=wx.TE_MULTILINE | wx.TE_DONTWRAP)
119                 self._termLog.SetFont(f)
120                 self._termLog.SetEditable(0)
121                 self._termInput = wx.TextCtrl(self, style=wx.TE_PROCESS_ENTER)
122                 self._termInput.SetFont(f)
123
124                 self._termLog.SetPosition((x, y))
125                 self._termLog.SetSize((w, h - self._termInput.GetSize().GetHeight()))
126                 self._termInput.SetPosition((x, y + h - self._termInput.GetSize().GetHeight()))
127                 self._termInput.SetSize((w, self._termInput.GetSize().GetHeight()))
128                 self.Bind(wx.EVT_TEXT_ENTER, self.OnTermEnterLine, self._termInput)
129                 self._termInput.Bind(wx.EVT_CHAR, self.OnTermKey)
130
131         def script_addTemperatureGraph(self, r, g, b):
132                 x, y, w, h = self._getColoredRect(r, g, b)
133                 if x < 0 or self._tempGraph is not None:
134                         return
135                 self._tempGraph = TemperatureGraph(self)
136
137                 self._tempGraph.SetPosition((x, y))
138                 self._tempGraph.SetSize((w, h))
139
140         def script_addProgressbar(self, r, g, b):
141                 x, y, w, h = self._getColoredRect(r, g, b)
142                 if x < 0:
143                         return
144                 self._progressBar = wx.Gauge(self, -1, range=1000)
145
146                 self._progressBar.SetPosition((x, y))
147                 self._progressBar.SetSize((w, h))
148
149         def script_addButton(self, r, g, b, text, command, data = None):
150                 x, y, w, h = self._getColoredRect(r, g, b)
151                 if x < 0:
152                         return
153                 button = wx.Button(self, -1, _(text))
154                 button.SetPosition((x, y))
155                 button.SetSize((w, h))
156                 button.command = command
157                 button.data = data
158                 self._buttonList.append(button)
159                 self.Bind(wx.EVT_BUTTON, lambda e: command(data), button)
160
161         def script_addSpinner(self, r, g, b, command, data):
162                 x, y, w, h = self._getColoredRect(r, g, b)
163                 if x < 0:
164                         return
165
166                 def run_command(spinner):
167                         value = spinner.GetValue()
168                         print "Value (%s) and (%s)" % (spinner.last_value, value)
169                         if spinner.last_value != '' and value != 0:
170                                 spinner.command(spinner.data % value)
171                                 spinner.last_value = value
172
173                 spinner = wx.SpinCtrl(self, -1, style=wx.TE_PROCESS_ENTER)
174                 spinner.SetRange(0, 300)
175                 spinner.SetPosition((x, y))
176                 spinner.SetSize((w, h))
177                 spinner.SetValue(0)
178                 spinner.command = command
179                 spinner.data = data
180                 spinner.last_value = ''
181                 self._buttonList.append(spinner)
182                 self.Bind(wx.EVT_SPINCTRL, lambda e: run_command(spinner), spinner)
183
184         def script_addTextButton(self, r_text, g_text, b_text, r_button, g_button, b_button, button_text, command, data):
185                 x_text, y_text, w_text, h_text = self._getColoredRect(r_text, g_text, b_text)
186                 if x_text < 0:
187                         return
188                 x_button, y_button, w_button, h_button = self._getColoredRect(r_button, g_button, b_button)
189                 if x_button < 0:
190                         return
191                 from wx.lib.intctrl import IntCtrl
192                 text = IntCtrl(self, -1)
193                 text.SetBounds(0, 300)
194                 text.SetPosition((x_text, y_text))
195                 text.SetSize((w_text, h_text))
196                 
197                 button = wx.Button(self, -1, _(button_text))
198                 button.SetPosition((x_button, y_button))
199                 button.SetSize((w_button, h_button))
200                 button.command = command
201                 button.data = data
202                 self._buttonList.append(button)
203                 self.Bind(wx.EVT_BUTTON, lambda e: command(data % text.GetValue()), button)
204
205         def _getColoredRect(self, r, g, b):
206                 for x in xrange(0, self._mapImage.GetWidth()):
207                         for y in xrange(0, self._mapImage.GetHeight()):
208                                 if self._mapImage.GetRed(x, y) == r and self._mapImage.GetGreen(x, y) == g and self._mapImage.GetBlue(x, y) == b:
209                                         w = 0
210                                         while x+w < self._mapImage.GetWidth() and self._mapImage.GetRed(x + w, y) == r and self._mapImage.GetGreen(x + w, y) == g and self._mapImage.GetBlue(x + w, y) == b:
211                                                 w += 1
212                                         h = 0
213                                         while y+h < self._mapImage.GetHeight() and self._mapImage.GetRed(x, y + h) == r and self._mapImage.GetGreen(x, y + h) == g and self._mapImage.GetBlue(x, y + h) == b:
214                                                 h += 1
215                                         return x, y, w, h
216                 print "Failed to find color: ", r, g, b
217                 return -1, -1, 1, 1
218
219         def script_sendGCode(self, data = None):
220                 for line in data.split(';'):
221                         line = line.strip()
222                         if len(line) > 0:
223                                 self._printerConnection.sendCommand(line)
224
225         def script_connect(self, data = None):
226                 self._printerConnection.openActiveConnection()
227
228         def script_startPrint(self, data = None):
229                 self._printerConnection.startPrint()
230
231         def script_cancelPrint(self, e):
232                 self._printerConnection.cancelPrint()
233
234         def script_pausePrint(self, e):
235                 self._printerConnection.pause(not self._printerConnection.isPaused())
236
237         def script_showErrorLog(self, e):
238                 LogWindow(self._printerConnection.getErrorLog())
239
240         def OnEraseBackground(self, e):
241                 pass
242
243         def OnDraw(self, e):
244                 dc = wx.BufferedPaintDC(self, self._backgroundImage)
245
246         def OnLeftClick(self, e):
247                 r = self._mapImage.GetRed(e.GetX(), e.GetY())
248                 g = self._mapImage.GetGreen(e.GetX(), e.GetY())
249                 b = self._mapImage.GetBlue(e.GetX(), e.GetY())
250                 if (r, g, b) in self._colorCommandMap:
251                         command = self._colorCommandMap[(r, g, b)]
252                         command[0](command[1])
253
254         def OnClose(self, e):
255                 if self._printerConnection.hasActiveConnection():
256                         if self._printerConnection.isPrinting() or self._printerConnection.isPaused():
257                                 pass #TODO: Give warning that the close will kill the print.
258                         self._printerConnection.closeActiveConnection()
259                 self._printerConnection.removeCallback(self._doPrinterConnectionUpdate)
260                 #TODO: When multiple printer windows are open, closing one will enable sleeping again.
261                 preventComputerFromSleeping(self, False)
262                 self._printerConnection.coolDown()
263                 self.Destroy()
264
265         def OnTermEnterLine(self, e):
266                 if not self._printerConnection.isAbleToSendDirectCommand():
267                         return
268                 line = self._termInput.GetValue()
269                 if line == '':
270                         return
271                 self._addTermLog('> %s\n' % (line))
272                 self._printerConnection.sendCommand(line)
273                 self._termHistory.append(line)
274                 self._termHistoryIdx = len(self._termHistory)
275                 self._termInput.SetValue('')
276
277         def OnTermKey(self, e):
278                 if len(self._termHistory) > 0:
279                         if e.GetKeyCode() == wx.WXK_UP:
280                                 self._termHistoryIdx -= 1
281                                 if self._termHistoryIdx < 0:
282                                         self._termHistoryIdx = len(self._termHistory) - 1
283                                 self._termInput.SetValue(self._termHistory[self._termHistoryIdx])
284                         if e.GetKeyCode() == wx.WXK_DOWN:
285                                 self._termHistoryIdx -= 1
286                                 if self._termHistoryIdx >= len(self._termHistory):
287                                         self._termHistoryIdx = 0
288                                 self._termInput.SetValue(self._termHistory[self._termHistoryIdx])
289                 e.Skip()
290
291         def _addTermLog(self, line):
292                 if self._termLog is not None:
293                         if len(self._termLog.GetValue()) > 10000:
294                                 self._termLog.SetValue(self._termLog.GetValue()[-10000:])
295                         self._termLog.SetInsertionPointEnd()
296                         if type(line) != unicode:
297                                 line = unicode(line, 'utf-8', 'replace')
298                         self._termLog.AppendText(line.encode('utf-8', 'replace'))
299
300         def _updateButtonStates(self):
301                 for button in self._buttonList:
302                         if button.command == self.script_connect:
303                                 button.Show(self._printerConnection.hasActiveConnection())
304                                 button.Enable(not self._printerConnection.isActiveConnectionOpen() and \
305                                                           not self._printerConnection.isActiveConnectionOpening())
306                         elif button.command == self.script_pausePrint:
307                                 button.Show(self._printerConnection.hasPause())
308                                 if not self._printerConnection.hasActiveConnection() or \
309                                    self._printerConnection.isActiveConnectionOpen():
310                                         button.Enable(self._printerConnection.isPrinting() or \
311                                                                   self._printerConnection.isPaused())
312                                 else:
313                                         button.Enable(False)
314                         elif button.command == self.script_startPrint:
315                                 if not self._printerConnection.hasActiveConnection() or \
316                                    self._printerConnection.isActiveConnectionOpen():
317                                         button.Enable(not self._printerConnection.isPrinting() and \
318                                                   not self._printerConnection.isPaused())
319                                 else:
320                                         button.Enable(False)
321                         elif button.command == self.script_cancelPrint:
322                                 if not self._printerConnection.hasActiveConnection() or \
323                                    self._printerConnection.isActiveConnectionOpen():
324                                         button.Enable(self._printerConnection.isPrinting() or \
325                                                                   self._printerConnection.isPaused())
326                                 else:
327                                         button.Enable(False)
328                         elif button.command == self.script_showErrorLog:
329                                 button.Show(self._printerConnection.isInErrorState())
330                 if self._termInput is not None:
331                         self._termInput.Enable(self._printerConnection.isAbleToSendDirectCommand())
332
333         def _doPrinterConnectionUpdate(self, connection, extraInfo = None):
334                 wx.CallAfter(self.__doPrinterConnectionUpdate, connection, extraInfo)
335                 if self._tempGraph is not None:
336                         temp = []
337                         for n in xrange(0, 4):
338                                 t = connection.getTemperature(0)
339                                 if t is not None:
340                                         temp.append(t)
341                                 else:
342                                         break
343                         self._tempGraph.addPoint(temp, [0] * len(temp), connection.getBedTemperature(), 0)
344
345         def __doPrinterConnectionUpdate(self, connection, extraInfo):
346                 t = time.time()
347                 if self._lastUpdateTime + 0.5 > t and extraInfo is None:
348                         return
349                 self._lastUpdateTime = t
350
351                 if extraInfo is not None and len(extraInfo) > 0:
352                         self._addTermLog('< %s\n' % (extraInfo))
353
354                 self._updateButtonStates()
355                 isPrinting = connection.isPrinting() or connection.isPaused()
356                 if self._progressBar is not None:
357                         if isPrinting:
358                                 self._progressBar.SetValue(connection.getPrintProgress() * 1000)
359                         else:
360                                 self._progressBar.SetValue(0)
361                 info = connection.getStatusString()
362                 info += '\n'
363                 if self._printerConnection.getTemperature(0) is not None:
364                         info += 'Temperature: %d' % (self._printerConnection.getTemperature(0))
365                 if self._printerConnection.getBedTemperature() > 0:
366                         info += ' Bed: %d' % (self._printerConnection.getBedTemperature())
367                 if self._infoText is not None:
368                         self._infoText.SetLabel(info)
369                 else:
370                         self.SetTitle(info.replace('\n', ', '))
371                 if isPrinting != self._isPrinting:
372                         self._isPrinting = isPrinting
373                         preventComputerFromSleeping(self, self._isPrinting)
374
375 class printWindowBasic(wx.Frame):
376         """
377         Printing window for USB printing, network printing, and any other type of printer connection we can think off.
378         This is only a basic window with minimal information.
379         """
380         def __init__(self, parent, printerConnection):
381                 super(printWindowBasic, self).__init__(parent, -1, style=wx.CLOSE_BOX|wx.CLIP_CHILDREN|wx.CAPTION|wx.SYSTEM_MENU|wx.FRAME_TOOL_WINDOW|wx.FRAME_FLOAT_ON_PARENT, title=_("Printing on %s") % (printerConnection.getName()))
382                 self._printerConnection = printerConnection
383                 self._lastUpdateTime = 0
384                 self._isPrinting = False
385
386                 self.SetSizer(wx.BoxSizer())
387                 self.panel = wx.Panel(self)
388                 self.GetSizer().Add(self.panel, 1, flag=wx.EXPAND)
389                 self.sizer = wx.GridBagSizer(2, 2)
390                 self.panel.SetSizer(self.sizer)
391
392                 self.powerWarningText = wx.StaticText(parent=self.panel,
393                         id=-1,
394                         label=_("Your computer is running on battery power.\nConnect your computer to AC power or your print might not finish."),
395                         style=wx.ALIGN_CENTER)
396                 self.powerWarningText.SetBackgroundColour('red')
397                 self.powerWarningText.SetForegroundColour('white')
398                 self.powerManagement = power.PowerManagement()
399                 self.powerWarningTimer = wx.Timer(self)
400                 self.Bind(wx.EVT_TIMER, self.OnPowerWarningChange, self.powerWarningTimer)
401                 self.OnPowerWarningChange(None)
402                 self.powerWarningTimer.Start(10000)
403
404                 self.statsText = wx.StaticText(self.panel, -1, _("InfoLine from printer connection\nInfoLine from dialog\nExtra line\nMore lines for layout\nMore lines for layout\nMore lines for layout"))
405
406                 self.connectButton = wx.Button(self.panel, -1, _("Connect"))
407                 #self.loadButton = wx.Button(self.panel, -1, 'Load')
408                 self.printButton = wx.Button(self.panel, -1, _("Print"))
409                 self.pauseButton = wx.Button(self.panel, -1, _("Pause"))
410                 self.cancelButton = wx.Button(self.panel, -1, _("Cancel print"))
411                 self.errorLogButton = wx.Button(self.panel, -1, _("Error log"))
412                 self.progress = wx.Gauge(self.panel, -1, range=1000)
413
414                 self.sizer.Add(self.powerWarningText, pos=(0, 0), span=(1, 5), flag=wx.EXPAND|wx.BOTTOM, border=5)
415                 self.sizer.Add(self.statsText, pos=(1, 0), span=(1, 5), flag=wx.LEFT, border=5)
416                 self.sizer.Add(self.connectButton, pos=(2, 0))
417                 #self.sizer.Add(self.loadButton, pos=(2,1))
418                 self.sizer.Add(self.printButton, pos=(2, 1))
419                 self.sizer.Add(self.pauseButton, pos=(2, 2))
420                 self.sizer.Add(self.cancelButton, pos=(2, 3))
421                 self.sizer.Add(self.errorLogButton, pos=(2, 4))
422                 self.sizer.Add(self.progress, pos=(3, 0), span=(1, 5), flag=wx.EXPAND)
423
424                 self.Bind(wx.EVT_CLOSE, self.OnClose)
425                 self.connectButton.Bind(wx.EVT_BUTTON, self.OnConnect)
426                 #self.loadButton.Bind(wx.EVT_BUTTON, self.OnLoad)
427                 self.printButton.Bind(wx.EVT_BUTTON, self.OnPrint)
428                 self.pauseButton.Bind(wx.EVT_BUTTON, self.OnPause)
429                 self.cancelButton.Bind(wx.EVT_BUTTON, self.OnCancel)
430                 self.errorLogButton.Bind(wx.EVT_BUTTON, self.OnErrorLog)
431
432                 self.Layout()
433                 self.Fit()
434                 self.Centre()
435
436                 self.progress.SetMinSize(self.progress.GetSize())
437                 self.statsText.SetLabel('\n\n\n\n\n\n')
438                 self._updateButtonStates()
439
440                 self._printerConnection.addCallback(self._doPrinterConnectionUpdate)
441
442                 if self._printerConnection.hasActiveConnection() and not self._printerConnection.isActiveConnectionOpen():
443                         self._printerConnection.openActiveConnection()
444
445         def OnPowerWarningChange(self, e):
446                 type = self.powerManagement.get_providing_power_source_type()
447                 if type == power.POWER_TYPE_AC and self.powerWarningText.IsShown():
448                         self.powerWarningText.Hide()
449                         self.panel.Layout()
450                         self.Layout()
451                         self.Fit()
452                         self.Refresh()
453                 elif type != power.POWER_TYPE_AC and not self.powerWarningText.IsShown():
454                         self.powerWarningText.Show()
455                         self.panel.Layout()
456                         self.Layout()
457                         self.Fit()
458                         self.Refresh()
459
460         def OnClose(self, e):
461                 if self._printerConnection.hasActiveConnection():
462                         if self._printerConnection.isPrinting() or self._printerConnection.isPaused():
463                                 pass #TODO: Give warning that the close will kill the print.
464                         self._printerConnection.closeActiveConnection()
465                 self._printerConnection.removeCallback(self._doPrinterConnectionUpdate)
466                 #TODO: When multiple printer windows are open, closing one will enable sleeping again.
467                 preventComputerFromSleeping(self, False)
468                 self.Destroy()
469
470         def OnConnect(self, e):
471                 self._printerConnection.openActiveConnection()
472
473         def OnLoad(self, e):
474                 pass
475
476         def OnPrint(self, e):
477                 self._printerConnection.startPrint()
478
479         def OnCancel(self, e):
480                 self._printerConnection.cancelPrint()
481
482         def OnPause(self, e):
483                 self._printerConnection.pause(not self._printerConnection.isPaused())
484
485         def OnErrorLog(self, e):
486                 LogWindow(self._printerConnection.getErrorLog())
487
488         def _doPrinterConnectionUpdate(self, connection, extraInfo = None):
489                 wx.CallAfter(self.__doPrinterConnectionUpdate, connection, extraInfo)
490                 #temp = [connection.getTemperature(0)]
491                 #self.temperatureGraph.addPoint(temp, [0], connection.getBedTemperature(), 0)
492
493         def __doPrinterConnectionUpdate(self, connection, extraInfo):
494                 t = time.time()
495                 if self._lastUpdateTime + 0.5 > t and extraInfo is None:
496                         return
497                 self._lastUpdateTime = t
498
499                 if extraInfo is not None and len(extraInfo) > 0:
500                         self._addTermLog('< %s\n' % (extraInfo))
501
502                 self._updateButtonStates()
503                 isPrinting = connection.isPrinting() or connection.isPaused()
504                 if isPrinting:
505                         self.progress.SetValue(connection.getPrintProgress() * 1000)
506                 else:
507                         self.progress.SetValue(0)
508                 info = connection.getStatusString()
509                 info += '\n'
510                 if self._printerConnection.getTemperature(0) is not None:
511                         info += 'Temperature: %d' % (self._printerConnection.getTemperature(0))
512                 if self._printerConnection.getBedTemperature() > 0:
513                         info += ' Bed: %d' % (self._printerConnection.getBedTemperature())
514                 info += '\n\n'
515                 self.statsText.SetLabel(info)
516                 if isPrinting != self._isPrinting:
517                         self._isPrinting = isPrinting
518                         preventComputerFromSleeping(self, self._isPrinting)
519
520
521         def _addTermLog(self, msg):
522                 pass
523
524         def _updateButtonStates(self):
525                 self.connectButton.Show(self._printerConnection.hasActiveConnection())
526                 self.connectButton.Enable(not self._printerConnection.isActiveConnectionOpen() and not self._printerConnection.isActiveConnectionOpening())
527                 self.pauseButton.Show(self._printerConnection.hasPause())
528                 if not self._printerConnection.hasActiveConnection() or self._printerConnection.isActiveConnectionOpen():
529                         self.printButton.Enable(not self._printerConnection.isPrinting() and \
530                                                                         not self._printerConnection.isPaused())
531                         self.pauseButton.Enable(self._printerConnection.isPrinting())
532                         self.cancelButton.Enable(self._printerConnection.isPrinting())
533                 else:
534                         self.printButton.Enable(False)
535                         self.pauseButton.Enable(False)
536                         self.cancelButton.Enable(False)
537                 self.errorLogButton.Show(self._printerConnection.isInErrorState())
538
539 class TemperatureGraph(wx.Panel):
540         def __init__(self, parent):
541                 super(TemperatureGraph, self).__init__(parent)
542
543                 self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground)
544                 self.Bind(wx.EVT_SIZE, self.OnSize)
545                 self.Bind(wx.EVT_PAINT, self.OnDraw)
546
547                 self._lastDraw = time.time() - 1.0
548                 self._points = []
549                 self._backBuffer = None
550                 self.addPoint([0]*16, [0]*16, 0, 0)
551
552         def OnEraseBackground(self, e):
553                 pass
554
555         def OnSize(self, e):
556                 if self._backBuffer is None or self.GetSize() != self._backBuffer.GetSize():
557                         self._backBuffer = wx.EmptyBitmap(*self.GetSizeTuple())
558                         self.UpdateDrawing(True)
559
560         def OnDraw(self, e):
561                 dc = wx.BufferedPaintDC(self, self._backBuffer)
562
563         def UpdateDrawing(self, force=False):
564                 now = time.time()
565                 if (not force and now - self._lastDraw < 1.0) or self._backBuffer is None:
566                         return
567                 self._lastDraw = now
568                 dc = wx.MemoryDC()
569                 dc.SelectObject(self._backBuffer)
570                 dc.Clear()
571                 dc.SetFont(wx.SystemSettings.GetFont(wx.SYS_SYSTEM_FONT))
572                 w, h = self.GetSizeTuple()
573                 bgLinePen = wx.Pen('#A0A0A0')
574                 tempPen = wx.Pen('#FF4040')
575                 tempSPPen = wx.Pen('#FFA0A0')
576                 tempPenBG = wx.Pen('#FFD0D0')
577                 bedTempPen = wx.Pen('#4040FF')
578                 bedTempSPPen = wx.Pen('#A0A0FF')
579                 bedTempPenBG = wx.Pen('#D0D0FF')
580
581                 #Draw the background up to the current temperatures.
582                 x0 = 0
583                 t0 = []
584                 bt0 = 0
585                 tSP0 = 0
586                 btSP0 = 0
587                 for temp, tempSP, bedTemp, bedTempSP, t in self._points:
588                         x1 = int(w - (now - t))
589                         for x in xrange(x0, x1 + 1):
590                                 for n in xrange(0, min(len(t0), len(temp))):
591                                         t = float(x - x0) / float(x1 - x0 + 1) * (temp[n] - t0[n]) + t0[n]
592                                         dc.SetPen(tempPenBG)
593                                         dc.DrawLine(x, h, x, h - (t * h / 350))
594                                 bt = float(x - x0) / float(x1 - x0 + 1) * (bedTemp - bt0) + bt0
595                                 dc.SetPen(bedTempPenBG)
596                                 dc.DrawLine(x, h, x, h - (bt * h / 350))
597                         t0 = temp
598                         bt0 = bedTemp
599                         tSP0 = tempSP
600                         btSP0 = bedTempSP
601                         x0 = x1 + 1
602
603                 #Draw the grid
604                 for x in xrange(w, 0, -30):
605                         dc.SetPen(bgLinePen)
606                         dc.DrawLine(x, 0, x, h)
607                 tmpNr = 0
608                 for y in xrange(h - 1, 0, -h * 50 / 350):
609                         dc.SetPen(bgLinePen)
610                         dc.DrawLine(0, y, w, y)
611                         dc.DrawText(str(tmpNr), 0, y - dc.GetFont().GetPixelSize().GetHeight())
612                         tmpNr += 50
613                 dc.DrawLine(0, 0, w, 0)
614                 dc.DrawLine(0, 0, 0, h)
615
616                 #Draw the main lines
617                 x0 = 0
618                 t0 = []
619                 bt0 = 0
620                 tSP0 = []
621                 btSP0 = 0
622                 for temp, tempSP, bedTemp, bedTempSP, t in self._points:
623                         x1 = int(w - (now - t))
624                         for x in xrange(x0, x1 + 1):
625                                 for n in xrange(0, min(len(t0), len(temp))):
626                                         t = float(x - x0) / float(x1 - x0 + 1) * (temp[n] - t0[n]) + t0[n]
627                                         tSP = float(x - x0) / float(x1 - x0 + 1) * (tempSP[n] - tSP0[n]) + tSP0[n]
628                                         dc.SetPen(tempSPPen)
629                                         dc.DrawPoint(x, h - (tSP * h / 350))
630                                         dc.SetPen(tempPen)
631                                         dc.DrawPoint(x, h - (t * h / 350))
632                                 bt = float(x - x0) / float(x1 - x0 + 1) * (bedTemp - bt0) + bt0
633                                 btSP = float(x - x0) / float(x1 - x0 + 1) * (bedTempSP - btSP0) + btSP0
634                                 dc.SetPen(bedTempSPPen)
635                                 dc.DrawPoint(x, h - (btSP * h / 350))
636                                 dc.SetPen(bedTempPen)
637                                 dc.DrawPoint(x, h - (bt * h / 350))
638                         t0 = temp
639                         bt0 = bedTemp
640                         tSP0 = tempSP
641                         btSP0 = bedTempSP
642                         x0 = x1 + 1
643
644                 del dc
645                 self.Refresh(eraseBackground=False)
646                 self.Update()
647
648                 if len(self._points) > 0 and (time.time() - self._points[0][4]) > w + 20:
649                         self._points.pop(0)
650
651         def addPoint(self, temp, tempSP, bedTemp, bedTempSP):
652                 if len(self._points) > 0 and time.time() - self._points[-1][4] < 0.5:
653                         return
654                 for n in xrange(0, len(temp)):
655                         if temp[n] is None:
656                                 temp[n] = 0
657                 for n in xrange(0, len(tempSP)):
658                         if tempSP[n] is None:
659                                 tempSP[n] = 0
660                 if bedTemp is None:
661                         bedTemp = 0
662                 if bedTempSP is None:
663                         bedTempSP = 0
664                 self._points.append((temp[:], tempSP[:], bedTemp, bedTempSP, time.time()))
665                 wx.CallAfter(self.UpdateDrawing)
666
667
668 class LogWindow(wx.Frame):
669         def __init__(self, logText):
670                 super(LogWindow, self).__init__(None, title=_("Error log"))
671                 self.textBox = wx.TextCtrl(self, -1, logText, style=wx.TE_MULTILINE | wx.TE_DONTWRAP | wx.TE_READONLY)
672                 self.SetSize((500, 400))
673                 self.Show(True)