def start(self, model): self.__wgncListener.start(model) g_wgncProvider.showNoMarkedNots() g_wgncProvider.setEnabled(True) for listener in self.__clanListeners: listener.start(model) self.__wgncListener.onProviderEnabled() return super(_WGNCListenersContainer, self).start(model)
def start(self, model): result = super(WGNCListener, self).start(model) g_wgncEvents.onItemShowByDefault += self.__onItemShowByDefault g_wgncEvents.onItemShowByAction += self.__onItemShowByAction g_wgncEvents.onItemUpdatedByAction += self.__onItemUpdatedByAction addNotification = model.collection.addItem for notification in g_wgncProvider.getMarkedNots(): popUp = notification.getItemByType(wgnc_settings.WGNC_GUI_TYPE.POP_UP) if popUp is None: continue addNotification(WGNCPopUpDecorator(notification.notID, popUp)) self.__offset = 0.1 g_wgncProvider.showNoMarkedNots() g_wgncProvider.setEnabled(True) self.__offset = 0 return result
def start(self, model): result = super(WGNCListener, self).start(model) g_wgncEvents.onItemShowByDefault += self.__onItemShowByDefault g_wgncEvents.onItemShowByAction += self.__onItemShowByAction g_wgncEvents.onItemUpdatedByAction += self.__onItemUpdatedByAction addNotification = model.collection.addItem for notification in g_wgncProvider.getMarkedNots(): popUp = notification.getItemByType( wgnc_settings.WGNC_GUI_TYPE.POP_UP) if popUp is None: continue addNotification(WGNCPopUpDecorator(notification.notID, popUp)) self.__offset = 0.1 g_wgncProvider.showNoMarkedNots() g_wgncProvider.setEnabled(True) self.__offset = 0 return result