18 |
18 |
19 from .Ui_SvnOptionsDialog import Ui_SvnOptionsDialog |
19 from .Ui_SvnOptionsDialog import Ui_SvnOptionsDialog |
20 from .Config import ConfigSvnProtocols |
20 from .Config import ConfigSvnProtocols |
21 |
21 |
22 import Utilities |
22 import Utilities |
|
23 import UI.PixmapCache |
23 |
24 |
24 |
25 |
25 class SvnOptionsDialog(QDialog, Ui_SvnOptionsDialog): |
26 class SvnOptionsDialog(QDialog, Ui_SvnOptionsDialog): |
26 """ |
27 """ |
27 Class implementing a dialog to enter options used to start a project in the |
28 Class implementing a dialog to enter options used to start a project in the |
35 @param project reference to the project object |
36 @param project reference to the project object |
36 @param parent parent widget (QWidget) |
37 @param parent parent widget (QWidget) |
37 """ |
38 """ |
38 super().__init__(parent) |
39 super().__init__(parent) |
39 self.setupUi(self) |
40 self.setupUi(self) |
|
41 |
|
42 self.vcsUrlButton.setIcon(UI.PixmapCache.getIcon("open.png")) |
40 |
43 |
41 self.vcsDirectoryCompleter = E5DirCompleter(self.vcsUrlEdit) |
44 self.vcsDirectoryCompleter = E5DirCompleter(self.vcsUrlEdit) |
42 |
45 |
43 self.project = project |
46 self.project = project |
44 |
47 |