X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=Cura%2Fgui%2Fapp.py;h=e557c2eca61b2e10a3eea9e5e6143afd5962e23a;hb=7178ce11eb451ed2df188ee626d22a39b5cb317e;hp=5ab0e28d7a2de944cb731596c4f1c9012733af9b;hpb=e2299c31d2515e113a5ffbdf5ffc147797d586ce;p=cura.git diff --git a/Cura/gui/app.py b/Cura/gui/app.py index 5ab0e28d..e557c2ec 100644 --- a/Cura/gui/app.py +++ b/Cura/gui/app.py @@ -22,6 +22,27 @@ class CuraApp(wx.App): self.mainWindow = None self.splash = None self.loadFiles = files + + if sys.platform.startswith('win') and len(files) > 0: + #Check for an already running instance, if another instance is running load files in there + from Cura.util import version + from ctypes import windll + import ctypes + import socket + import threading + + other_hwnd = windll.user32.FindWindowA(None, ctypes.c_char_p('Cura - ' + version.getVersion())) + portNr = 0xCA00 + sum(map(ord, version.getVersion(False))) + if other_hwnd != 0: + sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + sock.sendto('\0'.join(files), ("127.0.0.1", portNr)) + + windll.user32.SetForegroundWindow(other_hwnd) + return + + socketListener = threading.Thread(target=self.Win32SocketListener, args=(portNr,)) + socketListener.daemon = True + socketListener.start() if sys.platform.startswith('darwin'): #Do not show a splashscreen on OSX, as by Apple guidelines @@ -36,6 +57,14 @@ class CuraApp(wx.App): except Exception as e: warnings.warn("File at {p} cannot be read: {e}".format(p=path, e=str(e))) + def Win32SocketListener(self, port): + import socket + sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + sock.bind(("127.0.0.1", port)) + while True: + data, addr = sock.recvfrom(2048) + self.mainWindow.OnDropFiles(data.split('\0')) + def afterSplashCallback(self): #These imports take most of the time and thus should be done after showing the splashscreen import webbrowser @@ -45,18 +74,22 @@ class CuraApp(wx.App): from Cura.util import resources from Cura.util import version + resources.setupLocalization(profile.getPreference('language')) # it's important to set up localization at very beginning to install _ + #If we do not have preferences yet, try to load it from a previous Cura install - if profile.getPreference('machine_type') == 'unknown': + if profile.getMachineSetting('machine_type') == 'unknown': try: otherCuraInstalls = profile.getAlternativeBasePaths() otherCuraInstalls.sort() - profile.loadPreferences(os.path.join(otherCuraInstalls[-1], 'preferences.ini')) - profile.loadProfile(os.path.join(otherCuraInstalls[-1], 'current_profile.ini')) + if len(otherCuraInstalls) > 0: + profile.loadPreferences(os.path.join(otherCuraInstalls[-1], 'preferences.ini')) + profile.loadProfile(os.path.join(otherCuraInstalls[-1], 'current_profile.ini')) except: - print sys.exc_info() + import traceback + print traceback.print_exc() #If we haven't run it before, run the configuration wizard. - if profile.getPreference('machine_type') == 'unknown': + if profile.getMachineSetting('machine_type') == 'unknown': if platform.system() == "Windows": exampleFile = os.path.normpath(os.path.join(resources.resourceBasePath, 'example', 'UltimakerRobot_support.stl')) else: @@ -79,9 +112,11 @@ class CuraApp(wx.App): if newVersion is not None: if self.splash is not None: self.splash.Show(False) - 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: + 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: webbrowser.open(newVersion) return + if profile.getMachineSetting('machine_name') == '': + return self.mainWindow = mainWindow.mainWindow() if self.splash is not None: self.splash.Show(False)