Exemplo n.º 1
0
    def removeTopic(self):
        selectedItemIndex = self.ui.topicList.currentRow()
        selectedTopic = self.topicList[selectedItemIndex]
        classifier.removeTopic(selectedTopic)

        #Set the refreshDisplay status to true.
        self.parent.parent.refreshDisplay = True

        self.displayTopics()
Exemplo n.º 2
0
    def removeTopic(self):
        selectedIndex = self.ui.topicListCombo.currentIndex()
        selectedTopic = self.topicList[selectedIndex]
        classifier.removeTopic(selectedTopic)

        #Set the refreshDisplay status to true.
        self.parent.parent.refreshDisplay = True

        self.close()
Exemplo n.º 3
0
    def removeTopic(self):
        selectedItemIndex = self.ui.topicList.currentRow()
        selectedTopic = self.topicList[selectedItemIndex]
        classifier.removeTopic(selectedTopic)

        #Set the refreshDisplay status to true.
        self.parent.parent.refreshDisplay = True

        self.displayTopics()
Exemplo n.º 4
0
    def removeTopic(self):
        selectedIndex = self.ui.topicListCombo.currentIndex()
        selectedTopic = self.topicList[selectedIndex]
        classifier.removeTopic(selectedTopic)

        #Set the refreshDisplay status to true.
        self.parent.parent.refreshDisplay = True

        self.close()
Exemplo n.º 5
0
Arquivo: ui.py Projeto: Lanka/feedIO
 def removeTopic(self):
     selectedItemIndex = self.ui.topicList.currentRow()
     selectedTopic = self.topicList[selectedItemIndex]
     classifier.removeTopic(selectedTopic)
     self.displayTopics()
Exemplo n.º 6
0
Arquivo: ui.py Projeto: Lanka/feedIO
 def removeTopic(self):
     selectedIndex = self.ui.topicListCombo.currentIndex()
     selectedTopic = self.topicList[selectedIndex]
     classifier.removeTopic(selectedTopic)
     self.close()