def __init__(self, parent):
		super(preferencesDialog, self).__init__(None, title="Project Planner Preferences", style=wx.DEFAULT_DIALOG_STYLE)
		
		self.parent = parent
		wx.EVT_CLOSE(self, self.OnClose)

		self.panel = configBase.configPanelBase(self)
		extruderAmount = int(profile.getPreference('extruder_amount'))
		
		left, right, main = self.panel.CreateConfigPanel(self)
		configBase.TitleRow(left, 'Machine head size')
		c = configBase.SettingRow(left, 'Head size - X towards home (mm)', 'extruder_head_size_min_x', '0', 'Size of your printer head in the X direction, on the Ultimaker your fan is in this direction.', type = 'preference')
		validators.validFloat(c, 0.1)
		c = configBase.SettingRow(left, 'Head size - X towards end (mm)', 'extruder_head_size_max_x', '0', 'Size of your printer head in the X direction.', type = 'preference')
		validators.validFloat(c, 0.1)
		c = configBase.SettingRow(left, 'Head size - Y towards home (mm)', 'extruder_head_size_min_y', '0', 'Size of your printer head in the Y direction.', type = 'preference')
		validators.validFloat(c, 0.1)
		c = configBase.SettingRow(left, 'Head size - Y towards end (mm)', 'extruder_head_size_max_y', '0', 'Size of your printer head in the Y direction.', type = 'preference')
		validators.validFloat(c, 0.1)
		c = configBase.SettingRow(left, 'Head gantry height (mm)', 'extruder_head_size_height', '0', 'The tallest object height that will always fit under your printers gantry system when the printer head is at the lowest Z position.', type = 'preference')
		validators.validFloat(c)
		
		self.okButton = wx.Button(left, -1, 'Ok')
		left.GetSizer().Add(self.okButton, (left.GetSizer().GetRows(), 1))
		self.okButton.Bind(wx.EVT_BUTTON, self.OnClose)
		
		self.MakeModal(True)
		main.Fit()
		self.Fit()
예제 #2
0
 def __init__(self, parent):
     super(optionOnOffDialog,
           self).__init__(None,
                          title=_("Option filter for expert settings"),
                          size=(200, 350),
                          style=wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER)
     wx.EVT_CLOSE(self, self.OnClose)
     self.parent = parent
     self.panel = configBase.configPanelBase(self)
     left, right, main = self.panel.CreateConfigPanel(self)
     wx.StaticText(self,
                   -1,
                   _("please uncheck the settings you do not want to see"),
                   style=wx.ALIGN_CENTER)
     self.y = 35
     self.id_name_dic = {}
     for name in profile.getSubCategoriesFor('expert'):
         id = wx.NewId()
         self.id_name_dic[id] = name
         i = wx.CheckBox(self,
                         id,
                         label=name,
                         pos=(20, self.y),
                         style=wx.ALIGN_LEFT)
         self.y += 25
         if name not in Filter:
             i.SetValue(True)
         else:
             i.SetValue(False)
         i.Bind(wx.EVT_CHECKBOX, self.Oncheck, i)
     main.Fit()
예제 #3
0
    def __init__(self, parent):
        super(preferencesDialog, self).__init__(parent, title=_("Preferences"))

        wx.EVT_CLOSE(self, self.OnClose)

        self.parent = parent
        extruderCount = int(profile.getMachineSetting('extruder_amount'))

        self.panel = configBase.configPanelBase(self)

        left, right, main = self.panel.CreateConfigPanel(self)

        configBase.TitleRow(left, _("Colours"))
        configBase.SettingRow(left, 'model_colour', wx.Colour)
        for i in xrange(1, extruderCount):
            configBase.SettingRow(left, 'model_colour%d' % (i + 1), wx.Colour)

        if len(resources.getLanguageOptions()) > 1:
            configBase.TitleRow(left, _("Language"))
            configBase.SettingRow(
                left, 'language',
                map(lambda n: n[1], resources.getLanguageOptions()))

        configBase.TitleRow(right, _("Filament settings"))
        configBase.SettingRow(right, 'filament_physical_density')
        configBase.SettingRow(right, 'filament_cost_kg')
        configBase.SettingRow(right, 'filament_cost_meter')

        #configBase.TitleRow(right, 'Slicer settings')
        #configBase.SettingRow(right, 'save_profile')

        configBase.TitleRow(right, 'SD Card settings')
        configBase.SettingRow(right, 'auto_detect_sd')
        configBase.SettingRow(right, 'sdcard_rootfolder')
        #same as the expert settings button.
        self.browseButton = wx.Button(right, -1, '...', style=wx.BU_EXACTFIT)
        self.browseButton.SetFont(
            wx.Font(
                wx.SystemSettings.GetFont(
                    wx.SYS_DEFAULT_GUI_FONT).GetPointSize() * 0.8,
                wx.FONTFAMILY_DEFAULT, wx.NORMAL, wx.FONTWEIGHT_NORMAL))
        self.browseButton.Bind(wx.EVT_BUTTON, self.OnBrowseSDRootFolder)
        right.GetSizer().Add(self.browseButton,
                             (right.GetSizer().GetRows() - 1, 2),
                             flag=wx.ALIGN_CENTER_VERTICAL)

        configBase.TitleRow(right, _("Cura settings"))
        configBase.SettingRow(right, 'check_for_updates')
        #configBase.SettingRow(right, 'submit_slice_information')

        self.okButton = wx.Button(right, -1, _('Ok'))
        right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 0),
                             flag=wx.BOTTOM,
                             border=5)
        self.okButton.Bind(wx.EVT_BUTTON, lambda e: self.Close())

        main.Fit()
        self.Fit()
예제 #4
0
    def __init__(self, parent, onCloseFn=None):
        super(preferencesDialog, self).__init__(None, title=_("Preferences"))

        wx.EVT_CLOSE(self, self.OnClose)

        self.onCloseFn = onCloseFn

        self.parent = parent
        extruderCount = int(profile.getMachineSetting('extruder_amount'))

        self.panel = configBase.configPanelBase(self)

        left, right, main = self.panel.CreateConfigPanel(self)

        printWindowTypes = ['Basic']
        for p in pluginInfo.getPluginList('printwindow'):
            printWindowTypes.append(p.getName())
        configBase.TitleRow(left, _("Print window"))
        configBase.SettingRow(left, 'printing_window', printWindowTypes)

        configBase.TitleRow(left, _("Colours"))
        configBase.SettingRow(left, 'model_colour', wx.Colour)
        for i in xrange(1, extruderCount):
            configBase.SettingRow(left, 'model_colour%d' % (i + 1), wx.Colour)

        if len(resources.getLanguageOptions()) > 1:
            configBase.TitleRow(left, _("Language"))
            configBase.SettingRow(
                left, 'language',
                map(lambda n: n[1], resources.getLanguageOptions()))

        configBase.TitleRow(right, _("Filament settings"))
        configBase.SettingRow(right, 'filament_physical_density')
        configBase.SettingRow(right, 'filament_cost_kg')
        configBase.SettingRow(right, 'filament_cost_meter')

        #configBase.TitleRow(right, 'Slicer settings')
        #configBase.SettingRow(right, 'save_profile')

        #configBase.TitleRow(right, 'SD Card settings')

        configBase.TitleRow(right, _("3DK settings"))
        configBase.SettingRow(right, 'auto_detect_sd')
        # configBase.SettingRow(right, 'check_for_updates')
        configBase.SettingRow(right, 'auto_slice')
        configBase.SettingRow(right, 'submit_slice_information')

        self.okButton = wx.Button(right, -1, 'Ok')
        right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 1),
                             flag=wx.BOTTOM | wx.RIGHT | wx.ALIGN_RIGHT,
                             border=5)
        self.okButton.Bind(wx.EVT_BUTTON, lambda e: self.Close())

        main.Fit()
        self.Fit()
예제 #5
0
	def __init__(self, parent):
		super(preferencesDialog, self).__init__(None, title=_("Preferences"))

		wx.EVT_CLOSE(self, self.OnClose)

		self.parent = parent
		extruderCount = int(profile.getMachineSetting('extruder_amount'))

		self.panel = configBase.configPanelBase(self)

		left, right, main = self.panel.CreateConfigPanel(self)

		printWindowTypes = ['Basic']
		for p in pluginInfo.getPluginList('printwindow'):
			printWindowTypes.append(p.getName())
		configBase.TitleRow(left, _("Print window"))
		configBase.SettingRow(left, 'printing_window', printWindowTypes)

		configBase.TitleRow(left, _("Colours"))
		configBase.SettingRow(left, 'model_colour', wx.Colour)
		for i in xrange(1, extruderCount):
			configBase.SettingRow(left, 'model_colour%d' % (i+1), wx.Colour)

		if len(resources.getLanguageOptions()) > 1:
			configBase.TitleRow(left, _("Language"))
			configBase.SettingRow(left, 'language', map(lambda n: n[1], resources.getLanguageOptions()))

		configBase.TitleRow(right, _("Filament settings"))
		configBase.SettingRow(right, 'filament_physical_density')
		configBase.SettingRow(right, 'filament_cost_kg')
		configBase.SettingRow(right, 'filament_cost_meter')

		#configBase.TitleRow(right, 'Slicer settings')
		#configBase.SettingRow(right, 'save_profile')

		configBase.TitleRow(right, 'SD Card settings')
		configBase.SettingRow(right, 'auto_detect_sd')
		configBase.SettingRow(right, 'sdcard_rootfolder')
		#same as the expert settings button.
		self.browseButton = wx.Button(right, -1, '...', style=wx.BU_EXACTFIT)
		self.browseButton.SetFont(wx.Font(wx.SystemSettings.GetFont(wx.SYS_ANSI_VAR_FONT).GetPointSize() * 0.8, wx.FONTFAMILY_DEFAULT, wx.NORMAL, wx.FONTWEIGHT_NORMAL))
		self.browseButton.Bind(wx.EVT_BUTTON, self.OnBrowseSDRootFolder)
		right.GetSizer().Add(self.browseButton, (right.GetSizer().GetRows()-1, 2), flag=wx.ALIGN_CENTER_VERTICAL)

		"""
		configBase.TitleRow(right, _("Cura settings"))
		configBase.SettingRow(right, 'check_for_updates')
		configBase.SettingRow(right, 'submit_slice_information')
		"""
		self.okButton = wx.Button(right, -1, 'Ok')
		right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 0), flag=wx.BOTTOM, border=5)
		self.okButton.Bind(wx.EVT_BUTTON, lambda e: self.Close())

		main.Fit()
		self.Fit()
예제 #6
0
	def __init__(self, parent):
		"""
		Creates the window for changing the preferences
		"""
		super(preferencesDialog, self).__init__(None, title="Preferences")

		wx.EVT_CLOSE(self, self.OnClose)

		self.parent = parent
		extruderCount = int(profile.getMachineSetting('extruder_amount'))

		self.panel = configBase.configPanelBase(self)

		left, right, main = self.panel.CreateConfigPanel(self)

		configBase.TitleRow(left, _("Colours"))
		configBase.SettingRow(left, 'model_colour', wx.Colour)
		for i in xrange(1, extruderCount):
			configBase.SettingRow(left, 'model_colour%d' % (i+1), wx.Colour)
		
		#Allow the camera to record option
		configBase.TitleRow(left, _("Camera")) #title for camera option
		configBase.SettingRow(left, 'camera_enabled') #camera option setting
			
		if len(resources.getLanguageOptions()) > 1:
			configBase.TitleRow(left, _("Language"))
			configBase.SettingRow(left, 'language', map(lambda n: n[1], resources.getLanguageOptions()))

		configBase.TitleRow(right, _("Filament settings"))
		configBase.SettingRow(right, 'filament_physical_density')
		configBase.SettingRow(right, 'filament_cost_kg')
		configBase.SettingRow(right, 'filament_cost_meter')

		#configBase.TitleRow(right, 'Slicer settings')
		#configBase.SettingRow(right, 'save_profile')

		#configBase.TitleRow(right, 'SD Card settings')

		configBase.TitleRow(right, _("Cura settings"))
		configBase.SettingRow(right, 'auto_detect_sd')
		configBase.SettingRow(right, 'check_for_updates')
		configBase.SettingRow(right, 'submit_slice_information')

		self.okButton = wx.Button(right, -1, 'Ok')
		right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 0), flag=wx.BOTTOM, border=5)
		self.okButton.Bind(wx.EVT_BUTTON, lambda e: self.Close())

		main.Fit()
		self.Fit()
