More powerpoint exception catching. Added an error message. Also auto minimize of Powerpoint 2013

This commit is contained in:
Tomas Groth 2014-06-17 23:31:04 +02:00
parent 90adc1acca
commit 6928018f59

View File

@ -37,6 +37,7 @@ if os.name == u'nt':
import pywintypes import pywintypes
from presentationcontroller import PresentationController, PresentationDocument from presentationcontroller import PresentationController, PresentationDocument
from openlp.core.lib.ui import UiStrings, critical_error_message_box
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
@ -129,6 +130,9 @@ class PowerpointDocument(PresentationDocument):
self.controller.start_process() self.controller.start_process()
self.controller.process.Presentations.Open(self.filepath, False, self.controller.process.Presentations.Open(self.filepath, False,
False, True) False, True)
# Powerpoint 2013 pops up when loading a file, so we minimize it again
if self.presentation.Application.Version == u'15.0':
self.presentation.ActiveWindow.WindowState = 2
except pywintypes.com_error: except pywintypes.com_error:
log.debug(u'PPT open failed') log.debug(u'PPT open failed')
return False return False
@ -187,7 +191,6 @@ class PowerpointDocument(PresentationDocument):
return False return False
return True return True
def is_active(self): def is_active(self):
""" """
Returns ``True`` if a presentation is currently active. Returns ``True`` if a presentation is currently active.
@ -209,23 +212,33 @@ class PowerpointDocument(PresentationDocument):
Unblanks (restores) the presentation. Unblanks (restores) the presentation.
""" """
log.debug(u'unblank_screen') log.debug(u'unblank_screen')
self.presentation.SlideShowSettings.Run() try:
self.presentation.SlideShowWindow.View.State = 1 self.presentation.SlideShowSettings.Run()
self.presentation.SlideShowWindow.Activate() self.presentation.SlideShowWindow.View.State = 1
if self.presentation.Application.Version == u'14.0': self.presentation.SlideShowWindow.Activate()
# Unblanking is broken in PowerPoint 2010, need to redisplay if self.presentation.Application.Version == u'14.0':
slide = self.presentation.SlideShowWindow.View.CurrentShowPosition # Unblanking is broken in PowerPoint 2010, need to redisplay
click = self.presentation.SlideShowWindow.View.GetClickIndex() slide = self.presentation.SlideShowWindow.View.CurrentShowPosition
self.presentation.SlideShowWindow.View.GotoSlide(slide) click = self.presentation.SlideShowWindow.View.GetClickIndex()
if click: self.presentation.SlideShowWindow.View.GotoSlide(slide)
self.presentation.SlideShowWindow.View.GotoClick(click) if click:
self.presentation.SlideShowWindow.View.GotoClick(click)
except pywintypes.com_error:
log.error(u'COM error while in unblank_screen')
log.error(e)
self.show_error_msg()
def blank_screen(self): def blank_screen(self):
""" """
Blanks the screen. Blanks the screen.
""" """
log.debug(u'blank_screen') log.debug(u'blank_screen')
self.presentation.SlideShowWindow.View.State = 3 try:
self.presentation.SlideShowWindow.View.State = 3
except pywintypes.com_error:
log.error(u'COM error while in blank_screen')
log.error(e)
self.show_error_msg()
def is_blank(self): def is_blank(self):
""" """
@ -233,7 +246,12 @@ class PowerpointDocument(PresentationDocument):
""" """
log.debug(u'is_blank') log.debug(u'is_blank')
if self.is_active(): if self.is_active():
return self.presentation.SlideShowWindow.View.State == 3 try:
return self.presentation.SlideShowWindow.View.State == 3
except pywintypes.com_error:
log.error(u'COM error while in blank_screen')
log.error(e)
return False
else: else:
return False return False
@ -242,7 +260,11 @@ class PowerpointDocument(PresentationDocument):
Stops the current presentation and hides the output. Stops the current presentation and hides the output.
""" """
log.debug(u'stop_presentation') log.debug(u'stop_presentation')
self.presentation.SlideShowWindow.View.Exit() try:
self.presentation.SlideShowWindow.View.Exit()
except pywintypes.com_error:
log.error(u'COM error while in stop_presentation')
log.error(e)
if os.name == u'nt': if os.name == u'nt':
def start_presentation(self): def start_presentation(self):
@ -268,7 +290,9 @@ class PowerpointDocument(PresentationDocument):
ppt_window.Height = rect.height() * 72 / dpi ppt_window.Height = rect.height() * 72 / dpi
ppt_window.Left = rect.x() * 72 / dpi ppt_window.Left = rect.x() * 72 / dpi
ppt_window.Width = rect.width() * 72 / dpi ppt_window.Width = rect.width() * 72 / dpi
# Powerpoint 2013 pops up when starting a file, so we minimize it again
if self.presentation.Application.Version == u'15.0':
self.presentation.ActiveWindow.WindowState = 2
def get_slide_number(self): def get_slide_number(self):
""" """
@ -279,7 +303,9 @@ class PowerpointDocument(PresentationDocument):
ret = self.presentation.SlideShowWindow.View.CurrentShowPosition ret = self.presentation.SlideShowWindow.View.CurrentShowPosition
except pywintypes.com_error: except pywintypes.com_error:
ret = 0 ret = 0
log.error('COM error while in get_slide_number') log.error(u'COM error while in get_slide_number')
log.error(e)
self.show_error_msg()
return ret return ret
def get_slide_count(self): def get_slide_count(self):
@ -291,7 +317,9 @@ class PowerpointDocument(PresentationDocument):
ret = self.presentation.Slides.Count ret = self.presentation.Slides.Count
except pywintypes.com_error: except pywintypes.com_error:
ret = 0 ret = 0
log.error('COM error while in get_slide_count') log.error(u'COM error while in get_slide_count')
log.error(e)
self.show_error_msg()
return ret return ret
def goto_slide(self, slideno): def goto_slide(self, slideno):
@ -302,7 +330,9 @@ class PowerpointDocument(PresentationDocument):
try: try:
self.presentation.SlideShowWindow.View.GotoSlide(slideno) self.presentation.SlideShowWindow.View.GotoSlide(slideno)
except pywintypes.com_error: except pywintypes.com_error:
log.error('COM error while in goto_slide') log.error(u'COM error while in goto_slide')
log.error(e)
self.show_error_msg()
def next_step(self): def next_step(self):
""" """
@ -312,7 +342,10 @@ class PowerpointDocument(PresentationDocument):
try: try:
self.presentation.SlideShowWindow.View.Next() self.presentation.SlideShowWindow.View.Next()
except pywintypes.com_error: except pywintypes.com_error:
log.error('COM error while in next_step') log.error(u'COM error while in next_step')
log.error(e)
self.show_error_msg()
return
if self.get_slide_number() > self.get_slide_count(): if self.get_slide_number() > self.get_slide_count():
self.previous_step() self.previous_step()
@ -323,8 +356,10 @@ class PowerpointDocument(PresentationDocument):
log.debug(u'previous_step') log.debug(u'previous_step')
try: try:
self.presentation.SlideShowWindow.View.Previous() self.presentation.SlideShowWindow.View.Previous()
except pywintypes.com_error: except pywintypes.com_error as e:
log.error('COM error while in previous_step') log.error(u'COM error while in previous_step')
log.error(e)
self.show_error_msg()
def get_slide_text(self, slide_no): def get_slide_text(self, slide_no):
""" """
@ -345,6 +380,17 @@ class PowerpointDocument(PresentationDocument):
return _get_text_from_shapes( return _get_text_from_shapes(
self.presentation.Slides(slide_no).NotesPage.Shapes) self.presentation.Slides(slide_no).NotesPage.Shapes)
def show_error_msg(self):
"""
Close presentation and display an error message.
"""
self.stop_presentation()
self.close_presentation()
critical_error_message_box(UiStrings().Error, translate('PresentationPlugin.PowerpointDocument',
'An error occurred in the Powerpoint integration '
'and the presentation will be closed. '
'Reload the presentation if you wish to present it.'))
def _get_text_from_shapes(shapes): def _get_text_from_shapes(shapes):
""" """
Returns any text extracted from the shapes on a presentation slide. Returns any text extracted from the shapes on a presentation slide.