50 self.setupUi(self) |
50 self.setupUi(self) |
51 |
51 |
52 self.__wasShown = False |
52 self.__wasShown = False |
53 self.__loaded = False |
53 self.__loaded = False |
54 self.__feeds = [] |
54 self.__feeds = [] |
55 self.__replies = {} # dict key is the id of the request object |
55 self.__replies = {} |
56 # dict value is a tuple of request and tree item |
56 # dict key is the id of the request object |
|
57 # dict value is a tuple of request and tree item |
57 |
58 |
58 self.feedsTree.setContextMenuPolicy(Qt.CustomContextMenu) |
59 self.feedsTree.setContextMenuPolicy(Qt.CustomContextMenu) |
59 self.feedsTree.customContextMenuRequested.connect( |
60 self.feedsTree.customContextMenuRequested.connect( |
60 self.__customContextMenuRequested) |
61 self.__customContextMenuRequested) |
61 self.feedsTree.itemActivated.connect(self.__itemActivated) |
62 self.feedsTree.itemActivated.connect(self.__itemActivated) |