chiark / gitweb /
Always use machine size / 2 as machine center and remove the setting. Also fixed...
[cura.git] / Cura / gui / mainWindow.py
1 from __future__ import absolute_import
2 import __init__
3
4 import wx, os, platform, types, webbrowser, shutil, glob
5
6 from gui import configBase
7 from gui import expertConfig
8 from gui import preview3d
9 from gui import sliceProgessPanel
10 from gui import alterationPanel
11 from gui import pluginPanel
12 from gui import preferencesDialog
13 from gui import configWizard
14 from gui import firmwareInstall
15 from gui import printWindow
16 from gui import simpleMode
17 from gui import projectPlanner
18 from gui import batchRun
19 from gui import flatSlicerWindow
20 from gui import icon
21 from gui import dropTarget
22 from util import validators
23 from util import profile
24 from util import version
25 from util import sliceRun
26 from util import meshLoader
27
28 def main(splash):
29         #app = wx.App(False)
30         if profile.getPreference('machine_type') == 'unknown':
31                 if platform.system() == "Darwin":
32                         #Check if we need to copy our examples
33                         exampleFile = os.path.expanduser('~/CuraExamples/UltimakerRobot_support.stl')
34                         if not os.path.isfile(exampleFile):
35                                 try:
36                                         os.makedirs(os.path.dirname(exampleFile))
37                                 except:
38                                         pass
39                                 for filename in glob.glob(os.path.normpath(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', 'example', '*.*'))):
40                                         shutil.copy(filename, os.path.join(os.path.dirname(exampleFile), os.path.basename(filename)))
41                                 profile.putPreference('lastFile', exampleFile)
42                 splash.Show(False)
43                 configWizard.configWizard()
44         if profile.getPreference('startMode') == 'Simple':
45                 simpleMode.simpleModeWindow()
46         else:
47                 mainWindow()
48         #app.MainLoop()
49
50 class mainWindow(configBase.configWindowBase):
51         "Main user interface window"
52         def __init__(self):
53                 super(mainWindow, self).__init__(title='Cura - ' + version.getVersion())
54
55                 extruderCount = int(profile.getPreference('extruder_amount'))
56                 
57                 wx.EVT_CLOSE(self, self.OnClose)
58                 #self.SetIcon(icon.getMainIcon())
59                 
60                 self.SetDropTarget(dropTarget.FileDropTarget(self.OnDropFiles, meshLoader.supportedExtensions()))
61                 
62                 menubar = wx.MenuBar()
63                 fileMenu = wx.Menu()
64                 i = fileMenu.Append(-1, 'Load model file...\tCTRL+L')
65                 self.Bind(wx.EVT_MENU, lambda e: self._showModelLoadDialog(1), i)
66                 i = fileMenu.Append(-1, 'Prepare print...\tCTRL+R')
67                 self.Bind(wx.EVT_MENU, self.OnSlice, i)
68                 i = fileMenu.Append(-1, 'Print...\tCTRL+P')
69                 self.Bind(wx.EVT_MENU, self.OnPrint, i)
70
71                 fileMenu.AppendSeparator()
72                 i = fileMenu.Append(-1, 'Open Profile...')
73                 self.Bind(wx.EVT_MENU, self.OnLoadProfile, i)
74                 i = fileMenu.Append(-1, 'Save Profile...')
75                 self.Bind(wx.EVT_MENU, self.OnSaveProfile, i)
76                 i = fileMenu.Append(-1, 'Load Profile from GCode...')
77                 self.Bind(wx.EVT_MENU, self.OnLoadProfileFromGcode, i)
78                 fileMenu.AppendSeparator()
79                 i = fileMenu.Append(-1, 'Reset Profile to default')
80                 self.Bind(wx.EVT_MENU, self.OnResetProfile, i)
81                 fileMenu.AppendSeparator()
82                 i = fileMenu.Append(-1, 'Preferences...\tCTRL+,')
83                 self.Bind(wx.EVT_MENU, self.OnPreferences, i)
84                 fileMenu.AppendSeparator()
85                 i = fileMenu.Append(wx.ID_EXIT, 'Quit')
86                 self.Bind(wx.EVT_MENU, self.OnQuit, i)
87                 menubar.Append(fileMenu, '&File')
88
89                 toolsMenu = wx.Menu()
90                 i = toolsMenu.Append(-1, 'Switch to Quickprint...')
91                 self.Bind(wx.EVT_MENU, self.OnSimpleSwitch, i)
92                 toolsMenu.AppendSeparator()
93                 i = toolsMenu.Append(-1, 'Batch run...')
94                 self.Bind(wx.EVT_MENU, self.OnBatchRun, i)
95                 i = toolsMenu.Append(-1, 'Project planner...')
96                 self.Bind(wx.EVT_MENU, self.OnProjectPlanner, i)
97 #               i = toolsMenu.Append(-1, 'Open SVG (2D) slicer...')
98 #               self.Bind(wx.EVT_MENU, self.OnSVGSlicerOpen, i)
99                 menubar.Append(toolsMenu, 'Tools')
100                 
101                 expertMenu = wx.Menu()
102                 i = expertMenu.Append(-1, 'Open expert settings...')
103                 self.Bind(wx.EVT_MENU, self.OnExpertOpen, i)
104                 expertMenu.AppendSeparator()
105                 if firmwareInstall.getDefaultFirmware() != None:
106                         i = expertMenu.Append(-1, 'Install default Marlin firmware')
107                         self.Bind(wx.EVT_MENU, self.OnDefaultMarlinFirmware, i)
108                 i = expertMenu.Append(-1, 'Install custom firmware')
109                 self.Bind(wx.EVT_MENU, self.OnCustomFirmware, i)
110                 expertMenu.AppendSeparator()
111                 i = expertMenu.Append(-1, 'ReRun first run wizard...')
112                 self.Bind(wx.EVT_MENU, self.OnFirstRunWizard, i)
113                 menubar.Append(expertMenu, 'Expert')
114                 
115                 helpMenu = wx.Menu()
116                 i = helpMenu.Append(-1, 'Online documentation...')
117                 self.Bind(wx.EVT_MENU, lambda e: webbrowser.open('http://daid.github.com/Cura'), i)
118                 i = helpMenu.Append(-1, 'Report a problem...')
119                 self.Bind(wx.EVT_MENU, lambda e: webbrowser.open('https://github.com/daid/Cura/issues'), i)
120                 menubar.Append(helpMenu, 'Help')
121                 self.SetMenuBar(menubar)
122                 
123                 if profile.getPreference('lastFile') != '':
124                         self.filelist = profile.getPreference('lastFile').split(';')
125                         self.SetTitle('Cura - %s - %s' % (version.getVersion(), self.filelist[-1]))
126                 else:
127                         self.filelist = []
128                 self.progressPanelList = []
129
130                 #Preview window
131                 self.preview3d = preview3d.previewPanel(self)
132
133                 #Main tabs
134                 nb = wx.Notebook(self)
135                 
136                 (left, right) = self.CreateConfigTab(nb, 'Print config')
137                 
138                 configBase.TitleRow(left, "Quality")
139                 c = configBase.SettingRow(left, "Layer height (mm)", 'layer_height', '0.2', 'Layer height in millimeters.\n0.2 is a good value for quick prints.\n0.1 gives high quality prints.')
140                 validators.validFloat(c, 0.0001)
141                 validators.warningAbove(c, lambda : (float(profile.getProfileSetting('nozzle_size')) * 80.0 / 100.0), "Thicker layers then %.2fmm (80%% nozzle size) usually give bad results and are not recommended.")
142                 c = configBase.SettingRow(left, "Wall thickness (mm)", 'wall_thickness', '0.8', 'Thickness of the walls.\nThis is used in combination with the nozzle size to define the number\nof perimeter lines and the thickness of those perimeter lines.')
143                 validators.validFloat(c, 0.0001)
144                 validators.wallThicknessValidator(c)
145                 c = configBase.SettingRow(left, "Enable retraction", 'retraction_enable', False, 'Retract the filament when the nozzle is moving over a none-printed area. Details about the retraction can be configured in the advanced tab.')
146                 
147                 configBase.TitleRow(left, "Fill")
148                 c = configBase.SettingRow(left, "Bottom/Top thickness (mm)", 'solid_layer_thickness', '0.6', 'This controls the thickness of the bottom and top layers, the amount of solid layers put down is calculated by the layer thickness and this value.\nHaving this value a multiply of the layer thickness makes sense. And keep it near your wall thickness to make an evenly strong part.')
149                 validators.validFloat(c, 0.0)
150                 c = configBase.SettingRow(left, "Fill Density (%)", 'fill_density', '20', 'This controls how densily filled the insides of your print will be. For a solid part use 100%, for an empty part use 0%. A value around 20% is usually enough')
151                 validators.validFloat(c, 0.0, 100.0)
152                 
153                 configBase.TitleRow(right, "Speed && Temperature")
154                 c = configBase.SettingRow(right, "Print speed (mm/s)", 'print_speed', '50', 'Speed at which printing happens. A well adjusted Ultimaker can reach 150mm/s, but for good quality prints you want to print slower. Printing speed depends on a lot of factors. So you will be experimenting with optimal settings for this.')
155                 validators.validFloat(c, 1.0)
156                 validators.warningAbove(c, 150.0, "It is highly unlikely that your machine can achieve a printing speed above 150mm/s")
157                 validators.printSpeedValidator(c)
158                 
159                 #configBase.TitleRow(right, "Temperature")
160                 c = configBase.SettingRow(right, "Printing temperature", 'print_temperature', '0', 'Temperature used for printing. Set at 0 to pre-heat yourself')
161                 validators.validFloat(c, 0.0, 340.0)
162                 validators.warningAbove(c, 260.0, "Temperatures above 260C could damage your machine, be careful!")
163                 if profile.getPreference('has_heated_bed') == 'True':
164                         c = configBase.SettingRow(right, "Bed temperature", 'print_bed_temperature', '0', 'Temperature used for the heated printer bed. Set at 0 to pre-heat yourself')
165                         validators.validFloat(c, 0.0, 340.0)
166                 
167                 configBase.TitleRow(right, "Support structure")
168                 c = configBase.SettingRow(right, "Support type", 'support', ['None', 'Exterior Only', 'Everywhere'], 'Type of support structure build.\n"Exterior only" is the most commonly used support setting.\n\nNone does not do any support.\nExterior only only creates support where the support structure will touch the build platform.\nEverywhere creates support even on the insides of the model.')
169                 c = configBase.SettingRow(right, "Add raft", 'enable_raft', False, 'A raft is a few layers of lines below the bottom of the object. It prevents warping. Full raft settings can be found in the expert settings.\nFor PLA this is usually not required. But if you print with ABS it is almost required.')
170                 if extruderCount > 1:
171                         c = configBase.SettingRow(right, "Support dual extrusion", 'support_dual_extrusion', False, 'Print the support material with the 2nd extruder in a dual extrusion setup. The primary extruder will be used for normal material, while the second extruder is used to print support material.')
172
173                 configBase.TitleRow(right, "Filament")
174                 c = configBase.SettingRow(right, "Diameter (mm)", 'filament_diameter', '2.89', 'Diameter of your filament, as accurately as possible.\nIf you cannot measure this value you will have to callibrate it, a higher number means less extrusion, a smaller number generates more extrusion.')
175                 validators.validFloat(c, 1.0)
176                 validators.warningAbove(c, 3.5, "Are you sure your filament is that thick? Normal filament is around 3mm or 1.75mm.")
177                 c = configBase.SettingRow(right, "Packing Density", 'filament_density', '1.00', 'Packing density of your filament. This should be 1.00 for PLA and 0.85 for ABS')
178                 validators.validFloat(c, 0.5, 1.5)
179                 
180                 (left, right) = self.CreateConfigTab(nb, 'Advanced config')
181                 
182                 configBase.TitleRow(left, "Machine size")
183                 c = configBase.SettingRow(left, "Nozzle size (mm)", 'nozzle_size', '0.4', 'The nozzle size is very important, this is used to calculate the line width of the infill, and used to calculate the amount of outside wall lines and thickness for the wall thickness you entered in the print settings.')
184                 validators.validFloat(c, 0.1, 10.0)
185
186                 configBase.TitleRow(left, "Skirt")
187                 c = configBase.SettingRow(left, "Line count", 'skirt_line_count', '1', 'The skirt is a line drawn around the object at the first layer. This helps to prime your extruder, and to see if the object fits on your platform.\nSetting this to 0 will disable the skirt. Multiple skirt lines can help priming your extruder better for small objects.')
188                 validators.validInt(c, 0, 10)
189                 c = configBase.SettingRow(left, "Start distance (mm)", 'skirt_gap', '6.0', 'The distance between the skirt and the first layer.\nThis is the minimal distance, multiple skirt lines will be put outwards from this distance.')
190                 validators.validFloat(c, 0.0)
191
192                 configBase.TitleRow(left, "Retraction")
193                 c = configBase.SettingRow(left, "Minimum travel (mm)", 'retraction_min_travel', '5.0', 'Minimum amount of travel needed for a retraction to happen at all. To make sure you do not get a lot of retractions in a small area')
194                 validators.validFloat(c, 0.0)
195                 c = configBase.SettingRow(left, "Speed (mm/s)", 'retraction_speed', '40.0', 'Speed at which the filament is retracted, a higher retraction speed works better. But a very high retraction speed can lead to filament grinding.')
196                 validators.validFloat(c, 0.1)
197                 c = configBase.SettingRow(left, "Distance (mm)", 'retraction_amount', '0.0', 'Amount of retraction, set at 0 for no retraction at all. A value of 2.0mm seems to generate good results.')
198                 validators.validFloat(c, 0.0)
199                 c = configBase.SettingRow(left, "Extra length on start (mm)", 'retraction_extra', '0.0', 'Extra extrusion amount when restarting after a retraction, to better "Prime" your extruder after retraction.')
200                 validators.validFloat(c, 0.0)
201
202                 configBase.TitleRow(right, "Speed")
203                 c = configBase.SettingRow(right, "Travel speed (mm/s)", 'travel_speed', '150', 'Speed at which travel moves are done, a high quality build Ultimaker can reach speeds of 250mm/s. But some machines might miss steps then.')
204                 validators.validFloat(c, 1.0)
205                 validators.warningAbove(c, 300.0, "It is highly unlikely that your machine can achieve a travel speed above 300mm/s")
206                 c = configBase.SettingRow(right, "Max Z speed (mm/s)", 'max_z_speed', '1.0', 'Speed at which Z moves are done. When you Z axis is properly lubercated you can increase this for less Z blob.')
207                 validators.validFloat(c, 0.5)
208                 c = configBase.SettingRow(right, "Bottom layer speed (mm/s)", 'bottom_layer_speed', '25', 'Print speed for the bottom layer, you want to print the first layer slower so it sticks better to the printer bed.')
209                 validators.validFloat(c, 0.0)
210
211                 configBase.TitleRow(right, "Cool")
212                 c = configBase.SettingRow(right, "Minimal layer time (sec)", 'cool_min_layer_time', '10', 'Minimum time spend in a layer, gives the layer time to cool down before the next layer is put on top. If the layer will be placed down too fast the printer will slow down to make sure it has spend atleast this amount of seconds printing this layer.')
213                 validators.validFloat(c, 0.0)
214                 c = configBase.SettingRow(right, "Enable cooling fan", 'fan_enabled', True, 'Enable the cooling fan during the print. The extra cooling from the cooling fan is essensial during faster prints.')
215
216                 configBase.TitleRow(right, "Quality")
217                 c = configBase.SettingRow(right, "Initial layer thickness (mm)", 'bottom_thickness', '0.0', 'Layer thickness of the bottom layer. A thicker bottom layer makes sticking to the bed easier. Set to 0.0 to have the bottom layer thickness the same as the other layers.')
218                 validators.validFloat(c, 0.0)
219                 validators.warningAbove(c, lambda : (float(profile.getProfileSetting('nozzle_size')) * 3.0 / 4.0), "A bottom layer of more then %.2fmm (3/4 nozzle size) usually give bad results and is not recommended.")
220                 c = configBase.SettingRow(right, "Duplicate outlines", 'enable_skin', False, 'Skin prints the outer lines of the prints twice, each time with half the thickness. This gives the illusion of a higher print quality.')
221
222                 #Plugin page
223                 self.pluginPanel = pluginPanel.pluginPanel(nb)
224                 if len(self.pluginPanel.pluginList) > 0:
225                         nb.AddPage(self.pluginPanel, "Plugins")
226                 else:
227                         self.pluginPanel.Show(False)
228
229                 #Alteration page
230                 self.alterationPanel = alterationPanel.alterationPanel(nb)
231                 nb.AddPage(self.alterationPanel, "Start/End-GCode")
232
233                 # load and slice buttons.
234                 loadButton = wx.Button(self, -1, '&Load model')
235                 sliceButton = wx.Button(self, -1, 'P&repare print')
236                 printButton = wx.Button(self, -1, '&Print')
237                 self.Bind(wx.EVT_BUTTON, lambda e: self._showModelLoadDialog(1), loadButton)
238                 self.Bind(wx.EVT_BUTTON, self.OnSlice, sliceButton)
239                 self.Bind(wx.EVT_BUTTON, self.OnPrint, printButton)
240
241                 if extruderCount > 1:
242                         loadButton2 = wx.Button(self, -1, 'Load Dual')
243                         self.Bind(wx.EVT_BUTTON, lambda e: self._showModelLoadDialog(2), loadButton2)
244                 if extruderCount > 2:
245                         loadButton3 = wx.Button(self, -1, 'Load Triple')
246                         self.Bind(wx.EVT_BUTTON, lambda e: self._showModelLoadDialog(3), loadButton3)
247                 if extruderCount > 3:
248                         loadButton4 = wx.Button(self, -1, 'Load Quad')
249                         self.Bind(wx.EVT_BUTTON, lambda e: self._showModelLoadDialog(4), loadButton4)
250
251                 #Also bind double clicking the 3D preview to load an STL file.
252                 self.preview3d.glCanvas.Bind(wx.EVT_LEFT_DCLICK, lambda e: self._showModelLoadDialog(1), self.preview3d.glCanvas)
253
254                 #Main sizer, to position the preview window, buttons and tab control
255                 sizer = wx.GridBagSizer()
256                 self.SetSizer(sizer)
257                 sizer.Add(nb, (0,0), span=(1,1), flag=wx.EXPAND)
258                 sizer.Add(self.preview3d, (0,1), span=(1,2+extruderCount), flag=wx.EXPAND)
259                 sizer.AddGrowableCol(2 + extruderCount)
260                 sizer.AddGrowableRow(0)
261                 sizer.Add(loadButton, (1,1), flag=wx.RIGHT|wx.BOTTOM|wx.TOP, border=5)
262                 if extruderCount > 1:
263                         sizer.Add(loadButton2, (1,2), flag=wx.RIGHT|wx.BOTTOM|wx.TOP, border=5)
264                 if extruderCount > 2:
265                         sizer.Add(loadButton3, (1,3), flag=wx.RIGHT|wx.BOTTOM|wx.TOP, border=5)
266                 if extruderCount > 3:
267                         sizer.Add(loadButton4, (1,4), flag=wx.RIGHT|wx.BOTTOM|wx.TOP, border=5)
268                 sizer.Add(sliceButton, (1,1+extruderCount), flag=wx.RIGHT|wx.BOTTOM|wx.TOP, border=5)
269                 sizer.Add(printButton, (1,2+extruderCount), flag=wx.RIGHT|wx.BOTTOM|wx.TOP, border=5)
270                 self.sizer = sizer
271
272                 if len(self.filelist) > 0:
273                         self.preview3d.loadModelFiles(self.filelist)
274
275                 self.updateProfileToControls()
276
277                 self.SetBackgroundColour(nb.GetBackgroundColour())
278                 
279                 self.Fit()
280                 if wx.Display().GetClientArea().GetWidth() < self.GetSize().GetWidth():
281                         f = self.GetSize().GetWidth() - wx.Display().GetClientArea().GetWidth()
282                         self.preview3d.SetMinSize(self.preview3d.GetMinSize().DecBy(f, 0))
283                         self.Fit()
284                 self.preview3d.Fit()
285                 self.SetMinSize(self.GetSize())
286                 self.Centre()
287                 self.Show(True)
288         
289         def OnLoadProfile(self, e):
290                 dlg=wx.FileDialog(self, "Select profile file to load", os.path.split(profile.getPreference('lastFile'))[0], style=wx.FD_OPEN|wx.FD_FILE_MUST_EXIST)
291                 dlg.SetWildcard("ini files (*.ini)|*.ini")
292                 if dlg.ShowModal() == wx.ID_OK:
293                         profileFile = dlg.GetPath()
294                         profile.loadGlobalProfile(profileFile)
295                         self.updateProfileToControls()
296                 dlg.Destroy()
297
298         def OnLoadProfileFromGcode(self, e):
299                 dlg=wx.FileDialog(self, "Select gcode file to load profile from", os.path.split(profile.getPreference('lastFile'))[0], style=wx.FD_OPEN|wx.FD_FILE_MUST_EXIST)
300                 dlg.SetWildcard("gcode files (*.gcode)|*.gcode;*.g")
301                 if dlg.ShowModal() == wx.ID_OK:
302                         gcodeFile = dlg.GetPath()
303                         f = open(gcodeFile, 'r')
304                         hasProfile = False
305                         for line in f:
306                                 if line.startswith(';CURA_PROFILE_STRING:'):
307                                         profile.loadGlobalProfileFromString(line[line.find(':')+1:].strip())
308                                         hasProfile = True
309                         if hasProfile:
310                                 self.updateProfileToControls()
311                         else:
312                                 wx.MessageBox('No profile found in GCode file.\nThis feature only works with GCode files made by Cura 12.07 or newer.', 'Profile load error', wx.OK | wx.ICON_INFORMATION)
313                 dlg.Destroy()
314         
315         def OnSaveProfile(self, e):
316                 dlg=wx.FileDialog(self, "Select profile file to save", os.path.split(profile.getPreference('lastFile'))[0], style=wx.FD_SAVE)
317                 dlg.SetWildcard("ini files (*.ini)|*.ini")
318                 if dlg.ShowModal() == wx.ID_OK:
319                         profileFile = dlg.GetPath()
320                         profile.saveGlobalProfile(profileFile)
321                 dlg.Destroy()
322         
323         def OnResetProfile(self, e):
324                 dlg = wx.MessageDialog(self, 'This will reset all profile settings to defaults.\nUnless you have saved your current profile, all settings will be lost!\nDo you really want to reset?', 'Profile reset', wx.YES_NO | wx.ICON_QUESTION)
325                 result = dlg.ShowModal() == wx.ID_YES
326                 dlg.Destroy()
327                 if result:
328                         profile.resetGlobalProfile()
329                         self.updateProfileToControls()
330         
331         def OnBatchRun(self, e):
332                 br = batchRun.batchRunWindow(self)
333                 br.Centre()
334                 br.Show(True)
335         
336         def OnPreferences(self, e):
337                 prefDialog = preferencesDialog.preferencesDialog(self)
338                 prefDialog.Centre()
339                 prefDialog.Show(True)
340         
341         def OnSimpleSwitch(self, e):
342                 profile.putPreference('startMode', 'Simple')
343                 simpleMode.simpleModeWindow()
344                 self.Close()
345         
346         def OnDefaultMarlinFirmware(self, e):
347                 firmwareInstall.InstallFirmware()
348
349         def OnCustomFirmware(self, e):
350                 if profile.getPreference('machine_type') == 'ultimaker':
351                         wx.MessageBox('Warning: Installing a custom firmware does not garantee that you machine will function correctly, and could damage your machine.', 'Firmware update', wx.OK | wx.ICON_EXCLAMATION)
352                 dlg=wx.FileDialog(self, "Open firmware to upload", os.path.split(profile.getPreference('lastFile'))[0], style=wx.FD_OPEN|wx.FD_FILE_MUST_EXIST)
353                 dlg.SetWildcard("HEX file (*.hex)|*.hex;*.HEX")
354                 if dlg.ShowModal() == wx.ID_OK:
355                         filename = dlg.GetPath()
356                         if not(os.path.exists(filename)):
357                                 return
358                         #For some reason my Ubuntu 10.10 crashes here.
359                         firmwareInstall.InstallFirmware(filename)
360
361         def OnFirstRunWizard(self, e):
362                 configWizard.configWizard()
363                 self.updateProfileToControls()
364
365         def _showOpenDialog(self, title, wildcard = meshLoader.wildcardFilter()):
366                 dlg=wx.FileDialog(self, title, os.path.split(profile.getPreference('lastFile'))[0], style=wx.FD_OPEN|wx.FD_FILE_MUST_EXIST)
367                 dlg.SetWildcard(wildcard)
368                 if dlg.ShowModal() == wx.ID_OK:
369                         filename = dlg.GetPath()
370                         dlg.Destroy()
371                         if not(os.path.exists(filename)):
372                                 return False
373                         profile.putPreference('lastFile', filename)
374                         return filename
375                 dlg.Destroy()
376                 return False
377
378         def _showModelLoadDialog(self, amount):
379                 filelist = []
380                 for i in xrange(0, amount):
381                         filelist.append(self._showOpenDialog("Open file to print"))
382                         if filelist[-1] == False:
383                                 return
384                 self._loadModels(filelist)
385         
386         def _loadModels(self, filelist):
387                 self.filelist = filelist
388                 self.SetTitle(filelist[-1] + ' - Cura - ' + version.getVersion())
389                 profile.putPreference('lastFile', ';'.join(self.filelist))
390                 self.preview3d.loadModelFiles(self.filelist, True)
391                 self.preview3d.setViewMode("Normal")
392
393         def OnDropFiles(self, filenames):
394                 self._loadModels(filenames)
395
396         def OnLoadModel(self, e):
397                 self._showModelLoadDialog(1)
398         
399         def OnLoadModel2(self, e):
400                 self._showModelLoadDialog(2)
401
402         def OnLoadModel3(self, e):
403                 self._showModelLoadDialog(3)
404
405         def OnLoadModel4(self, e):
406                 self._showModelLoadDialog(4)
407         
408         def OnSlice(self, e):
409                 if len(self.filelist) < 1:
410                         wx.MessageBox('You need to load a file before you can prepare it.', 'Print error', wx.OK | wx.ICON_INFORMATION)
411                         return
412                 #Create a progress panel and add it to the window. The progress panel will start the Skein operation.
413                 spp = sliceProgessPanel.sliceProgessPanel(self, self, self.filelist)
414                 self.sizer.Add(spp, (len(self.progressPanelList)+2,0), span=(1,4), flag=wx.EXPAND)
415                 self.sizer.Layout()
416                 newSize = self.GetSize();
417                 newSize.IncBy(0, spp.GetSize().GetHeight())
418                 if newSize.GetWidth() < wx.GetDisplaySize()[0]:
419                         self.SetSize(newSize)
420                 self.progressPanelList.append(spp)
421         
422         def OnPrint(self, e):
423                 if len(self.filelist) < 1:
424                         wx.MessageBox('You need to load a file and prepare it before you can print.', 'Print error', wx.OK | wx.ICON_INFORMATION)
425                         return
426                 if not os.path.exists(sliceRun.getExportFilename(self.filelist[0])):
427                         wx.MessageBox('You need to prepare a print before you can run the actual print.', 'Print error', wx.OK | wx.ICON_INFORMATION)
428                         return
429                 printWindow.printFile(sliceRun.getExportFilename(self.filelist[0]))
430
431         def OnExpertOpen(self, e):
432                 ecw = expertConfig.expertConfigWindow()
433                 ecw.Centre()
434                 ecw.Show(True)
435         
436         def OnProjectPlanner(self, e):
437                 pp = projectPlanner.projectPlanner()
438                 pp.Centre()
439                 pp.Show(True)
440
441         def OnSVGSlicerOpen(self, e):
442                 svgSlicer = flatSlicerWindow.flatSlicerWindow()
443                 svgSlicer.Centre()
444                 svgSlicer.Show(True)
445
446         def removeSliceProgress(self, spp):
447                 self.progressPanelList.remove(spp)
448                 newSize = self.GetSize();
449                 newSize.IncBy(0, -spp.GetSize().GetHeight())
450                 if newSize.GetWidth() < wx.GetDisplaySize()[0]:
451                         self.SetSize(newSize)
452                 spp.Show(False)
453                 self.sizer.Detach(spp)
454                 for spp in self.progressPanelList:
455                         self.sizer.Detach(spp)
456                 i = 2
457                 for spp in self.progressPanelList:
458                         self.sizer.Add(spp, (i,0), span=(1,4), flag=wx.EXPAND)
459                         i += 1
460                 self.sizer.Layout()
461
462         def OnQuit(self, e):
463                 self.Close()
464         
465         def OnClose(self, e):
466                 profile.saveGlobalProfile(profile.getDefaultProfilePath())
467                 self.Destroy()
468
469         def updateProfileToControls(self):
470                 super(mainWindow, self).updateProfileToControls()
471                 self.preview3d.updateProfileToControls()
472                 self.alterationPanel.updateProfileToControls()
473                 self.pluginPanel.updateProfileToControls()