예제 #1
0
파일: ui.py 프로젝트: onenonlycasper/feedIO
    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()
예제 #2
0
파일: ui.py 프로젝트: onenonlycasper/feedIO
    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()
예제 #3
0
파일: ui.py 프로젝트: vagner4work/feedIO
    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()
예제 #4
0
파일: ui.py 프로젝트: vagner4work/feedIO
    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()
예제 #5
0
파일: ui.py 프로젝트: Lanka/feedIO
 def removeTopic(self):
     selectedItemIndex = self.ui.topicList.currentRow()
     selectedTopic = self.topicList[selectedItemIndex]
     classifier.removeTopic(selectedTopic)
     self.displayTopics()
예제 #6
0
파일: ui.py 프로젝트: Lanka/feedIO
 def removeTopic(self):
     selectedIndex = self.ui.topicListCombo.currentIndex()
     selectedTopic = self.topicList[selectedIndex]
     classifier.removeTopic(selectedTopic)
     self.close()