chiark / gitweb /
Change how the localization of profile settings is done. This makes it possible to...
[cura.git] / Cura / gui / app.py
1 from __future__ import absolute_import
2 __copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
3
4 import sys
5 import os
6 import platform
7 import shutil
8 import glob
9 import warnings
10
11 #Only import the _core to save import time
12 import wx._core
13
14
15 class CuraApp(wx.App):
16         def __init__(self, files):
17                 if platform.system() == "Windows" and not 'PYCHARM_HOSTED' in os.environ:
18                         super(CuraApp, self).__init__(redirect=True, filename='output.txt')
19                 else:
20                         super(CuraApp, self).__init__(redirect=False)
21
22                 self.mainWindow = None
23                 self.splash = None
24                 self.loadFiles = files
25
26                 if sys.platform.startswith('darwin'):
27                         #Do not show a splashscreen on OSX, as by Apple guidelines
28                         self.afterSplashCallback()
29                 else:
30                         from Cura.gui import splashScreen
31                         self.splash = splashScreen.splashScreen(self.afterSplashCallback)
32
33         def MacOpenFile(self, path):
34                 try:
35                         self.mainWindow.OnDropFiles([path])
36                 except Exception as e:
37                         warnings.warn("File at {p} cannot be read: {e}".format(p=path, e=str(e)))
38
39         def afterSplashCallback(self):
40                 #These imports take most of the time and thus should be done after showing the splashscreen
41                 import webbrowser
42                 from Cura.gui import mainWindow
43                 from Cura.gui import configWizard
44                 from Cura.util import profile
45                 from Cura.util import resources
46                 from Cura.util import version
47
48                 resources.setupLocalization()  # it's important to set up localization at very beginning to install _
49
50                 #If we do not have preferences yet, try to load it from a previous Cura install
51                 if profile.getPreference('machine_type') == 'unknown':
52                         try:
53                                 otherCuraInstalls = profile.getAlternativeBasePaths()
54                                 otherCuraInstalls.sort()
55                                 profile.loadPreferences(os.path.join(otherCuraInstalls[-1], 'preferences.ini'))
56                                 profile.loadProfile(os.path.join(otherCuraInstalls[-1], 'current_profile.ini'))
57                         except:
58                                 print sys.exc_info()
59
60                 #If we haven't run it before, run the configuration wizard.
61                 if profile.getPreference('machine_type') == 'unknown':
62                         if platform.system() == "Windows":
63                                 exampleFile = os.path.normpath(os.path.join(resources.resourceBasePath, 'example', 'UltimakerRobot_support.stl'))
64                         else:
65                                 #Check if we need to copy our examples
66                                 exampleFile = os.path.expanduser('~/CuraExamples/UltimakerRobot_support.stl')
67                                 if not os.path.isfile(exampleFile):
68                                         try:
69                                                 os.makedirs(os.path.dirname(exampleFile))
70                                         except:
71                                                 pass
72                                         for filename in glob.glob(os.path.normpath(os.path.join(resources.resourceBasePath, 'example', '*.*'))):
73                                                 shutil.copy(filename, os.path.join(os.path.dirname(exampleFile), os.path.basename(filename)))
74                         self.loadFiles = [exampleFile]
75                         if self.splash is not None:
76                                 self.splash.Show(False)
77                         configWizard.configWizard()
78
79                 if profile.getPreference('check_for_updates') == 'True':
80                         newVersion = version.checkForNewerVersion()
81                         if newVersion is not None:
82                                 if self.splash is not None:
83                                         self.splash.Show(False)
84                                 if wx.MessageBox(_("A new version of Cura is available, would you like to download?"), _("New version available"), wx.YES_NO | wx.ICON_INFORMATION) == wx.YES:
85                                         webbrowser.open(newVersion)
86                                         return
87                 self.mainWindow = mainWindow.mainWindow()
88                 if self.splash is not None:
89                         self.splash.Show(False)
90                 self.mainWindow.Show()
91                 self.mainWindow.OnDropFiles(self.loadFiles)
92
93                 setFullScreenCapable(self.mainWindow)
94
95 if platform.system() == "Darwin":
96         try:
97                 import ctypes, objc
98                 _objc = ctypes.PyDLL(objc._objc.__file__)
99
100                 # PyObject *PyObjCObject_New(id objc_object, int flags, int retain)
101                 _objc.PyObjCObject_New.restype = ctypes.py_object
102                 _objc.PyObjCObject_New.argtypes = [ctypes.c_void_p, ctypes.c_int, ctypes.c_int]
103
104                 def setFullScreenCapable(frame):
105                         frameobj = _objc.PyObjCObject_New(frame.GetHandle(), 0, 1)
106
107                         NSWindowCollectionBehaviorFullScreenPrimary = 1 << 7
108                         window = frameobj.window()
109                         newBehavior = window.collectionBehavior() | NSWindowCollectionBehaviorFullScreenPrimary
110                         window.setCollectionBehavior_(newBehavior)
111         except:
112                 def setFullScreenCapable(frame):
113                         pass
114
115 else:
116         def setFullScreenCapable(frame):
117                 pass