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 import Utilities |
|
16 from eric7.EricGui import EricPixmapCache |
15 from eric7.EricWidgets import EricFileDialog |
17 from eric7.EricWidgets import EricFileDialog |
16 |
18 |
17 from .Ui_GitArchiveDataDialog import Ui_GitArchiveDataDialog |
19 from .Ui_GitArchiveDataDialog import Ui_GitArchiveDataDialog |
18 |
|
19 from eric7.EricGui import EricPixmapCache |
|
20 from eric7 import Utilities |
|
21 |
20 |
22 |
21 |
23 class GitArchiveDataDialog(QDialog, Ui_GitArchiveDataDialog): |
22 class GitArchiveDataDialog(QDialog, Ui_GitArchiveDataDialog): |
24 """ |
23 """ |
25 Class implementing a dialog to enter the data for the creation of an |
24 Class implementing a dialog to enter the data for the creation of an |