8355:8a7677a63c8d | 8356:68ec9c3d4de5 |
---|---|
7 Module implementing a dialog to enter the data for a new property. | 7 Module implementing a dialog to enter the data for a new property. |
8 """ | 8 """ |
9 | 9 |
10 from PyQt6.QtWidgets import QDialog | 10 from PyQt6.QtWidgets import QDialog |
11 | 11 |
12 from E5Gui.E5PathPicker import E5PathPickerModes | 12 from E5Gui.EricPathPicker import EricPathPickerModes |
13 | 13 |
14 from .Ui_SvnPropSetDialog import Ui_SvnPropSetDialog | 14 from .Ui_SvnPropSetDialog import Ui_SvnPropSetDialog |
15 | 15 |
16 | 16 |
17 class SvnPropSetDialog(QDialog, Ui_SvnPropSetDialog): | 17 class SvnPropSetDialog(QDialog, Ui_SvnPropSetDialog): |
25 @param parent parent widget (QWidget) | 25 @param parent parent widget (QWidget) |
26 """ | 26 """ |
27 super().__init__(parent) | 27 super().__init__(parent) |
28 self.setupUi(self) | 28 self.setupUi(self) |
29 | 29 |
30 self.propFilePicker.setMode(E5PathPickerModes.OPEN_FILE_MODE) | 30 self.propFilePicker.setMode(EricPathPickerModes.OPEN_FILE_MODE) |
31 | 31 |
32 def getData(self): | 32 def getData(self): |
33 """ | 33 """ |
34 Public slot used to retrieve the data entered into the dialog. | 34 Public slot used to retrieve the data entered into the dialog. |
35 | 35 |