src/eric7/HexEdit/HexEditGotoWidget.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9413
80c06d472826
child 9653
e67609152c5e
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
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.

eric ide

mercurial