コード例 #1
0
 def enable(self):
     CustomNotifications.enable(self)
     self.register_custom_blink_notification(
         "TorrentFinishedEvent", self._on_torrent_finished_event_blink)
     self.register_custom_sound_notification(
         "TorrentFinishedEvent", self._on_torrent_finished_event_sound)
     self.register_custom_popup_notification(
         "TorrentFinishedEvent", self._on_torrent_finished_event_popup)
コード例 #2
0
ファイル: gtkui.py プロジェクト: s0undt3ch/Deluge
 def enable(self):
     CustomNotifications.enable(self)
     self.register_custom_blink_notification(
         "TorrentFinishedEvent", self._on_torrent_finished_event_blink
     )
     self.register_custom_sound_notification(
         "TorrentFinishedEvent", self._on_torrent_finished_event_sound
     )
     self.register_custom_popup_notification(
         "TorrentFinishedEvent", self._on_torrent_finished_event_popup
     )
コード例 #3
0
 def disable(self):
     self.deregister_custom_email_notification('TorrentFinishedEvent')
     CustomNotifications.disable(self)
コード例 #4
0
 def enable(self):
     CustomNotifications.enable(self)
     self.register_custom_email_notification(
         'TorrentFinishedEvent', self._on_torrent_finished_event)
コード例 #5
0
 def disable(self):
     self.deregister_custom_blink_notification("TorrentFinishedEvent")
     self.deregister_custom_sound_notification("TorrentFinishedEvent")
     self.deregister_custom_popup_notification("TorrentFinishedEvent")
     CustomNotifications.disable(self)
コード例 #6
0
ファイル: core.py プロジェクト: Ashod/Deluge
 def disable(self):
     self.deregister_custom_email_notification('TorrentFinishedEvent')
     CustomNotifications.disable(self)
コード例 #7
0
ファイル: core.py プロジェクト: Ashod/Deluge
 def enable(self):
     CustomNotifications.enable(self)
     self.register_custom_email_notification('TorrentFinishedEvent',
                                             self._on_torrent_finished_event)