本文整理汇总了Python中jarabe.frame.notification.NotificationIcon.show_badge方法的典型用法代码示例。如果您正苦于以下问题:Python NotificationIcon.show_badge方法的具体用法?Python NotificationIcon.show_badge怎么用?Python NotificationIcon.show_badge使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jarabe.frame.notification.NotificationIcon
的用法示例。
在下文中一共展示了NotificationIcon.show_badge方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __notification_received_cb
# 需要导入模块: from jarabe.frame.notification import NotificationIcon [as 别名]
# 或者: from jarabe.frame.notification.NotificationIcon import show_badge [as 别名]
def __notification_received_cb(self, **kwargs):
logging.debug('__notification_received_cb')
icon = NotificationIcon()
icon.show_badge()
icon.connect('button-release-event', self.__button_release_event_cb)
hints = kwargs['hints']
icon_file_name = hints.get('x-sugar-icon-file-name', '')
icon_name = hints.get('x-sugar-icon-name', '')
if icon_file_name:
icon.props.icon_filename = icon_file_name
elif icon_name:
icon.props.icon_name = icon_name
else:
icon.props.icon_name = 'application-octet-stream'
icon_colors = hints.get('x-sugar-icon-colors', '')
if not icon_colors:
icon_colors = profile.get_color()
icon.props.xo_color = icon_colors
duration = kwargs.get('expire_timeout', -1)
if duration == -1:
duration = NOTIFICATION_DURATION
self.add_notification(icon, Gtk.CornerType.TOP_LEFT, duration)