当前位置: 首页>>代码示例>>Python>>正文


Python ServiceItem.shortname方法代码示例

本文整理汇总了Python中openlp.core.lib.ServiceItem.shortname方法的典型用法代码示例。如果您正苦于以下问题:Python ServiceItem.shortname方法的具体用法?Python ServiceItem.shortname怎么用?Python ServiceItem.shortname使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在openlp.core.lib.ServiceItem的用法示例。


在下文中一共展示了ServiceItem.shortname方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: onReplaceClick

# 需要导入模块: from openlp.core.lib import ServiceItem [as 别名]
# 或者: from openlp.core.lib.ServiceItem import shortname [as 别名]
 def onReplaceClick(self):
     """
     Called to replace Live background with the media selected.
     """
     if check_item_selected(self.listView,
             translate('MediaPlugin.MediaItem', 'You must select a media file to replace the background with.')):
         item = self.listView.currentItem()
         filename = item.data(QtCore.Qt.UserRole)
         if os.path.exists(filename):
             service_item = ServiceItem()
             service_item.title = u'webkit'
             service_item.shortname = service_item.title
             (path, name) = os.path.split(filename)
             service_item.add_from_command(path, name,CLAPPERBOARD)
             if self.media_controller.video(DisplayControllerType.Live, service_item,
                     videoBehindText=True):
                 self.resetAction.setVisible(True)
             else:
                 critical_error_message_box(UiStrings().LiveBGError,
                     translate('MediaPlugin.MediaItem', 'There was no display item to amend.'))
         else:
             critical_error_message_box(UiStrings().LiveBGError,
                 translate('MediaPlugin.MediaItem',
                 'There was a problem replacing your background, the media file "%s" no longer exists.') % filename)
开发者ID:marmyshev,项目名称:transitions,代码行数:26,代码来源:mediaitem.py


注:本文中的openlp.core.lib.ServiceItem.shortname方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。