本文整理汇总了Python中calibre.gui2.dialogs.message_box.MessageBox.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python MessageBox.__init__方法的具体用法?Python MessageBox.__init__怎么用?Python MessageBox.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类calibre.gui2.dialogs.message_box.MessageBox
的用法示例。
在下文中一共展示了MessageBox.__init__方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from calibre.gui2.dialogs.message_box import MessageBox [as 别名]
# 或者: from calibre.gui2.dialogs.message_box.MessageBox import __init__ [as 别名]
def __init__(self, filename, parent=None):
MessageBox.__init__(
self, MessageBox.INFO, _('Downloading book'), _(
'The book {0} will be downloaded and added to your'
' calibre library automatically.').format(filename),
show_copy_button=False, parent=parent
)
self.toggle_checkbox.setChecked(True)
self.toggle_checkbox.setVisible(True)
self.toggle_checkbox.setText(_('Show this message again'))
self.toggle_checkbox.toggled.connect(self.show_again_changed)
self.resize_needed.emit()
示例2: __init__
# 需要导入模块: from calibre.gui2.dialogs.message_box import MessageBox [as 别名]
# 或者: from calibre.gui2.dialogs.message_box.MessageBox import __init__ [as 别名]
def __init__(self, parent, title, msg, log='', det_msg=''):
'''
:param log: An HTML log
:param title: The title for this popup
:param msg: The msg to display
:param det_msg: Detailed message
'''
MessageBox.__init__(self, MessageBox.INFO, title, msg,
det_msg=det_msg, show_copy_button=False,
parent=parent)
self.log = log
self.vlb = self.bb.addButton(_('View Report'), self.bb.ActionRole)
self.vlb.setIcon(QIcon(I('dialog_information.png')))
self.vlb.clicked.connect(self.show_log)
self.det_msg_toggle.setVisible(bool(det_msg))
self.vlb.setVisible(bool(log))