예제 #7
0
    def __init__(self, callback):
        super(expertConfigWindow, self).__init__(None, title="Expert config", style=wx.DEFAULT_DIALOG_STYLE)

        wx.EVT_CLOSE(self, self.OnClose)
        self.panel = configBase.configPanelBase(self, callback)

        left, right, main = self.panel.CreateConfigPanel(self)
        self._addSettingsToPanels("expert", left, right)

        self.okButton = wx.Button(right, -1, "Ok")
        right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 0))
        self.Bind(wx.EVT_BUTTON, lambda e: self.Close(), self.okButton)

        main.Fit()
        self.Fit()
예제 #8
0
	def __init__(self, parent):
		super(preferencesDialog, self).__init__(parent, title=_("Preferences"))

		wx.EVT_CLOSE(self, self.OnClose)

		self.parent = parent
		extruderCount = int(profile.getMachineSetting('extruder_amount'))

		self.panel = configBase.configPanelBase(self)

		left, right, main = self.panel.CreateConfigPanel(self)

		printWindowTypes = ['Basic']
		for p in pluginInfo.getPluginList('printwindow'):
			printWindowTypes.append(p.getName())
		configBase.TitleRow(left, _("Print window"))
		configBase.SettingRow(left, 'printing_window', printWindowTypes)

		configBase.TitleRow(left, _("Colours"))
		configBase.SettingRow(left, 'model_colour', wx.Colour)
		for i in xrange(1, extruderCount):
			configBase.SettingRow(left, 'model_colour%d' % (i+1), wx.Colour)

		if len(resources.getLanguageOptions()) > 1:
			configBase.TitleRow(left, _("Language"))
			configBase.SettingRow(left, 'language', map(lambda n: n[1], resources.getLanguageOptions()))

		configBase.TitleRow(right, _("Filament settings"))
		configBase.SettingRow(right, 'filament_physical_density')
		configBase.SettingRow(right, 'filament_cost_kg')
		configBase.SettingRow(right, 'filament_cost_meter')

		#configBase.TitleRow(right, 'Slicer settings')
		#configBase.SettingRow(right, 'save_profile')

		#configBase.TitleRow(right, 'SD Card settings')

		configBase.TitleRow(right, _("Cura settings"))
		configBase.SettingRow(right, 'auto_detect_sd')
		configBase.SettingRow(right, 'check_for_updates')
		#configBase.SettingRow(right, 'submit_slice_information')

		self.okButton = wx.Button(right, -1, _('Ok'))
		right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 0), flag=wx.BOTTOM, border=5)
		self.okButton.Bind(wx.EVT_BUTTON, lambda e: self.Close())

		main.Fit()
		self.Fit()
예제 #9
0
    def __init__(self, callback):
        super(expertConfigWindow, self).__init__(None,
                                                 title='Expert config',
                                                 style=wx.DEFAULT_DIALOG_STYLE)

        wx.EVT_CLOSE(self, self.OnClose)
        self.panel = configBase.configPanelBase(self, callback)

        left, right, main = self.panel.CreateConfigPanel(self)
        self._addSettingsToPanels('expert', left, right)

        self.okButton = wx.Button(right, -1, 'Ok')
        right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 0))
        self.Bind(wx.EVT_BUTTON, lambda e: self.Close(), self.okButton)

        main.Fit()
        self.Fit()
예제 #10
0
    def __init__(self, parent):
        super(preferencesDialog, self).__init__(None, title="Preferences")

        wx.EVT_CLOSE(self, self.OnClose)

        self.parent = parent
        extruderCount = int(profile.getMachineSetting('extruder_amount'))

        self.panel = configBase.configPanelBase(self)

        left, right, main = self.panel.CreateConfigPanel(self)

        configBase.TitleRow(left, _("Colours"))
        configBase.SettingRow(left, 'model_colour', wx.Colour)
        for i in xrange(1, extruderCount):
            configBase.SettingRow(left, 'model_colour%d' % (i + 1), wx.Colour)

        if len(resources.getLanguageOptions()) > 1:
            configBase.TitleRow(left, _("Language"))
            configBase.SettingRow(
                left, 'language',
                map(lambda n: n[1], resources.getLanguageOptions()))

        configBase.TitleRow(right, _("Filament settings"))
        configBase.SettingRow(right, 'filament_physical_density')
        configBase.SettingRow(right, 'filament_cost_kg')
        configBase.SettingRow(right, 'filament_cost_meter')

        #configBase.TitleRow(right, 'Slicer settings')
        #configBase.SettingRow(right, 'save_profile')

        #configBase.TitleRow(right, 'SD Card settings')

        configBase.TitleRow(right, _("Cura settings"))
        configBase.SettingRow(right, 'auto_detect_sd')
        configBase.SettingRow(right, 'check_for_updates')
        configBase.SettingRow(right, 'submit_slice_information')

        self.okButton = wx.Button(right, -1, 'Ok')
        right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 0),
                             flag=wx.BOTTOM,
                             border=5)
        self.okButton.Bind(wx.EVT_BUTTON, lambda e: self.Close())

        main.Fit()
        self.Fit()
예제 #11
0
파일: expertConfig.py 프로젝트: Odemia/Cura
	def __init__(self, callback, sub_category=None):
		super(expertConfigWindow, self).__init__(None, title=_('Expert config'), style=wx.DEFAULT_DIALOG_STYLE)

		wx.EVT_CLOSE(self, self.OnClose)
		self.panel = configBase.configPanelBase(self, callback)

		left, right, main = self.panel.CreateConfigPanel(self)
		self._addSettingsToPanels('expert', sub_category, left, right)

		button_panel = right
		if sub_category is not None:
			button_panel = left
		self.okButton = wx.Button(button_panel, -1, 'Ok')
		button_panel.GetSizer().Add(self.okButton, (button_panel.GetSizer().GetRows(), 0), flag=wx.LEFT|wx.TOP|wx.BOTTOM, border=10)
		self.Bind(wx.EVT_BUTTON, lambda e: self.Close(), self.okButton)
		
		main.Fit()
		self.Fit()
예제 #12
0
    def __init__(self, callback):
        super(expertConfigWindow,
              self).__init__(None,
                             title=_('Expert config'),
                             style=wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER)
        wx.EVT_CLOSE(self, self.OnClose)
        self.panel = configBase.configPanelBase(self, callback)

        left, right, main = self.panel.CreateConfigPanel(self)
        self._addSettingsToPanels('expert', left, right)
        # Change: comment out to delete ok button use wx.Close instead
        # self.okButton = wx.Button(right, -1, 'Ok')
        # right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 0))
        # self.Bind(wx.EVT_BUTTON, lambda e: self.Close(), self.okButton)
        self.Bind(wx.EVT_BUTTON, lambda e: self.Close())
        # Add options filter to distribution
        self.fliterButton = wx.Button(right, -1, _('option filter'))
        right.GetSizer().Add(self.fliterButton,
                             (right.GetSizer().GetRows(), 0))
        self.Bind(wx.EVT_BUTTON, self.OnfliterButton)
        main.Fit()
        self.Fit()
예제 #13
0
	def __init__(self, parent):
		super(preferencesDialog, self).__init__(None, title="Preferences")

		wx.EVT_CLOSE(self, self.OnClose)

		self.parent = parent
		extruderCount = int(profile.getMachineSetting('extruder_amount'))

		self.panel = configBase.configPanelBase(self)

		left, right, main = self.panel.CreateConfigPanel(self)

		configBase.TitleRow(left, _("Colours"))
		configBase.SettingRow(left, 'model_colour', wx.Colour)
		for i in xrange(1, extruderCount):
			configBase.SettingRow(left, 'model_colour%d' % (i+1), wx.Colour)

		configBase.TitleRow(right, _("Filament settings"))
		configBase.SettingRow(right, 'filament_physical_density')
		configBase.SettingRow(right, 'filament_cost_kg')
		configBase.SettingRow(right, 'filament_cost_meter')

		#configBase.TitleRow(right, 'Slicer settings')
		#configBase.SettingRow(right, 'save_profile')

		#configBase.TitleRow(right, 'SD Card settings')

		configBase.TitleRow(right, _("Cura settings"))
		configBase.SettingRow(right, 'auto_detect_sd')
		configBase.SettingRow(right, 'check_for_updates')
		configBase.SettingRow(right, 'submit_slice_information')

		self.okButton = wx.Button(right, -1, 'Ok')
		right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 0), flag=wx.BOTTOM, border=5)
		self.okButton.Bind(wx.EVT_BUTTON, lambda e: self.Close())

		main.Fit()
		self.Fit()
예제 #14
0
    def __init__(self, callback, sub_category=None):
        super(expertConfigWindow, self).__init__(None,
                                                 title=_('Expert config'),
                                                 style=wx.DEFAULT_DIALOG_STYLE)

        wx.EVT_CLOSE(self, self.OnClose)
        self.panel = configBase.configPanelBase(self, callback)

        left, right, main = self.panel.CreateConfigPanel(self)
        self._addSettingsToPanels('expert', sub_category, left, right)

        button_panel = right
        if sub_category is not None:
            button_panel = left
        self.okButton = wx.Button(button_panel, -1, 'Ok')
        button_panel.GetSizer().Add(self.okButton,
                                    (button_panel.GetSizer().GetRows(), 0),
                                    flag=wx.LEFT | wx.TOP | wx.BOTTOM,
                                    border=10)
        self.Bind(wx.EVT_BUTTON, lambda e: self.Close(), self.okButton)

        main.Fit()
        self.Fit()
