# Created: 5/15/03
# CVS-ID: $Id$
# Copyright: (c) 2003-2005 ActiveGrid, Inc.
-# License: ASL 2.0 http://apache.org/licenses/LICENSE-2.0
+# License: wxWindows License
#----------------------------------------------------------------------------
import wx.lib.pydocview as pydocview
import TextEditor
import FindService
+import os.path
_ = wx.GetTranslation
pydocview.DocApp.OnInit(self)
# Show the splash dialog while everything is loading up
- self.ShowSplash("splash.jpg")
+ if os.path.exists("splash.png"):
+ self.ShowSplash("splash.png")
# Set the name and the icon
self.SetAppName(_("wxPython PyDocView Demo"))
# Install services - these can install menu and toolbar items
textService = self.InstallService(TextEditor.TextService())
findService = self.InstallService(FindService.FindService())
- optionsService = self.InstallService(pydocview.DocOptionsService())
+ optionsService = self.InstallService(pydocview.DocOptionsService(supportedModes=wx.lib.docview.DOC_MDI))
windowMenuService = self.InstallService(pydocview.WindowMenuService())
filePropertiesService = self.InstallService(pydocview.FilePropertiesService())
- aboutService = self.InstallService(pydocview.AboutService(image=wx.Image("splash.jpg")))
-
+ if os.path.exists("splash.jpg"):
+ aboutService = self.InstallService(pydocview.AboutService(image=wx.Image("splash.jpg")))
+ else:
+ aboutService = self.InstallService(pydocview.AboutService())
+
# Install the TextEditor's option panel into the OptionsService
optionsService.AddOptionsPanel(TextEditor.TextOptionsPanel)
textTemplate.CreateDocument('', docview.DOC_NEW).OnNewDocument()
# Close the splash dialog
- self.CloseSplash()
+ if os.path.exists("splash.jpg"):
+ self.CloseSplash()
# Show the tips dialog
- wx.CallAfter(self.ShowTip, wx.GetApp().GetTopWindow(), wx.CreateFileTipProvider("tips.txt", 0))
+ if os.path.exists("tips.txt"):
+ wx.CallAfter(self.ShowTip, wx.GetApp().GetTopWindow(), wx.CreateFileTipProvider("tips.txt", 0))
# Tell the framework that everything is great
return True