38 @param parent parent widget of this dialog |
38 @param parent parent widget of this dialog |
39 """ |
39 """ |
40 super().__init__(parent) |
40 super().__init__(parent) |
41 self.setupUi(self) |
41 self.setupUi(self) |
42 |
42 |
43 self.outputDirButton.setIcon(UI.PixmapCache.getIcon("open.png")) |
43 self.outputFileButton.setIcon(UI.PixmapCache.getIcon("open.png")) |
44 self.ignoreDirButton.setIcon(UI.PixmapCache.getIcon("open.png")) |
44 self.ignoreDirButton.setIcon(UI.PixmapCache.getIcon("open.png")) |
45 |
45 |
46 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) |
46 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) |
47 for language in sorted( |
47 for language in sorted( |
48 DocumentationTools.supportedExtensionsDictForApis.keys()): |
48 DocumentationTools.supportedExtensionsDictForApis.keys()): |