예제 #15
0
	def __init__(self):
		super(expertConfigWindow, self).__init__(None, title='Expert config', style=wx.DEFAULT_DIALOG_STYLE)

		wx.EVT_CLOSE(self, self.OnClose)
		self.panel = configBase.configPanelBase(self)

		left, right, main = self.panel.CreateConfigPanel(self)
		
		configBase.TitleRow(left, "Accuracy")
		c = configBase.SettingRow(left, "Extra Wall thickness for bottom/top (mm)", 'extra_base_wall_thickness', '0.0', 'Additional wall thickness of the bottom and top layers.')
		validators.validFloat(c, 0.0)
		
		configBase.TitleRow(left, "Cool")
		c = configBase.SettingRow(left, "Minimum feedrate (mm/s)", 'cool_min_feedrate', '5', 'The minimal layer time can cause the print to slow down so much it starts to ooze. The minimal feedrate protects against this. Even if a print gets slown down it will never be slower then this minimal feedrate.')
		validators.validFloat(c, 0.0)
		c = configBase.SettingRow(left, "Fan on layer number", 'fan_layer', '0', 'The layer at which the fan is turned on. The first layer is layer 0. The first layer can stick better if you turn on the fan on, on the 2nd layer.')
		validators.validInt(c, 0)
		c = configBase.SettingRow(left, "Fan speed min (%)", 'fan_speed', '100', 'When the fan is turned on, it is enabled at this speed setting. If cool slows down the layer, the fan is adjusted between the min and max speed. Minimal fan speed is used if the layer is not slowed down due to cooling.')
		validators.validInt(c, 0, 100)
		c = configBase.SettingRow(left, "Fan speed max (%)", 'fan_speed_max', '100', 'When the fan is turned on, it is enabled at this speed setting. If cool slows down the layer, the fan is adjusted between the min and max speed. Maximal fan speed is used if the layer is slowed down due to cooling by more then 200%.')
		validators.validInt(c, 0, 100)

		configBase.TitleRow(left, "Raft (if enabled)")
		c = configBase.SettingRow(left, "Extra margin (mm)", 'raft_margin', '3.0', 'If the raft is enabled, this is the extra raft area around the object which is also rafted. Increasing this margin will create a stronger raft.')
		validators.validFloat(c, 0.0)
		c = configBase.SettingRow(left, "Base material amount (%)", 'raft_base_material_amount', '100', 'The base layer is the first layer put down as a raft. This layer has thick strong lines and is put firmly on the bed to prevent warping. This setting adjust the amount of material used for the base layer.')
		validators.validFloat(c, 0.0)
		c = configBase.SettingRow(left, "Interface material amount (%)", 'raft_interface_material_amount', '100', 'The interface layer is a weak thin layer between the base layer and the printed object. It is designed to has little material to make it easy to break the base off the printed object. This setting adjusts the amount of material used for the interface layer.')
		validators.validFloat(c, 0.0)

		configBase.TitleRow(left, "Support")
		c = configBase.SettingRow(left, "Material amount (%)", 'support_rate', '100', 'Amount of material used for support, less material gives a weaker support structure which is easier to remove.')
		validators.validFloat(c, 0.0)
		c = configBase.SettingRow(left, "Distance from object (mm)", 'support_distance', '0.5', 'Distance between the support structure and the object. Empty gap in which no support structure is printed.')
		validators.validFloat(c, 0.0)

		configBase.TitleRow(right, "Infill")
		c = configBase.SettingRow(right, "Infill pattern", 'infill_type', ['Line', 'Grid Circular', 'Grid Hexagonal', 'Grid Rectangular'], 'Pattern of the none-solid infill. Line is default, but grids can provide a strong print.')
		c = configBase.SettingRow(right, "Solid infill top", 'solid_top', True, 'Create a solid top surface, if set to false the top is filled with the fill percentage. Useful for cups/vases.')
		c = configBase.SettingRow(right, "Infill overlap (%)", 'fill_overlap', '15', 'Amount of overlap between the infill and the walls. There is a slight overlap with the walls and the infill so the walls connect firmly to the infill.')
		validators.validFloat(c, 0.0)

		configBase.TitleRow(right, "Bridge")
		c = configBase.SettingRow(right, "Bridge speed (%)", 'bridge_speed', '100', 'Speed at which layers with bridges are printed, compared to normal printing speed.')
		validators.validFloat(c, 0.0)
		
		configBase.TitleRow(right, "Sequence")
		c = configBase.SettingRow(right, "Print order sequence", 'sequence', ['Loops > Perimeter > Infill', 'Loops > Infill > Perimeter', 'Infill > Loops > Perimeter', 'Infill > Perimeter > Loops', 'Perimeter > Infill > Loops', 'Perimeter > Loops > Infill'], 'Sequence of printing. The perimeter is the outer print edge, the loops are the insides of the walls, and the infill is the insides.');
		c = configBase.SettingRow(right, "Force first layer sequence", 'force_first_layer_sequence', True, 'This setting forces the order of the first layer to be \'Perimeter > Loops > Infill\'')

		configBase.TitleRow(right, "Joris")
		c = configBase.SettingRow(right, "Joris the outer edge", 'joris', False, '[Joris] is a code name for smoothing out the Z move of the outer edge. This will create a steady Z increase over the whole print. It is intended to be used with a single walled wall thickness to make cups/vases.')

		configBase.TitleRow(right, "Retraction")
		c = configBase.SettingRow(right, "Retract on jumps only", 'retract_on_jumps_only', True, 'Only retract when we are making a move that is over a hole in the model, else retract on every move. This effects print quality in different ways.')

		configBase.TitleRow(right, "Hop")
		c = configBase.SettingRow(right, "Enable hop on move", 'hop_on_move', False, 'When moving from print position to print position, raise the printer head 0.2mm so it does not knock off the print (experimental).')

		main.Fit()
		self.Fit()
예제 #16
0
	def __init__(self, parent):
		super(preferencesDialog, self).__init__(None, title="Preferences", style=wx.DEFAULT_DIALOG_STYLE)
		
		wx.EVT_CLOSE(self, self.OnClose)
		
		self.parent = parent
		self.oldExtruderAmount = int(profile.getPreference('extruder_amount'))

		self.panel = configBase.configPanelBase(self)
		
		left, right, main = self.panel.CreateConfigPanel(self)
		configBase.TitleRow(left, 'Machine settings')
		c = configBase.SettingRow(left, 'Steps per E', 'steps_per_e', '0', 'Amount of steps per mm filament extrusion', type = 'preference')
		validators.validFloat(c, 0.1)
		c = configBase.SettingRow(left, 'Maximum width (mm)', 'machine_width', '205', 'Size of the machine in mm', type = 'preference')
		validators.validFloat(c, 10.0)
		c = configBase.SettingRow(left, 'Maximum depth (mm)', 'machine_depth', '205', 'Size of the machine in mm', type = 'preference')
		validators.validFloat(c, 10.0)
		c = configBase.SettingRow(left, 'Maximum height (mm)', 'machine_height', '200', 'Size of the machine in mm', type = 'preference')
		validators.validFloat(c, 10.0)
		c = configBase.SettingRow(left, 'Extruder count', 'extruder_amount', ['1', '2', '3', '4'], 'Amount of extruders in your machine.', type = 'preference')
		c = configBase.SettingRow(left, 'Heated bed', 'has_heated_bed', False, 'If you have an heated bed, this enabled heated bed settings', type = 'preference')
		
		for i in xrange(1, self.oldExtruderAmount):
			configBase.TitleRow(left, 'Extruder %d' % (i+1))
			c = configBase.SettingRow(left, 'Offset X', 'extruder_offset_x%d' % (i), '0.0', 'The offset of your secondary extruder compared to the primary.', type = 'preference')
			validators.validFloat(c)
			c = configBase.SettingRow(left, 'Offset Y', 'extruder_offset_y%d' % (i), '0.0', 'The offset of your secondary extruder compared to the primary.', type = 'preference')
			validators.validFloat(c)

		configBase.TitleRow(left, 'Colours')
		c = configBase.SettingRow(left, 'Model colour', 'model_colour', wx.Colour(0,0,0), '', type = 'preference')
		for i in xrange(1, self.oldExtruderAmount):
			c = configBase.SettingRow(left, 'Model colour (%d)' % (i+1), 'model_colour%d' % (i+1), wx.Colour(0,0,0), '', type = 'preference')

		configBase.TitleRow(right, 'Filament settings')
		c = configBase.SettingRow(right, 'Density (kg/m3)', 'filament_density', '1300', 'Weight of the filament per m3. Around 1300 for PLA. And around 1040 for ABS. This value is used to estimate the weight if the filament used for the print.', type = 'preference')
		validators.validFloat(c, 500.0, 3000.0)
		c = configBase.SettingRow(right, 'Cost (price/kg)', 'filament_cost_kg', '0', 'Cost of your filament per kg, to estimate the cost of the final print.', type = 'preference')
		validators.validFloat(c, 0.0)
		c = configBase.SettingRow(right, 'Cost (price/m)', 'filament_cost_meter', '0', 'Cost of your filament per meter, to estimate the cost of the final print.', type = 'preference')
		validators.validFloat(c, 0.0)
		
		configBase.TitleRow(right, 'Communication settings')
		c = configBase.SettingRow(right, 'Serial port', 'serial_port', ['AUTO'] + machineCom.serialList(), 'Serial port to use for communication with the printer', type = 'preference')
		c = configBase.SettingRow(right, 'Baudrate', 'serial_baud', ['AUTO'] + map(str, machineCom.baudrateList()), 'Speed of the serial port communication\nNeeds to match your firmware settings\nCommon values are 250000, 115200, 57600', type = 'preference')

		configBase.TitleRow(right, 'Slicer settings')
		#c = configBase.SettingRow(right, 'Slicer selection', 'slicer', ['Cura (Skeinforge based)', 'Slic3r'], 'Which slicer to use to slice objects. Usually the Cura engine produces the best results. But Slic3r is developing fast and is faster with slicing.', type = 'preference')
		c = configBase.SettingRow(right, 'Save profile on slice', 'save_profile', False, 'When slicing save the profile as [stl_file]_profile.ini next to the model.', type = 'preference')

		configBase.TitleRow(right, 'SD Card settings')
		if len(profile.getSDcardDrives()) > 1:
			c = configBase.SettingRow(right, 'SD card drive', 'sdpath', profile.getSDcardDrives(), 'Location of your SD card, when using the copy to SD feature.', type = 'preference')
		else:
			c = configBase.SettingRow(right, 'SD card path', 'sdpath', '', 'Location of your SD card, when using the copy to SD feature.', type = 'preference')
		c = configBase.SettingRow(right, 'Copy to SD with 8.3 names', 'sdshortnames', False, 'Save the gcode files in short filenames, so they are properly shown on the UltiController', type = 'preference')

		configBase.TitleRow(right, 'Cura settings')
		c = configBase.SettingRow(right, 'Check for updates', 'check_for_updates', True, 'Check for newer versions of Cura on startup', type = 'preference')

		self.okButton = wx.Button(right, -1, 'Ok')
		right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 0), flag=wx.BOTTOM, border=5)
		self.okButton.Bind(wx.EVT_BUTTON, self.OnClose)
		
		self.MakeModal(True)
		main.Fit()
		self.Fit()
