5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog show a list of all available migrations. |
7 Module implementing a dialog show a list of all available migrations. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot, Qt, QProcess, QTimer, QPoint |
10 from PyQt6.QtCore import QPoint, QProcess, Qt, QTimer, pyqtSlot |
11 from PyQt6.QtWidgets import ( |
11 from PyQt6.QtWidgets import ( |
|
12 QAbstractButton, |
|
13 QAbstractItemView, |
12 QDialog, |
14 QDialog, |
13 QDialogButtonBox, |
15 QDialogButtonBox, |
14 QAbstractButton, |
|
15 QHeaderView, |
16 QHeaderView, |
16 QTreeWidgetItem, |
|
17 QMenu, |
|
18 QAbstractItemView, |
|
19 QInputDialog, |
17 QInputDialog, |
20 QLineEdit, |
18 QLineEdit, |
|
19 QMenu, |
|
20 QTreeWidgetItem, |
21 ) |
21 ) |
22 |
22 |
23 from eric7 import Preferences |
23 from eric7 import Preferences |
24 from eric7.EricWidgets import EricMessageBox |
24 from eric7.EricWidgets import EricMessageBox |
25 |
25 |