5 |
5 |
6 """ |
6 """ |
7 Module implementing the eric plug-in wizard dialog. |
7 Module implementing the eric plug-in wizard dialog. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot, QDate |
10 from PyQt6.QtCore import QDate, pyqtSlot |
11 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
11 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
12 |
12 |
13 from eric7.EricWidgets.EricApplication import ericApp |
13 from eric7.EricWidgets.EricApplication import ericApp |
14 |
14 |
15 from .Ui_PluginWizardDialog import Ui_PluginWizardDialog |
|
16 |
|
17 from .Templates import ( |
15 from .Templates import ( |
18 mainTemplate, |
16 apiFilesTemplate, |
19 configTemplate0, |
17 configTemplate0, |
20 configTemplate1, |
18 configTemplate1, |
21 configTemplate2, |
19 configTemplate2, |
22 configTemplate3, |
20 configTemplate3, |
|
21 exeDisplayDataInfoTemplate, |
|
22 exeDisplayDataListTemplate, |
|
23 exeDisplayDataTemplate, |
|
24 mainTemplate, |
|
25 moduleSetupTemplate, |
23 onDemandTemplate, |
26 onDemandTemplate, |
24 previewPixmapTemplate, |
27 previewPixmapTemplate, |
25 moduleSetupTemplate, |
|
26 exeDisplayDataTemplate, |
|
27 exeDisplayDataInfoTemplate, |
|
28 exeDisplayDataListTemplate, |
|
29 apiFilesTemplate, |
|
30 ) |
28 ) |
|
29 from .Ui_PluginWizardDialog import Ui_PluginWizardDialog |
31 |
30 |
32 |
31 |
33 class PluginWizardDialog(QDialog, Ui_PluginWizardDialog): |
32 class PluginWizardDialog(QDialog, Ui_PluginWizardDialog): |
34 """ |
33 """ |
35 Class implementing the eric plug-in wizard dialog. |
34 Class implementing the eric plug-in wizard dialog. |