예제 #17
0
	def __init__(self, parent):
		super(machineSettingsDialog, self).__init__(None, title="Machine settings")

		wx.EVT_CLOSE(self, self.OnClose)

		self.parent = parent
		extruderCount = int(profile.getMachineSetting('extruder_amount'))

		self.panel = configBase.configPanelBase(self)
		self.SetSizer(wx.BoxSizer(wx.HORIZONTAL))
		self.GetSizer().Add(self.panel, 1, wx.EXPAND)
		self.nb = wx.Notebook(self.panel)
		self.panel.SetSizer(wx.BoxSizer(wx.VERTICAL))
		self.panel.GetSizer().Add(self.nb, 1, wx.EXPAND)

		for idx in xrange(0, profile.getMachineCount()):
			left, right, main = self.panel.CreateConfigPanel(self.nb)
			configBase.TitleRow(left, _("Machine settings"))
			configBase.SettingRow(left, 'steps_per_e', index=idx)
			configBase.SettingRow(left, 'machine_width', index=idx)
			configBase.SettingRow(left, 'machine_depth', index=idx)
			configBase.SettingRow(left, 'machine_height', index=idx)
			configBase.SettingRow(left, 'extruder_amount', index=idx)
			configBase.SettingRow(left, 'has_heated_bed', index=idx)
			configBase.SettingRow(left, 'machine_center_is_zero', index=idx)
			configBase.SettingRow(left, 'gcode_flavor', index=idx)

			configBase.TitleRow(right, _("Printer head size"))
			configBase.SettingRow(right, 'extruder_head_size_min_x', index=idx)
			configBase.SettingRow(right, 'extruder_head_size_min_y', index=idx)
			configBase.SettingRow(right, 'extruder_head_size_max_x', index=idx)
			configBase.SettingRow(right, 'extruder_head_size_max_y', index=idx)
			configBase.SettingRow(right, 'extruder_head_size_height', index=idx)

			for i in xrange(1, extruderCount):
				configBase.TitleRow(left, _("Extruder %d") % (i+1))
				configBase.SettingRow(left, 'extruder_offset_x%d' % (i), index=idx)
				configBase.SettingRow(left, 'extruder_offset_y%d' % (i), index=idx)

			configBase.TitleRow(right, _("Communication settings"))
			configBase.SettingRow(right, 'serial_port', ['AUTO'] + machineCom.serialList(), index=idx)
			configBase.SettingRow(right, 'serial_baud', ['AUTO'] + map(str, machineCom.baudrateList()), index=idx)

			self.nb.AddPage(main, profile.getMachineSetting('machine_name', idx).title())

		self.nb.SetSelection(int(profile.getPreferenceFloat('active_machine')))

		self.buttonPanel = wx.Panel(self.panel)
		self.panel.GetSizer().Add(self.buttonPanel)

		self.buttonPanel.SetSizer(wx.BoxSizer(wx.HORIZONTAL))
		self.okButton = wx.Button(self.buttonPanel, -1, 'Ok')
		self.okButton.Bind(wx.EVT_BUTTON, lambda e: self.Close())
		self.buttonPanel.GetSizer().Add(self.okButton, flag=wx.ALL, border=5)

		self.addButton = wx.Button(self.buttonPanel, -1, 'Add new machine')
		self.addButton.Bind(wx.EVT_BUTTON, self.OnAddMachine)
		self.buttonPanel.GetSizer().Add(self.addButton, flag=wx.ALL, border=5)

		self.remButton = wx.Button(self.buttonPanel, -1, 'Remove machine')
		self.remButton.Bind(wx.EVT_BUTTON, self.OnRemoveMachine)
		self.buttonPanel.GetSizer().Add(self.remButton, flag=wx.ALL, border=5)

		main.Fit()
		self.Fit()
예제 #18
0
	def __init__(self, parent):
		super(machineSettingsDialog, self).__init__(parent, title=_("Machine settings"))

		wx.EVT_CLOSE(self, self.OnClose)

		self.parent = parent

		self.panel = configBase.configPanelBase(self)
		self.SetSizer(wx.BoxSizer(wx.HORIZONTAL))
		self.GetSizer().Add(self.panel, 1, wx.EXPAND)
		self.nb = wx.Notebook(self.panel)
		self.panel.SetSizer(wx.BoxSizer(wx.VERTICAL))
		self.panel.GetSizer().Add(self.nb, 1, wx.EXPAND)

		for idx in xrange(0, profile.getMachineCount()):
			printer_type = profile.getMachineSetting('machine_type', idx)
			extruderCount = int(profile.getMachineSetting('extruder_amount', idx))
			left, right, main = self.panel.CreateConfigPanel(self.nb)
			configBase.TitleRow(left, _("Machine settings"))
			configBase.SettingRow(left, 'steps_per_e', index=idx)
			configBase.SettingRow(left, 'machine_width', index=idx)
			configBase.SettingRow(left, 'machine_depth', index=idx)
			configBase.SettingRow(left, 'machine_height', index=idx)
			if not printer_type.startswith('lulzbot_TAZ_6'): #Disabled for TAZ 6, use LCD controller instead
				configBase.SettingRow(left, 'extruder_z_offset', index=idx)
			configBase.SettingRow(left, 'extruder_amount', index=idx)
			configBase.SettingRow(left, 'has_heated_bed', index=idx)
			configBase.SettingRow(left, 'machine_center_is_zero', index=idx)
			configBase.SettingRow(left, 'machine_shape', index=idx)
			configBase.SettingRow(left, 'gcode_flavor', index=idx)

			if printer_type.startswith('lulzbot_'):
				configBase.TitleRow(right, _("Tool Head"))
				row = configBase.ToolHeadRow(right, 'toolhead', index=idx)
				row.button.Bind(wx.EVT_BUTTON, self.OnChangeToolheadButton)

			configBase.TitleRow(right, _("Printer head size"))
			configBase.SettingRow(right, 'extruder_head_size_min_x', index=idx)
			configBase.SettingRow(right, 'extruder_head_size_min_y', index=idx)
			configBase.SettingRow(right, 'extruder_head_size_max_x', index=idx)
			configBase.SettingRow(right, 'extruder_head_size_max_y', index=idx)
			configBase.SettingRow(right, 'extruder_head_size_height', index=idx)

			for i in xrange(1, extruderCount):
				configBase.TitleRow(left, _("Extruder %d") % (i+1))
				configBase.SettingRow(left, 'extruder_offset_x%d' % (i), index=idx)
				configBase.SettingRow(left, 'extruder_offset_y%d' % (i), index=idx)

			configBase.TitleRow(right, _("Communication settings"))
			serial_list = ['AUTO'] + machineCom.serialList()
			serial_list_labels = serial_list[:]
			if profile.getMachineSetting('serial_port') not in serial_list:
				serial_list.append(profile.getMachineSetting('serial_port'))
				serial_list_labels.append(profile.getMachineSetting('serial_port') + _(" (Currently unavailable)"))
			configBase.SettingRow(right, 'serial_port', serial_list, serial_list_labels, index=idx)
			configBase.SettingRow(right, 'serial_baud', ['AUTO'] + map(str, machineCom.baudrateList()), index=idx)

			self.nb.AddPage(main, profile.getMachineName(idx))

		self.nb.SetSelection(int(profile.getPreferenceFloat('active_machine')))

		self.buttonPanel = wx.Panel(self.panel)
		self.panel.GetSizer().Add(self.buttonPanel)

		self.buttonPanel.SetSizer(wx.BoxSizer(wx.HORIZONTAL))
		self.okButton = wx.Button(self.buttonPanel, -1, _('Ok'))
		self.okButton.Bind(wx.EVT_BUTTON, lambda e: self.Close())
		self.buttonPanel.GetSizer().Add(self.okButton, flag=wx.ALL, border=5)

		self.addButton = wx.Button(self.buttonPanel, -1, _('Add new machine'))
		self.addButton.Bind(wx.EVT_BUTTON, self.OnAddMachine)
		self.buttonPanel.GetSizer().Add(self.addButton, flag=wx.ALL, border=5)

		self.remButton = wx.Button(self.buttonPanel, -1, _('Remove machine'))
		self.remButton.Bind(wx.EVT_BUTTON, self.OnRemoveMachine)
		self.buttonPanel.GetSizer().Add(self.remButton, flag=wx.ALL, border=5)

		self.renButton = wx.Button(self.buttonPanel, -1, _('Change machine name'))
		self.renButton.Bind(wx.EVT_BUTTON, self.OnRenameMachine)
		self.buttonPanel.GetSizer().Add(self.renButton, flag=wx.ALL, border=5)

		main.Fit()
		self.Fit()
예제 #19
0
	def __init__(self, sceneView):
		super(sliceMenu, self).__init__(None, title='Slice Menu', style=wx.DEFAULT_DIALOG_STYLE)
		
		wx.EVT_CLOSE(self, self.OnClose)
		self.panel = configBase.configPanelBase(self)
		
		self.sceneView = sceneView
        #self._scene.objects()
		left, right, self.main = self.panel.CreateConfigPanel(self)
		self.hidden = False
		self._slicer = sliceEngine.Slicer(self._updateSliceProgress)
        
		self.advancedList = []
		
		self.changeMachineButton = wx.Button(left, -1, 'Litto')
		left.GetSizer().Add(self.changeMachineButton, (left.GetSizer().GetRows(), 3))
		self.Bind(wx.EVT_BUTTON, lambda e: self.changeMachine(), self.changeMachineButton)
		
		configBase.TitleRow(left, "Print Settings")

		c = configBase.SettingRow(left, "Filament Diameter", 'filament_diameter', '1.75', 'decription of filament diameter')
		validators.validInt(c, 0)
		
		
		c = configBase.TitleRow(left, "Advanced Settings")
		self.advancedList.append(c)

		c = configBase.SettingRow(left, "Print Speed", 'print_speed', '0', 'decription of print speed')
		validators.validInt(c, 0)
		self.advancedList.append(c)
		
		c = configBase.SettingRow(left, "Print Temperature", 'print_temperature', '190', 'Degrees C')
		validators.validInt(c, 0)
		self.advancedList.append(c)
		
		c = configBase.SettingRow(left, "Enable ym", 'support', ['None', 'Exterior Only', 'Everywhere'], 'Hah! You better have BURN HEAL!')
		self.advancedList.append(c)
		
		c = configBase.SettingRow(left, "Add raft", 'enable_raft', True, 'the ~~~R~~~~~~~~~~ word')
		self.advancedList.append(c)
		#validators.validInt(c, 0, 100)
		#c = configBase.SettingRow(left, "Fan speed max (%)", 'fan_speed_max', '100', 'When the fan is turned on, it is enabled at this speed setting. If cool slows down the layer, the fan is adjusted between the min and max speed. Maximal fan speed is used if the layer is slowed down due to cooling by more then 200%.')
		#validators.validInt(c, 0, 100)


		#configBase.TitleRow(left, "Support")
		#c = configBase.SettingRow(left, "Material amount (%)", 'support_rate', '100', 'Amount of material used for support, less material gives a weaker support structure which is easier to remove.')
		#validators.validFloat(c, 0.0)
		#c = configBase.SettingRow(left, "Distance from object (mm)", 'support_distance', '0.5', 'Distance between the support structure and the object. Empty gap in which no support structure is printed.')
		#validators.validFloat(c, 0.0)

		c = configBase.TitleRow(right, "")
		self.advancedList.append(c)
		
		c = configBase.SettingRow(right, "Infill %", 'fill_density', '10', 'INFILL!')
		self.advancedList.append(c)
		
		c = configBase.SettingRow(right, "Wall Thickness", 'wall_thickness', '0.3', 'Wall Thickness in mm')
		validators.validFloat(c, 0.0)
		self.advancedList.append(c)
		
		self.okButton = wx.Button(right, -1, 'Slice')
		right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 1))
		self.Bind(wx.EVT_BUTTON, lambda e: self.RunSlice(), self.okButton)
        
		self.hideButton = wx.Button(right, -1, 'Hide')
		right.GetSizer().Add(self.hideButton, (right.GetSizer().GetRows()+1, 1))
		self.Bind(wx.EVT_BUTTON, lambda e: self.HideAdvanced(), self.hideButton)
		self.main.Fit()
		self.Fit()
