def __notifyNewOutput(self):
     n = Notification(self.NEW_OUTPUT_NOTIFICATION, self)
     Notification.post(n)
 def __notifyStopped(self):
     n = Notification(self.STOPPED_NOTIFICATION, self)
     Notification.post(n)
 def __notifyNextDownload(self):
     n = Notification(self.NEXT_DOWNLOAD_NOTIFICATION, self)
     Notification.post(n)
 def __notifyDone(self):
     n = Notification(self.DONE_NOTIFICATION, self)
     Notification.post(n)