10 import os |
10 import os |
11 |
11 |
12 from PyQt6.QtCore import pyqtSlot |
12 from PyQt6.QtCore import pyqtSlot |
13 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
13 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
14 |
14 |
15 from eric7.EricWidgets.EricApplication import ericApp |
|
16 from eric7.EricWidgets import EricMessageBox |
|
17 |
|
18 from .Ui_DotDesktopWizardDialog import Ui_DotDesktopWizardDialog |
|
19 |
|
20 from eric7 import Utilities |
15 from eric7 import Utilities |
21 from eric7.EricGui import EricPixmapCache |
16 from eric7.EricGui import EricPixmapCache |
|
17 from eric7.EricWidgets import EricMessageBox |
|
18 from eric7.EricWidgets.EricApplication import ericApp |
|
19 |
|
20 from .Ui_DotDesktopWizardDialog import Ui_DotDesktopWizardDialog |
22 |
21 |
23 |
22 |
24 class DotDesktopWizardDialog(QDialog, Ui_DotDesktopWizardDialog): |
23 class DotDesktopWizardDialog(QDialog, Ui_DotDesktopWizardDialog): |
25 """ |
24 """ |
26 Class implementing the .desktop wizard dialog. |
25 Class implementing the .desktop wizard dialog. |