예제 #20
0
	def __init__(self, parent):
		super(machineSettingsDialog, self).__init__(None, title=_("Machine settings"))
		wx.EVT_CLOSE(self, self.OnClose)

		self.parent = parent

		self.panel = configBase.configPanelBase(self)
		self.SetSizer(wx.BoxSizer(wx.HORIZONTAL))
		self.GetSizer().Add(self.panel, 1, wx.EXPAND)
		self.nb = wx.Notebook(self.panel)
		self.panel.SetSizer(wx.BoxSizer(wx.VERTICAL))
		self.panel.GetSizer().Add(self.nb, 1, wx.EXPAND)

		for idx in xrange(0, profile.getMachineCount()):
			extruderCount = int(profile.getMachineSetting('extruder_amount', idx))
			left, right, main = self.panel.CreateConfigPanel(self.nb)
			configBase.TitleRow(left, _("Machine settings"))
			#configBase.SettingRow(left, 'steps_per_e', index=idx)
			configBase.SettingRow(left, 'machine_width', index=idx)
			configBase.SettingRow(left, 'machine_depth', index=idx)
			configBase.SettingRow(left, 'machine_height', index=idx)
			configBase.SettingRow(left, 'extruder_amount', index=idx)
			# configBase.SettingRow(left, 'has_heated_bed', index=idx)
			#configBase.SettingRow(left, 'machine_center_is_zero', index=idx)
			#configBase.SettingRow(left, 'machine_shape', index=idx)
			#configBase.SettingRow(left, 'gcode_flavor', index=idx)

			# configBase.TitleRow(right, _("Printer head size"))
			# configBase.SettingRow(right, 'extruder_head_size_min_x', index=idx)
			# configBase.SettingRow(right, 'extruder_head_size_min_y', index=idx)
			# configBase.SettingRow(right, 'extruder_head_size_max_x', index=idx)
			# configBase.SettingRow(right, 'extruder_head_size_max_y', index=idx)
			# configBase.SettingRow(right, 'extruder_head_size_height', index=idx)

			for i in xrange(1, extruderCount):
				configBase.TitleRow(left, _("Extruder %d") % (i + 1))
				configBase.SettingRow(left, 'extruder_offset_x%d' % (i), index=idx)
				configBase.SettingRow(left, 'extruder_offset_y%d' % (i), index=idx)

			# configBase.TitleRow(right, _("Communication settings"))
			# configBase.SettingRow(right, 'serial_port', ['AUTO'] + machineCom.serialList(), index=idx)
			# configBase.SettingRow(right, 'serial_baud', ['AUTO'] + map(str, machineCom.baudrateList()), index=idx)

			self.nb.AddPage(main, profile.getMachineSetting('machine_name', idx).title())

		self.nb.SetSelection(int(profile.getPreferenceFloat('active_machine')))

		self.buttonPanel = wx.Panel(self.panel)
		self.panel.GetSizer().Add(self.buttonPanel)

		self.buttonPanel.SetSizer(wx.BoxSizer(wx.HORIZONTAL))
		self.okButton = wx.Button(self.buttonPanel, -1, 'Ok')
		self.okButton.Bind(wx.EVT_BUTTON, lambda e: self.Close())
		self.buttonPanel.GetSizer().Add(self.okButton, flag=wx.ALL, border=5)

		self.addButton = wx.Button(self.buttonPanel, -1, _('Add new machine'))
		self.addButton.Bind(wx.EVT_BUTTON, self.OnAddMachine)
		self.buttonPanel.GetSizer().Add(self.addButton, flag=wx.ALL, border=5)

		self.remButton = wx.Button(self.buttonPanel, -1, _('Remove machine'))
		self.remButton.Bind(wx.EVT_BUTTON, self.OnRemoveMachine)
		self.buttonPanel.GetSizer().Add(self.remButton, flag=wx.ALL, border=5)

		self.renButton = wx.Button(self.buttonPanel, -1, _('Change machine name'))
		self.renButton.Bind(wx.EVT_BUTTON, self.OnRenameMachine)
		self.buttonPanel.GetSizer().Add(self.renButton, flag=wx.ALL, border=5)

		main.Fit()
		self.Fit()
예제 #21
0
    def __init__(self, parent):
        super(preferencesDialog,
              self).__init__(None,
                             title="Project Planner Preferences",
                             style=wx.DEFAULT_DIALOG_STYLE)

        self.parent = parent
        wx.EVT_CLOSE(self, self.OnClose)

        self.panel = configBase.configPanelBase(self)
        extruderAmount = int(profile.getPreference('extruder_amount'))

        left, right, main = self.panel.CreateConfigPanel(self)
        configBase.TitleRow(left, 'User interface settings')
        c = configBase.SettingRow(
            left,
            'Always auto place objects in planner',
            'planner_always_autoplace',
            True,
            'Disable this to allow manual placement in the project planner (requires restart).',
            type='preference')
        configBase.TitleRow(left, 'Machine head size')
        c = configBase.SettingRow(
            left,
            'Head size - X towards home (mm)',
            'extruder_head_size_min_x',
            '0',
            'Size of your printer head in the X direction, on the Ultimaker your fan is in this direction.',
            type='preference')
        validators.validFloat(c, 0.1)
        c = configBase.SettingRow(
            left,
            'Head size - X towards end (mm)',
            'extruder_head_size_max_x',
            '0',
            'Size of your printer head in the X direction.',
            type='preference')
        validators.validFloat(c, 0.1)
        c = configBase.SettingRow(
            left,
            'Head size - Y towards home (mm)',
            'extruder_head_size_min_y',
            '0',
            'Size of your printer head in the Y direction.',
            type='preference')
        validators.validFloat(c, 0.1)
        c = configBase.SettingRow(
            left,
            'Head size - Y towards end (mm)',
            'extruder_head_size_max_y',
            '0',
            'Size of your printer head in the Y direction.',
            type='preference')
        validators.validFloat(c, 0.1)
        c = configBase.SettingRow(
            left,
            'Head gantry height (mm)',
            'extruder_head_size_height',
            '0',
            'The tallest object height that will always fit under your printers gantry system when the printer head is at the lowest Z position.',
            type='preference')
        validators.validFloat(c)

        self.okButton = wx.Button(left, -1, 'Ok')
        left.GetSizer().Add(self.okButton, (left.GetSizer().GetRows(), 1))
        self.okButton.Bind(wx.EVT_BUTTON, self.OnClose)

        self.MakeModal(True)
        main.Fit()
        self.Fit()
