6 """ |
6 """ |
7 Module implementing the Mercurial Options Dialog for a new project from the |
7 Module implementing the Mercurial Options Dialog for a new project from the |
8 repository. |
8 repository. |
9 """ |
9 """ |
10 |
10 |
11 from PyQt6.QtCore import pyqtSlot, QUrl |
11 from PyQt6.QtCore import QUrl, pyqtSlot |
12 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QComboBox |
12 from PyQt6.QtWidgets import QComboBox, QDialog, QDialogButtonBox |
13 |
|
14 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes |
|
15 |
|
16 from .Ui_HgNewProjectOptionsDialog import Ui_HgNewProjectOptionsDialog |
|
17 from .Config import ConfigHgSchemes |
|
18 |
13 |
19 from eric7 import Preferences, Utilities |
14 from eric7 import Preferences, Utilities |
20 from eric7.EricGui import EricPixmapCache |
15 from eric7.EricGui import EricPixmapCache |
|
16 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes |
|
17 |
|
18 from .Config import ConfigHgSchemes |
|
19 from .Ui_HgNewProjectOptionsDialog import Ui_HgNewProjectOptionsDialog |
21 |
20 |
22 |
21 |
23 class HgNewProjectOptionsDialog(QDialog, Ui_HgNewProjectOptionsDialog): |
22 class HgNewProjectOptionsDialog(QDialog, Ui_HgNewProjectOptionsDialog): |
24 """ |
23 """ |
25 Class implementing the Options Dialog for a new project from the |
24 Class implementing the Options Dialog for a new project from the |