5 |
5 |
6 """ |
6 """ |
7 Module implementing a movement (goto) widget for the hex editor. |
7 Module implementing a movement (goto) widget for the hex editor. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot, Qt, QRegularExpression |
10 from PyQt6.QtCore import QRegularExpression, Qt, pyqtSlot |
11 from PyQt6.QtGui import QRegularExpressionValidator |
11 from PyQt6.QtGui import QRegularExpressionValidator |
12 from PyQt6.QtWidgets import QWidget |
12 from PyQt6.QtWidgets import QWidget |
13 |
13 |
|
14 from eric7 import Globals |
|
15 from eric7.EricGui import EricPixmapCache |
|
16 |
14 from .Ui_HexEditGotoWidget import Ui_HexEditGotoWidget |
17 from .Ui_HexEditGotoWidget import Ui_HexEditGotoWidget |
15 |
|
16 from eric7.EricGui import EricPixmapCache |
|
17 from eric7 import Globals |
|
18 |
18 |
19 |
19 |
20 class HexEditGotoWidget(QWidget, Ui_HexEditGotoWidget): |
20 class HexEditGotoWidget(QWidget, Ui_HexEditGotoWidget): |
21 """ |
21 """ |
22 Class implementing a movement (goto) widget for the hex editor. |
22 Class implementing a movement (goto) widget for the hex editor. |