예제 #22
0
    def __init__(self):
        super(expertConfigWindow, self).__init__(None,
                                                 title='Expert config',
                                                 style=wx.DEFAULT_DIALOG_STYLE)

        wx.EVT_CLOSE(self, self.OnClose)
        self.panel = configBase.configPanelBase(self)

        left, right, main = self.panel.CreateConfigPanel(self)

        configBase.TitleRow(left, "Accuracy")
        c = configBase.SettingRow(
            left, "Extra Wall thickness for bottom/top (mm)",
            'extra_base_wall_thickness', '0.0',
            'Additional wall thickness of the bottom and top layers.')
        validators.validFloat(c, 0.0)

        configBase.TitleRow(left, "Cool")
        c = configBase.SettingRow(
            left, "Minimum feedrate (mm/s)", 'cool_min_feedrate', '5',
            'The minimal layer time can cause the print to slow down so much it starts to ooze. The minimal feedrate protects against this. Even if a print gets slown down it will never be slower then this minimal feedrate.'
        )
        validators.validFloat(c, 0.0)
        c = configBase.SettingRow(
            left, "Fan on layer number", 'fan_layer', '0',
            'The layer at which the fan is turned on. The first layer is layer 0. The first layer can stick better if you turn on the fan on, on the 2nd layer.'
        )
        validators.validInt(c, 0)
        c = configBase.SettingRow(
            left, "Fan speed min (%)", 'fan_speed', '100',
            'When the fan is turned on, it is enabled at this speed setting. If cool slows down the layer, the fan is adjusted between the min and max speed. Minimal fan speed is used if the layer is not slowed down due to cooling.'
        )
        validators.validInt(c, 0, 100)
        c = configBase.SettingRow(
            left, "Fan speed max (%)", 'fan_speed_max', '100',
            'When the fan is turned on, it is enabled at this speed setting. If cool slows down the layer, the fan is adjusted between the min and max speed. Maximal fan speed is used if the layer is slowed down due to cooling by more then 200%.'
        )
        validators.validInt(c, 0, 100)

        configBase.TitleRow(left, "Raft (if enabled)")
        c = configBase.SettingRow(
            left, "Extra margin (mm)", 'raft_margin', '3.0',
            'If the raft is enabled, this is the extra raft area around the object which is also rafted. Increasing this margin will create a stronger raft.'
        )
        validators.validFloat(c, 0.0)
        c = configBase.SettingRow(
            left, "Base material amount (%)", 'raft_base_material_amount',
            '100',
            'The base layer is the first layer put down as a raft. This layer has thick strong lines and is put firmly on the bed to prevent warping. This setting adjust the amount of material used for the base layer.'
        )
        validators.validFloat(c, 0.0)
        c = configBase.SettingRow(
            left, "Interface material amount (%)",
            'raft_interface_material_amount', '100',
            'The interface layer is a weak thin layer between the base layer and the printed object. It is designed to has little material to make it easy to break the base off the printed object. This setting adjusts the amount of material used for the interface layer.'
        )
        validators.validFloat(c, 0.0)

        configBase.TitleRow(left, "Support")
        c = configBase.SettingRow(
            left, "Material amount (%)", 'support_rate', '100',
            'Amount of material used for support, less material gives a weaker support structure which is easier to remove.'
        )
        validators.validFloat(c, 0.0)
        c = configBase.SettingRow(
            left, "Distance from object (mm)", 'support_distance', '0.5',
            'Distance between the support structure and the object. Empty gap in which no support structure is printed.'
        )
        validators.validFloat(c, 0.0)

        configBase.TitleRow(right, "Infill")
        c = configBase.SettingRow(
            right, "Infill pattern", 'infill_type',
            ['Line', 'Grid Circular', 'Grid Hexagonal', 'Grid Rectangular'],
            'Pattern of the none-solid infill. Line is default, but grids can provide a strong print.'
        )
        c = configBase.SettingRow(
            right, "Solid infill top", 'solid_top', True,
            'Create a solid top surface, if set to false the top is filled with the fill percentage. Useful for cups/vases.'
        )
        c = configBase.SettingRow(
            right, "Infill overlap (%)", 'fill_overlap', '15',
            'Amount of overlap between the infill and the walls. There is a slight overlap with the walls and the infill so the walls connect firmly to the infill.'
        )
        validators.validFloat(c, 0.0)

        configBase.TitleRow(right, "Bridge")
        c = configBase.SettingRow(
            right, "Bridge speed (%)", 'bridge_speed', '100',
            'Speed at which layers with bridges are printed, compared to normal printing speed.'
        )
        validators.validFloat(c, 0.0)

        configBase.TitleRow(right, "Sequence")
        c = configBase.SettingRow(
            right, "Print order sequence", 'sequence', [
                'Loops > Perimeter > Infill', 'Loops > Infill > Perimeter',
                'Infill > Loops > Perimeter', 'Infill > Perimeter > Loops',
                'Perimeter > Infill > Loops', 'Perimeter > Loops > Infill'
            ],
            'Sequence of printing. The perimeter is the outer print edge, the loops are the insides of the walls, and the infill is the insides.'
        )
        c = configBase.SettingRow(
            right, "Force first layer sequence", 'force_first_layer_sequence',
            True,
            'This setting forces the order of the first layer to be \'Perimeter > Loops > Infill\''
        )

        configBase.TitleRow(right, "Joris")
        c = configBase.SettingRow(
            right, "Joris the outer edge", 'joris', False,
            '[Joris] is a code name for smoothing out the Z move of the outer edge. This will create a steady Z increase over the whole print. It is intended to be used with a single walled wall thickness to make cups/vases.'
        )

        configBase.TitleRow(right, "Retraction")
        c = configBase.SettingRow(
            right, "Retract on jumps only", 'retract_on_jumps_only', True,
            'Only retract when we are making a move that is over a hole in the model, else retract on every move. This effects print quality in different ways.'
        )

        configBase.TitleRow(right, "Hop")
        c = configBase.SettingRow(
            right, "Enable hop on move", 'hop_on_move', False,
            'When moving from print position to print position, raise the printer head 0.2mm so it does not knock off the print (experimental).'
        )

        main.Fit()
        self.Fit()
	def __init__(self, parent):
		super(expertConfigWindow, self).__init__(None, title='Debug Settings', style=wx.DEFAULT_DIALOG_STYLE)
		wx.EVT_CLOSE(self, self.OnClose)
		self.panel = configBase.configPanelBase(self)
		self.parent = parent
		left, right, main = self.panel.CreateConfigPanel(self)

		if platform.system() == 'Windows':
			ico = wx.Icon(getPathForImage(_('../suite.ico')), wx.BITMAP_TYPE_ICO)
			self.SetIcon(ico)
		
		self.configList = []
		
		configBase.TitleRow(left, "Speed")
		# c = configBase.SettingRow(left, "Minimum layer time (seconds) ", 'cool_min_layer_time', '6', 'If a layer would finish too quickly, the print will slow down so it takes this amount of time to finish the layer.')
		# self.configList.append(c)
		# validators.validFloat(c, 0.0)
		c = configBase.SettingRow(left, "Travel Speed (mm/s) ", 'travel_speed', '200', 'How fast the extruder moves while not printing.')
		self.configList.append(c)
		validators.validFloat(c, 50, 250)
		
		# c = configBase.SettingRow(left, "Bridge Feed (%)", 'bridge_feed_ratio', '100', 'Speed at which layers with bridges travel, compared to normal printing speed.')
		# self.configList.append(c)
		# validators.validFloat(c, 0.0)
		# c = configBase.SettingRow(left, "Bridge Flow (%)", 'bridge_flow_ratio', '105', 'Speed at which layers with bridges are printed, compared to normal printing speed.')
		# self.configList.append(c)
		# validators.validFloat(c, 0.0)
		
		c = configBase.SettingRow(left, "Perimeter Speed (%)", 'perimeter_speed_ratio', '50', 'Speed at which the perimeter will be printed, compared to the infill.')
		self.configList.append(c)
		validators.validFloat(c, 10.0, 150.0)

		# configBase.TitleRow(left, "Cool")
		# c = configBase.SettingRow(left, "Minimum feedrate (mm/s)", 'cool_min_feedrate', '5', 'The minimal layer time can cause the print to slow down so much it starts to ooze. The minimal feedrate protects against this. Even if a print gets slown down it will never be slower then this minimal feedrate.')
		# self.configList.append(c)
		# validators.validFloat(c, 0.0)
		# c = configBase.SettingRow(left, "Fan on layer number (#)", 'fan_layer', '1', 'The layer at which the fan is turned on. The first layer is layer 0. The first layer can stick better if you turn the fan on the 2nd layer.')
		# self.configList.append(c)
		# validators.validInt(c, 0)
		# c = configBase.SettingRow(left, "Fan speed min (%)", 'fan_speed', '100', 'When the fan is turned on, it is enabled at this speed setting. If cool slows down the layer, the fan is adjusted between the min and max speed. Minimal fan speed is used if the layer is not slowed down due to cooling.')
		# self.configList.append(c)
		# validators.validInt(c, 0, 100)
		# c = configBase.SettingRow(left, "Fan speed max (%)", 'fan_speed_max', '100', 'When the fan is turned on, it is enabled at this speed setting. If cool slows down the layer, the fan is adjusted between the min and max speed. Maximal fan speed is used if the layer is slowed down due to cooling by more then 200%.')
		# self.configList.append(c)
		# validators.validInt(c, 0, 100)

		configBase.TitleRow(left, "Skirt")
		c = configBase.SettingRow(left, "Skirt line count (#)", 'skirt_line_count', '2', 'The number of loops the print will draw outside the object on the first layer. This is to ensure the filament is flowing well before starting the print.')
		self.configList.append(c)
		validators.validInt(c, 0, 10)
		c = configBase.SettingRow(left, "Skirt gap width (mm)", 'skirt_gap', '2.0', 'How far the skirt will be placed from the actual object.')
		self.configList.append(c)
		validators.validInt(c, 0, 10)

		c = configBase.SettingRow(left, "Brim", 'brim_enable', ['Off', 'Enabled'], 'Generates the skirt touching the object. This helps keep the print from lifting. If this is enabled, skirt settings will not be used.')
		c.defaultValue = 'Off'
		self.configList.append(c)
		c = configBase.SettingRow(left, "Brim Line Count", 'brim_line_count', '5', 'The number of loops that will be generated if Brim is enabled.')
		self.configList.append(c)
		validators.validInt(c, 0, 20)

		# configBase.TitleRow(left, "Size")
		# c = configBase.SettingRow(left, "Custom Machine Depth (mm)", 'custom_machine_depth', '200', 'Custom Machine Depth')
		# self.configList.append(c)
		# validators.validFloat(c, 0)
		# c = configBase.SettingRow(left, "Custom Machine Width (mm)", 'custom_machine_width', '200', 'Custom Machine Width')
		# self.configList.append(c)
		# validators.validFloat(c, 0)
		# c = configBase.SettingRow(left, "Custom Machine Height (mm)", 'custom_machine_height', '200', 'Custom Machine Height')
		# self.configList.append(c)
		# validators.validFloat(c, 0)

		# configBase.TitleRow(left, "Material")
		# c = configBase.SettingRow(left, "Filament Density (ratio)", 'filament_density', '1', 'Density of the material. 1.0 for PLA. 0.9 for x')
		# self.configList.append(c)
		# validators.validFloat(c, 0)
		# c = configBase.SettingRow(left, "Infill Width (mm)", 'infill_width', '0.4', 'The width of the infill.')
		# self.configList.append(c)
		# validators.validFloat(c, 0)
		# c = configBase.SettingRow(left, "Perimeter flow ", 'perimeter_flow_ratio', '75', 'The flow rate of the perimeter')
		# self.configList.append(c)
		# validators.validFloat(c, 0)

		configBase.TitleRow(left, "Infill")
		c = configBase.SettingRow(left, "Infill (%)", 'fill_density', '18', 'How dense the inside of your print will be.')
		self.configList.append(c)
		validators.validFloat(c, 0, 100)
		# c = configBase.SettingRow(left, "Infill overlap (%)", 'fill_overlap', '0', 'Amount of overlap between the infill and the walls. There is a slight overlap with the walls and the infill so the walls connect firmly to the infill.')
		# self.configList.append(c)
		# validators.validFloat(c, 0.0)

		#c = configBase.SettingRow(left, "Enable Brim", 'fan_speed', '100', 'When the fan is turned on, it is enabled at this speed setting. If cool slows down the layer, the fan is adjusted between the min and max speed. Minimal fan speed is used if the layer is not slowed down due to cooling.')
		#validators.validInt(c, 0, 100)
		
		#configBase.TitleRow(left, "Raft (if enabled)")
		#c = configBase.SettingRow(left, "Extra margin (mm)", 'raft_margin', '3.0', 'If the raft is enabled, this is the extra raft area around the object which is also rafted. Increasing this margin will create a stronger raft.')
		#validators.validFloat(c, 0.0)
		#c = configBase.SettingRow(left, "Base material amount (%)", 'raft_base_material_amount', '100', 'The base layer is the first layer put down as a raft. This layer has thick strong lines and is put firmly on the bed to prevent warping. This setting adjust the amount of material used for the base layer.')
		#validators.validFloat(c, 0.0)
		#c = configBase.SettingRow(left, "Interface material amount (%)", 'raft_interface_material_amount', '100', 'The interface layer is a weak thin layer between the base layer and the printed object. It is designed to has little material to make it easy to break the base off the printed object. This setting adjusts the amount of material used for the interface layer.')
		#validators.validFloat(c, 0.0)

		#configBase.TitleRow(left, "Support")
		#c = configBase.SettingRow(left, "Material amount (%)", 'support_rate', '100', 'Amount of material used for support, less material gives a weaker support structure which is easier to remove.')
		#validators.validFloat(c, 0.0)
		#c = configBase.SettingRow(left, "Distance from object (mm)", 'support_distance', '0.5', 'Distance between the support structure and the object. Empty gap in which no support structure is printed.')
		#validators.validFloat(c, 0.0)

		
		configBase.TitleRow(left, "Top/Bottom")
		# c = configBase.SettingRow(right, "Infill pattern", 'infill_type', ['Line', 'Grid Circular', 'Grid Hexagonal', 'Grid Rectangular'], 'Pattern of the none-solid infill. Line is default, but grids can provide a strong print.')
		# self.configList.append(c)
		c = configBase.SettingRow(left, "Bottom surface layers (#) ", 'bottom_surface_thickness_layers', '2', 'Number of solid layers from the bottom of the print.')
		self.configList.append(c)
		validators.validFloat(c, 0, 6)
		c = configBase.SettingRow(left, "Top surface layers (#) ", 'top_surface_thickness_layers', '3', 'Number of solid layers from the top of the print.')
		self.configList.append(c)
		validators.validFloat(c, 0, 6)

		
		# c = configBase.SettingRow(right, "Infill in direction of bridge", 'bridge_direction', True, 'If this is on, infill will fill in the direction of bridging. This improves bridging but may increase print time.')
		# self.configList.append(c)

	
		configBase.TitleRow(right, "Retraction")
		c = configBase.SettingRow(right, "Retraction speed (mm/s) ", 'retraction_speed', '80.0', 'How quickly the extruder does a retract command.')
		self.configList.append(c)
		validators.validFloat(c, 0, 200)
		c = configBase.SettingRow(right, "Retraction amount (mm) ", 'retraction_amount', '0.8', 'How much distance the extruder will retract.')
		self.configList.append(c)
		validators.validFloat(c, 0, 5)
		# c = configBase.SettingRow(right, "Retraction extra amount (mm) ", 'retraction_extra', '0.0', 'How much extra the extruder will retract with each retract command.')
		# self.configList.append(c)
		# validators.validFloat(c, 0)
		
		# configBase.TitleRow(right, "First Layer")
		# c = configBase.SettingRow(right, "First layer temperature (#) ", 'first_layer_print_temperature', '220', 'How hot the extruder will print at during the first layer.')
		# self.configList.append(c)
		# validators.validFloat(c, 0)
		#c = configBase.SettingRow(right, "First layer height (mm) ", 'bottom_thickness', '0.2', 'Create a solid top surface, if set to false the top is filled with the fill percentage. Useful for cups/vases.')
		#validators.validFloat(c, 0)
		# c = configBase.SettingRow(right, "First layer speed (mm/s) ", 'bottom_layer_speed', '30', 'How fast the print will print at during the first layer.')
		# self.configList.append(c)
		# validators.validFloat(c, 0)
	
		# configBase.TitleRow(right, "Clip")
		# c = configBase.SettingRow(right, "Organic Clip", 'organic_clip', False, 'Attempts to hide the start and end points of each layer. Works well with organic shapes.')
		# self.configList.append(c)
		#c = configBase.SettingRow(right, "Clip (mm)", 'clip', '0.0', 'How close the beginning and the end of a perimeter meet. A higher number increase the distance.')
		#self.configList.append(c)
		#validators.validFloat(c, 0.0)

		configBase.TitleRow(right, "Support")
		c = configBase.SettingRow(right, "Support Type", 'support', ['None', 'Exterior Only', 'Everywhere'], 'Where the supports will be generated.')
		c.defaultValue = 'None'
		self.configList.append(c)
		c = configBase.SettingRow(right, "Support Type", 'support_type', ['Lines', 'Grid'], 'What pattern the supports will be generated as. Lines will create single walled supports that are easy to remove. Grid will create a strong cross-hatch pattern but may be difficult to remove.')
		c.defaultValue = 'Lines'
		self.configList.append(c)
		c = configBase.SettingRow(right, "Support Infill (%)", 'support_fill_rate', '20', 'How dense the generated support will be. The higher the number, the more support will be generated.')
		self.configList.append(c)
		validators.validFloat(c, 0, 100)
		c = configBase.SettingRow(right, "Support X/Y Distance (mm)", 'support_xy_distance', '0.6', 'The distance the support will be generated from the X/Y plane.')
		self.configList.append(c)
		validators.validFloat(c, 0.3, 1)
		#validators.validFloat(c, 0)
		# c = configBase.SettingRow(right, "Support Density", 'support_density', '0.3', 'How dense the support will be.')
		# self.configList.append(c)
		# validators.validFloat(c, 0)
		c = configBase.SettingRow(right, "Support Angle (degrees)", 'support_angle', '65', 'The minimum angle required for support to be generated')
		self.configList.append(c)
		validators.validFloat(c, 45, 90)
		c = configBase.SettingRow(right, "Extra Support (mm)", 'extra_support_amount', '0', 'Widens generated support to accomodate for thinner parts that need support.')
		self.configList.append(c)
		validators.validFloat(c, 0, 5)
		c = configBase.SettingRow(right, "Support Extrusion Width (mm)", 'support_extrusion_width', '0.3', 'Extrusion width for support material')
		self.configList.append(c)
		validators.validFloat(c, 0, 1)
		
		#configBase.TitleRow(right, "Sequence")
		#c = configBase.SettingRow(right, "Print order sequence", 'sequence', ['Loops > Perimeter > Infill', 'Loops > Infill > Perimeter', 'Infill > Loops > Perimeter', 'Infill > Perimeter > Loops', 'Perimeter > Infill > Loops', 'Perimeter > Loops > Infill'], 'Sequence of printing. The perimeter is the outer print edge, the loops are the insides of the walls, and the infill is the insides.');
		#c = configBase.SettingRow(right, "Force first layer sequence", 'force_first_layer_sequence', True, 'This setting forces the order of the first layer to be \'Perimeter > Loops > Infill\'')

		#configBase.TitleRow(right, "Joris")
		#c = configBase.SettingRow(right, "Joris the outer edge", 'joris', False, '[Joris] is a code name for smoothing out the Z move of the outer edge. This will create a steady Z increase over the whole print. It is intended to be used with a single walled wall thickness to make cups/vases.')

		#configBase.TitleRow(right, "Retraction")
		#c = configBase.SettingRow(right, "Retract on jumps only", 'retract_on_jumps_only', True, 'Only retract when we are making a move that is over a hole in the model, else retract on every move. This effects print quality in different ways.')

		#configBase.TitleRow(right, "Hop")
		#c = configBase.SettingRow(right, "Enable hop on move", 'hop_on_move', False, 'When moving from print position to print position, raise the printer head 0.2mm so it does not knock off the print (experimental).')
		
		#def __init__(self, panel, name):
		"Add a title row to the configuration panel"
		sizer = right.GetSizer()
		x = sizer.GetRows()
		#self.title = wx.StaticText(right, -1, "ahh")
		#self.title.SetFont(wx.Font(wx.SystemSettings.GetFont(wx.SYS_ANSI_VAR_FONT).GetPointSize(), wx.FONTFAMILY_DEFAULT, wx.NORMAL, wx.FONTWEIGHT_BOLD))
		#sizer.Add(self.title, (x,0), (1,3), flag=wx.EXPAND|wx.TOP|wx.LEFT, border=10)
		self.ln = wx.StaticLine(right, -1)

		self.okButton = wx.Button(right, -1, 'Save')
		self.okButton2 = wx.Button(right, -1, 'Close')
		self.okButton3 = wx.Button(right, -1, 'Reset Debug Settings')
		
		mySizer = wx.GridBagSizer(3, 2)
		mySizer.Add(self.okButton, (2,0), (1,1), flag=wx.EXPAND|wx.TOP|wx.RIGHT,border=5)
		mySizer.Add(self.okButton2, (2,1), (1,1), flag=wx.EXPAND|wx.TOP|wx.RIGHT,border=5)
		mySizer.Add(self.okButton3, (2,2), (1,1), flag=wx.EXPAND|wx.TOP|wx.RIGHT,border=5)
		sizer.Add(mySizer, (x,0), (1,3), flag=wx.EXPAND|wx.LEFT,border=10)
		
		sizer.SetRows(x )
		
		#self.ln = wx.StaticLine(panel, -1)

		#sizer.SetRows(x + 2)
		
		self.Bind(wx.EVT_BUTTON, lambda e: self.saveAll(), self.okButton) #TODO: have a "settings saved!" message/promt
		self.Bind(wx.EVT_BUTTON, lambda e: self.Close(), self.okButton2) #TODO: make a window promt asking to save changes if there are any
		self.Bind(wx.EVT_BUTTON, lambda e: self.resetSettings(), self.okButton3) #TODO: make a window promt asking to save changes if there are any

		#buttonPanel.SetSizer(sizer)

		#sizer.Add(leftConfigPanel, border=35, flag=wx.RIGHT)
		
		#self.okButton = wx.Button(self, -1, 'Ok')
		#sizer.Add(self.okButton, (0, 0))
		#sizer.Add(right, (1, 0))

		#self.okButton2 = wx.Button(left, -1, 'Ok')
		#left.GetSizer().Add(self.okButton2, (left.GetSizer().GetRows(), 1))
		#self.okButton3 = wx.Button(left, -1, 'Ok')
		#left.GetSizer().Add(self.okButton3, (left.GetSizer().GetRows(), 2))
		
		#self.Bind(wx.EVT_BUTTON, lambda e: self.Close(), self.okButton)
		
		main.Fit()
		self.Fit()
