26 Constructor |
26 Constructor |
27 |
27 |
28 @param bookmark reference to the bookmark to be shown (Bookmark) |
28 @param bookmark reference to the bookmark to be shown (Bookmark) |
29 @param parent reference to the parent widget (QWidget) |
29 @param parent reference to the parent widget (QWidget) |
30 """ |
30 """ |
31 QDialog.__init__(self, parent) |
31 super().__init__(parent) |
32 self.setupUi(self) |
32 self.setupUi(self) |
33 |
33 |
34 self.__bookmark = bookmark |
34 self.__bookmark = bookmark |
35 |
35 |
36 self.icon.setPixmap(UI.PixmapCache.getPixmap("bookmark32.png")) |
36 self.icon.setPixmap(UI.PixmapCache.getPixmap("bookmark32.png")) |