Example #1
0
	def OnPrint(self, e):
		if len(self.filelist) < 1:
			wx.MessageBox('You need to load a file and prepare it before you can print.', 'Print error', wx.OK | wx.ICON_INFORMATION)
			return
		if not os.path.exists(sliceRun.getExportFilename(self.filelist[0])):
			wx.MessageBox('You need to prepare a print before you can run the actual print.', 'Print error', wx.OK | wx.ICON_INFORMATION)
			return
		printWindow.printFile(sliceRun.getExportFilename(self.filelist[0]))
Example #2
0
 def OnPrint(self, e):
     if len(self.filelist) < 1:
         wx.MessageBox(
             'You need to load a file and prepare it before you can print.',
             'Print error', wx.OK | wx.ICON_INFORMATION)
         return
     if not os.path.exists(sliceRun.getExportFilename(self.filelist[0])):
         wx.MessageBox(
             'You need to prepare a print before you can run the actual print.',
             'Print error', wx.OK | wx.ICON_INFORMATION)
         return
     printWindow.printFile(sliceRun.getExportFilename(self.filelist[0]))
	def OnPrint(self, e):
		printWindow.printFile(self.resultFilename)
Example #4
0
	def showPrintWindow(self):
		if self._gcodeFilename is None:
			return
		printWindow.printFile(self._gcodeFilename)
		if self._gcodeFilename == self._slicer.getGCodeFilename():
			self._slicer.submitSliceInfoOnline()
Example #5
0
 def OnPrint(self, e):
     printWindow.printFile(self.resultFilename)