예제 #24
0
	def __init__(self, parent):
		super(preferencesDialog, self).__init__(None, title=language.getText("Preferences"))
		
		wx.EVT_CLOSE(self, self.OnClose)
		
		self.parent = parent
		self.oldExtruderAmount = int(profile.getPreference('extruder_amount'))

		self.panel = configBase.configPanelBase(self)
		
		left, right, main = self.panel.CreateConfigPanel(self)
		configBase.TitleRow(left, language.getText('Machine settings'))
		configBase.SettingRow(left, 'steps_per_e')
		configBase.SettingRow(left, 'machine_width')
		configBase.SettingRow(left, 'machine_depth')
		configBase.SettingRow(left, 'machine_height')
		configBase.SettingRow(left, 'extruder_amount')
		configBase.SettingRow(left, 'has_heated_bed')

		configBase.TitleRow(left, language.getText('Printer head size'))
		configBase.SettingRow(left, 'extruder_head_size_min_x')
		configBase.SettingRow(left, 'extruder_head_size_min_y')
		configBase.SettingRow(left, 'extruder_head_size_max_x')
		configBase.SettingRow(left, 'extruder_head_size_max_y')
		configBase.SettingRow(left, 'extruder_head_size_height')

		for i in xrange(1, self.oldExtruderAmount):
			configBase.TitleRow(left, 'Extruder %d' % (i+1))
			configBase.SettingRow(left, 'extruder_offset_x%d' % (i))
			configBase.SettingRow(left, 'extruder_offset_y%d' % (i))

		configBase.TitleRow(right, language.getText('Colours'))
		configBase.SettingRow(right, 'model_colour', wx.Colour)
		for i in xrange(1, self.oldExtruderAmount):
			configBase.SettingRow(right, 'model_colour%d' % (i+1), wx.Colour)

		configBase.TitleRow(right, language.getText('Filament settings'))
		configBase.SettingRow(right, 'filament_physical_density')
		configBase.SettingRow(right, 'filament_cost_kg')
		configBase.SettingRow(right, 'filament_cost_meter')

		configBase.TitleRow(right, language.getText('Communication settings'))
		configBase.SettingRow(right, 'serial_port', ['AUTO'] + machineCom.serialList())
		configBase.SettingRow(right, 'serial_baud', ['AUTO'] + map(str, machineCom.baudrateList()))

		#configBase.TitleRow(right, 'Slicer settings')
		#configBase.SettingRow(right, 'save_profile')

		#configBase.TitleRow(right, 'SD Card settings')

		configBase.TitleRow(right, language.getText('Cura settings'))
		configBase.SettingRow(right, 'auto_detect_sd')
		configBase.SettingRow(right, 'check_for_updates')
		configBase.SettingRow(right, 'submit_slice_information')

		self.okButton = wx.Button(right, -1, language.getText('Ok'))
		right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 0), flag=wx.BOTTOM, border=5)
		self.okButton.Bind(wx.EVT_BUTTON, lambda e: self.Close())
		
		main.Fit()
		self.Fit()
예제 #25
0
    def __init__(self, parent):
        super(machineSettingsDialog,
              self).__init__(parent, title=_("Machine settings"))

        wx.EVT_CLOSE(self, self.OnClose)

        self.parent = parent

        self.panel = configBase.configPanelBase(self)
        self.SetSizer(wx.BoxSizer(wx.HORIZONTAL))
        self.GetSizer().Add(self.panel, 1, wx.EXPAND)
        self.nb = wx.Notebook(self.panel)
        self.panel.SetSizer(wx.BoxSizer(wx.VERTICAL))
        self.panel.GetSizer().Add(self.nb, 1, wx.EXPAND)

        for idx in xrange(0, profile.getMachineCount()):
            printer_type = profile.getMachineSetting('machine_type', idx)
            extruderCount = int(
                profile.getMachineSetting('extruder_amount', idx))
            left, right, main = self.panel.CreateConfigPanel(self.nb)
            configBase.TitleRow(left, _("Machine settings"))
            configBase.SettingRow(left, 'steps_per_e', index=idx)
            configBase.SettingRow(left, 'machine_width', index=idx)
            configBase.SettingRow(left, 'machine_depth', index=idx)
            configBase.SettingRow(left, 'machine_height', index=idx)
            if not printer_type.startswith(
                    'lulzbot_TAZ_6'
            ):  #Disabled for TAZ 6, use LCD controller instead
                configBase.SettingRow(left, 'extruder_z_offset', index=idx)
            configBase.SettingRow(left, 'extruder_amount', index=idx)
            configBase.SettingRow(left, 'has_heated_bed', index=idx)
            configBase.SettingRow(left, 'machine_center_is_zero', index=idx)
            configBase.SettingRow(left, 'machine_shape', index=idx)
            configBase.SettingRow(left, 'gcode_flavor', index=idx)
            configBase.SettingRow(left,
                                  'machine_startup_energy_PLA',
                                  index=idx)
            configBase.SettingRow(left, 'machine_run_energy_PLA', index=idx)
            configBase.SettingRow(left,
                                  'machine_startup_energy_ABS',
                                  index=idx)
            configBase.SettingRow(left, 'machine_run_energy_ABS', index=idx)
            configBase.SettingRow(left,
                                  'machine_startup_energy_HIPS',
                                  index=idx)
            configBase.SettingRow(left, 'machine_run_energy_HIPS', index=idx)
            configBase.SettingRow(left,
                                  'machine_startup_energy_PETT',
                                  index=idx)
            configBase.SettingRow(left, 'machine_run_energy_PETT', index=idx)
            configBase.SettingRow(left,
                                  'machine_startup_energy_Nylon',
                                  index=idx)
            configBase.SettingRow(left, 'machine_run_energy_Nylon', index=idx)
            configBase.SettingRow(left,
                                  'machine_startup_energy_Other',
                                  index=idx)
            configBase.SettingRow(left, 'machine_run_energy_Other', index=idx)

            if printer_type.startswith('lulzbot_'):
                configBase.TitleRow(right, _("Tool Head"))
                row = configBase.ToolHeadRow(right, 'toolhead', index=idx)
                row.button.Bind(wx.EVT_BUTTON, self.OnChangeToolheadButton)

            configBase.TitleRow(right, _("Printer head size"))
            configBase.SettingRow(right, 'extruder_head_size_min_x', index=idx)
            configBase.SettingRow(right, 'extruder_head_size_min_y', index=idx)
            configBase.SettingRow(right, 'extruder_head_size_max_x', index=idx)
            configBase.SettingRow(right, 'extruder_head_size_max_y', index=idx)
            configBase.SettingRow(right,
                                  'extruder_head_size_height',
                                  index=idx)

            for i in xrange(1, extruderCount):
                configBase.TitleRow(left, _("Extruder %d") % (i + 1))
                configBase.SettingRow(left,
                                      'extruder_offset_x%d' % (i),
                                      index=idx)
                configBase.SettingRow(left,
                                      'extruder_offset_y%d' % (i),
                                      index=idx)

            configBase.TitleRow(right, _("Communication settings"))
            serial_list = ['AUTO'] + machineCom.serialList()
            serial_list_labels = serial_list[:]
            if profile.getMachineSetting('serial_port') not in serial_list:
                serial_list.append(profile.getMachineSetting('serial_port'))
                serial_list_labels.append(
                    profile.getMachineSetting('serial_port') +
                    _(" (Currently unavailable)"))
            configBase.SettingRow(right,
                                  'serial_port',
                                  serial_list,
                                  serial_list_labels,
                                  index=idx)
            configBase.SettingRow(right,
                                  'serial_baud', ['AUTO'] +
                                  map(str, machineCom.baudrateList()),
                                  index=idx)

            machine_name = profile.getMachineName(idx)
            machine_title = machine_name.title()
            machine_title = machine_title.replace('Taz', 'TAZ')
            machine_title = machine_title.replace('Lulzbot', 'LulzBot')
            self.nb.AddPage(main, machine_title)

        self.nb.SetSelection(int(profile.getPreferenceFloat('active_machine')))

        self.buttonPanel = wx.Panel(self.panel)
        self.panel.GetSizer().Add(self.buttonPanel)

        self.buttonPanel.SetSizer(wx.BoxSizer(wx.HORIZONTAL))
        self.okButton = wx.Button(self.buttonPanel, -1, _('Ok'))
        self.okButton.Bind(wx.EVT_BUTTON, lambda e: self.Close())
        self.buttonPanel.GetSizer().Add(self.okButton, flag=wx.ALL, border=5)

        self.addButton = wx.Button(self.buttonPanel, -1, _('Add new machine'))
        self.addButton.Bind(wx.EVT_BUTTON, self.OnAddMachine)
        self.buttonPanel.GetSizer().Add(self.addButton, flag=wx.ALL, border=5)

        self.remButton = wx.Button(self.buttonPanel, -1, _('Remove machine'))
        self.remButton.Bind(wx.EVT_BUTTON, self.OnRemoveMachine)
        self.buttonPanel.GetSizer().Add(self.remButton, flag=wx.ALL, border=5)

        self.renButton = wx.Button(self.buttonPanel, -1,
                                   _('Change machine name'))
        self.renButton.Bind(wx.EVT_BUTTON, self.OnRenameMachine)
        self.buttonPanel.GetSizer().Add(self.renButton, flag=wx.ALL, border=5)

        main.Fit()
        self.Fit()
