forked from openlp/openlp
for jonathan
bzr-revno: 547
This commit is contained in:
commit
787e26dcbf
@ -29,9 +29,14 @@ Place, Suite 330, Boston, MA 02111-1307 USA
|
|||||||
import logging
|
import logging
|
||||||
import os , subprocess
|
import os , subprocess
|
||||||
import time
|
import time
|
||||||
import uno
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
if os.name == u'nt':
|
||||||
|
from win32com.client import Dispatch
|
||||||
|
else:
|
||||||
|
import uno
|
||||||
|
|
||||||
|
|
||||||
from PyQt4 import QtCore
|
from PyQt4 import QtCore
|
||||||
|
|
||||||
class ImpressController(object):
|
class ImpressController(object):
|
||||||
@ -57,6 +62,7 @@ class ImpressController(object):
|
|||||||
when required.
|
when required.
|
||||||
"""
|
"""
|
||||||
log.debug(u'start Openoffice')
|
log.debug(u'start Openoffice')
|
||||||
|
if os.name != u'nt':
|
||||||
# -headless
|
# -headless
|
||||||
cmd = u'openoffice.org -nologo -norestore -minimized -invisible ' + u'"' + u'-accept=socket,host=localhost,port=2002;urp;'+ u'"'
|
cmd = u'openoffice.org -nologo -norestore -minimized -invisible ' + u'"' + u'-accept=socket,host=localhost,port=2002;urp;'+ u'"'
|
||||||
self.process = QtCore.QProcess()
|
self.process = QtCore.QProcess()
|
||||||
@ -81,6 +87,26 @@ class ImpressController(object):
|
|||||||
The file name of the presentatios to the run.
|
The file name of the presentatios to the run.
|
||||||
"""
|
"""
|
||||||
log.debug(u'LoadPresentation')
|
log.debug(u'LoadPresentation')
|
||||||
|
if os.name == u'nt':
|
||||||
|
desktop = self.getCOMDesktop()
|
||||||
|
url = u'file:///' + presentation.replace(u'\\', u'/').replace(u':', u'|').replace(u' ', u'%20')
|
||||||
|
else:
|
||||||
|
desktop = self.getUNODesktop()
|
||||||
|
url = uno.systemPathToFileUrl(presentation)
|
||||||
|
if(desktop==None):
|
||||||
|
return
|
||||||
|
try:
|
||||||
|
properties = []
|
||||||
|
properties = tuple(properties)
|
||||||
|
self.document = desktop.loadComponentFromURL(url, "_blank", 0, properties)
|
||||||
|
self.presentation = self.document.getPresentation()
|
||||||
|
self.presentation.start()
|
||||||
|
self.xSlideShowController = desktop.getCurrentComponent().Presentation.getController()
|
||||||
|
except:
|
||||||
|
log.error(u'Failed reason %s' % sys.exc_info())
|
||||||
|
|
||||||
|
def getUNODesktop(self):
|
||||||
|
log.debug(u'getUNODesktop')
|
||||||
ctx = None
|
ctx = None
|
||||||
loop = 0
|
loop = 0
|
||||||
context = uno.getComponentContext()
|
context = uno.getComponentContext()
|
||||||
@ -94,15 +120,20 @@ class ImpressController(object):
|
|||||||
try:
|
try:
|
||||||
smgr = ctx.ServiceManager
|
smgr = ctx.ServiceManager
|
||||||
desktop = smgr.createInstanceWithContext( "com.sun.star.frame.Desktop", ctx )
|
desktop = smgr.createInstanceWithContext( "com.sun.star.frame.Desktop", ctx )
|
||||||
url = uno.systemPathToFileUrl(presentation)
|
return desktop
|
||||||
properties = []
|
|
||||||
properties = tuple(properties)
|
|
||||||
self.document = desktop.loadComponentFromURL(url, "_blank", 0, properties)
|
|
||||||
self.presentation = self.document.getPresentation()
|
|
||||||
self.presentation.start()
|
|
||||||
self.xSlideShowController = desktop.getCurrentComponent().Presentation.getController()
|
|
||||||
except:
|
except:
|
||||||
log.error(u'Failed reason %s' % sys.exc_info())
|
log.error(u'Failed reason %s' % sys.exc_info())
|
||||||
|
return None
|
||||||
|
|
||||||
|
def getCOMDesktop(self):
|
||||||
|
log.debug(u'getCOMDesktop')
|
||||||
|
try:
|
||||||
|
smgr = Dispatch("com.sun.star.ServiceManager")
|
||||||
|
desktop = smgr.createInstance( "com.sun.star.frame.Desktop")
|
||||||
|
return desktop
|
||||||
|
except:
|
||||||
|
log.error(u'Failed reason %s' % sys.exc_info())
|
||||||
|
return None
|
||||||
|
|
||||||
def closePresentation(self):
|
def closePresentation(self):
|
||||||
"""
|
"""
|
||||||
|
@ -79,6 +79,10 @@ class PresentationPlugin(Plugin):
|
|||||||
#Lets see if Impress is required (Default is Not wanted)
|
#Lets see if Impress is required (Default is Not wanted)
|
||||||
if int(self.config.get_config(u'Impress', QtCore.Qt.Unchecked)) == QtCore.Qt.Checked:
|
if int(self.config.get_config(u'Impress', QtCore.Qt.Unchecked)) == QtCore.Qt.Checked:
|
||||||
try:
|
try:
|
||||||
|
if os.name == u'nt':
|
||||||
|
#Check to see if we are Win32
|
||||||
|
from win32com.client import Dispatch
|
||||||
|
else:
|
||||||
#Check to see if we have uno installed
|
#Check to see if we have uno installed
|
||||||
import uno
|
import uno
|
||||||
openoffice = ImpressController()
|
openoffice = ImpressController()
|
||||||
|
Loading…
Reference in New Issue
Block a user