예제 #26
0
    def __init__(self, parent):
        super(preferencesDialog, self).__init__(None,
                                                title="Preferences",
                                                style=wx.DEFAULT_DIALOG_STYLE)

        wx.EVT_CLOSE(self, self.OnClose)

        self.parent = parent
        self.oldExtruderAmount = int(profile.getPreference('extruder_amount'))

        self.panel = configBase.configPanelBase(self)

        left, right, main = self.panel.CreateConfigPanel(self)
        configBase.TitleRow(left, 'Machine settings')
        c = configBase.SettingRow(left,
                                  'Steps per E',
                                  'steps_per_e',
                                  '0',
                                  'Amount of steps per mm filament extrusion',
                                  type='preference')
        validators.validFloat(c, 0.1)
        c = configBase.SettingRow(left,
                                  'Maximum width (mm)',
                                  'machine_width',
                                  '205',
                                  'Size of the machine in mm',
                                  type='preference')
        validators.validFloat(c, 10.0)
        c = configBase.SettingRow(left,
                                  'Maximum depth (mm)',
                                  'machine_depth',
                                  '205',
                                  'Size of the machine in mm',
                                  type='preference')
        validators.validFloat(c, 10.0)
        c = configBase.SettingRow(left,
                                  'Maximum height (mm)',
                                  'machine_height',
                                  '200',
                                  'Size of the machine in mm',
                                  type='preference')
        validators.validFloat(c, 10.0)
        c = configBase.SettingRow(left,
                                  'Extruder count',
                                  'extruder_amount', ['1', '2', '3', '4'],
                                  'Amount of extruders in your machine.',
                                  type='preference')
        c = configBase.SettingRow(
            left,
            'Heated bed',
            'has_heated_bed',
            False,
            'If you have an heated bed, this enabled heated bed settings',
            type='preference')

        for i in xrange(1, self.oldExtruderAmount):
            configBase.TitleRow(left, 'Extruder %d' % (i + 1))
            c = configBase.SettingRow(
                left,
                'Offset X',
                'extruder_offset_x%d' % (i),
                '0.0',
                'The offset of your secondary extruder compared to the primary.',
                type='preference')
            validators.validFloat(c)
            c = configBase.SettingRow(
                left,
                'Offset Y',
                'extruder_offset_y%d' % (i),
                '0.0',
                'The offset of your secondary extruder compared to the primary.',
                type='preference')
            validators.validFloat(c)

        configBase.TitleRow(left, 'Colours')
        c = configBase.SettingRow(left,
                                  'Model colour',
                                  'model_colour',
                                  wx.Colour(0, 0, 0),
                                  '',
                                  type='preference')
        for i in xrange(1, self.oldExtruderAmount):
            c = configBase.SettingRow(left,
                                      'Model colour (%d)' % (i + 1),
                                      'model_colour%d' % (i + 1),
                                      wx.Colour(0, 0, 0),
                                      '',
                                      type='preference')

        configBase.TitleRow(right, 'Filament settings')
        c = configBase.SettingRow(
            right,
            'Density (kg/m3)',
            'filament_density',
            '1300',
            'Weight of the filament per m3. Around 1300 for PLA. And around 1040 for ABS. This value is used to estimate the weight if the filament used for the print.',
            type='preference')
        validators.validFloat(c, 500.0, 3000.0)
        c = configBase.SettingRow(
            right,
            'Cost (price/kg)',
            'filament_cost_kg',
            '0',
            'Cost of your filament per kg, to estimate the cost of the final print.',
            type='preference')
        validators.validFloat(c, 0.0)
        c = configBase.SettingRow(
            right,
            'Cost (price/m)',
            'filament_cost_meter',
            '0',
            'Cost of your filament per meter, to estimate the cost of the final print.',
            type='preference')
        validators.validFloat(c, 0.0)

        configBase.TitleRow(right, 'Communication settings')
        c = configBase.SettingRow(
            right,
            'Serial port',
            'serial_port', ['AUTO'] + machineCom.serialList(),
            'Serial port to use for communication with the printer',
            type='preference')
        c = configBase.SettingRow(
            right,
            'Baudrate',
            'serial_baud', ['AUTO'] + map(str, machineCom.baudrateList()),
            'Speed of the serial port communication\nNeeds to match your firmware settings\nCommon values are 250000, 115200, 57600',
            type='preference')

        configBase.TitleRow(right, 'Slicer settings')
        #c = configBase.SettingRow(right, 'Slicer selection', 'slicer', ['Cura (Skeinforge based)', 'Slic3r'], 'Which slicer to use to slice objects. Usually the Cura engine produces the best results. But Slic3r is developing fast and is faster with slicing.', type = 'preference')
        c = configBase.SettingRow(
            right,
            'Save profile on slice',
            'save_profile',
            False,
            'When slicing save the profile as [stl_file]_profile.ini next to the model.',
            type='preference')

        configBase.TitleRow(right, 'SD Card settings')
        if len(profile.getSDcardDrives()) > 1:
            c = configBase.SettingRow(
                right,
                'SD card drive',
                'sdpath',
                profile.getSDcardDrives(),
                'Location of your SD card, when using the copy to SD feature.',
                type='preference')
        else:
            c = configBase.SettingRow(
                right,
                'SD card path',
                'sdpath',
                '',
                'Location of your SD card, when using the copy to SD feature.',
                type='preference')
        c = configBase.SettingRow(
            right,
            'Copy to SD with 8.3 names',
            'sdshortnames',
            False,
            'Save the gcode files in short filenames, so they are properly shown on the UltiController',
            type='preference')

        configBase.TitleRow(right, 'Cura settings')
        c = configBase.SettingRow(
            right,
            'Check for updates',
            'check_for_updates',
            True,
            'Check for newer versions of Cura on startup',
            type='preference')

        c = configBase.SettingRow(right,
                                  'Prompt for filename',
                                  'filename_prompt',
                                  False,
                                  'Prompt for a filename when saving files',
                                  type='preference')
        c = configBase.SettingRow(
            right,
            'Prompt on overwrite file',
            'file_overwrite_prompt',
            False,
            'Prompt for overwrite when output file already exits',
            type='preference')

        self.okButton = wx.Button(right, -1, 'Ok')
        right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 0),
                             flag=wx.BOTTOM,
                             border=5)
        self.okButton.Bind(wx.EVT_BUTTON, self.OnClose)

        self.MakeModal(True)
        main.Fit()
        self.Fit()
예제 #27
0
    def __init__(self, parent):
        super(preferencesDialog, self).__init__(
            None, title="Project Planner Preferences", style=wx.DEFAULT_DIALOG_STYLE
        )

        self.parent = parent
        wx.EVT_CLOSE(self, self.OnClose)

        self.panel = configBase.configPanelBase(self)
        extruderAmount = int(profile.getPreference("extruder_amount"))

        left, right, main = self.panel.CreateConfigPanel(self)
        configBase.TitleRow(left, "User interface settings")
        c = configBase.SettingRow(
            left,
            "Always auto place objects in planner",
            "planner_always_autoplace",
            True,
            "Disable this to allow manual placement in the project planner (requires restart).",
            type="preference",
        )
        configBase.TitleRow(left, "Machine head size")
        c = configBase.SettingRow(
            left,
            "Head size - X towards home (mm)",
            "extruder_head_size_min_x",
            "0",
            "Size of your printer head in the X direction, on the Ultimaker your fan is in this direction.",
            type="preference",
        )
        validators.validFloat(c, 0.1)
        c = configBase.SettingRow(
            left,
            "Head size - X towards end (mm)",
            "extruder_head_size_max_x",
            "0",
            "Size of your printer head in the X direction.",
            type="preference",
        )
        validators.validFloat(c, 0.1)
        c = configBase.SettingRow(
            left,
            "Head size - Y towards home (mm)",
            "extruder_head_size_min_y",
            "0",
            "Size of your printer head in the Y direction.",
            type="preference",
        )
        validators.validFloat(c, 0.1)
        c = configBase.SettingRow(
            left,
            "Head size - Y towards end (mm)",
            "extruder_head_size_max_y",
            "0",
            "Size of your printer head in the Y direction.",
            type="preference",
        )
        validators.validFloat(c, 0.1)
        c = configBase.SettingRow(
            left,
            "Head gantry height (mm)",
            "extruder_head_size_height",
            "0",
            "The tallest object height that will always fit under your printers gantry system when the printer head is at the lowest Z position.",
            type="preference",
        )
        validators.validFloat(c)

        self.okButton = wx.Button(left, -1, "Ok")
        left.GetSizer().Add(self.okButton, (left.GetSizer().GetRows(), 1))
        self.okButton.Bind(wx.EVT_BUTTON, self.OnClose)

        self.MakeModal(True)
        main.Fit()
        self.Fit()