16 from E5Gui import E5MessageBox |
16 from E5Gui import E5MessageBox |
17 |
17 |
18 import UI.PixmapCache |
18 import UI.PixmapCache |
19 |
19 |
20 |
20 |
|
21 # TODO: make the histories containing tuples with format index and text |
|
22 # TODO: add more format types (Dec, Oct, Bin) |
|
23 # TODO: add input validators to limit the find/replace input (use QRegExpValidator) |
21 class HexEditSearchReplaceWidget(QWidget): |
24 class HexEditSearchReplaceWidget(QWidget): |
22 """ |
25 """ |
23 Class implementing a search and replace widget for the hex editor. |
26 Class implementing a search and replace widget for the hex editor. |
24 """ |
27 """ |
25 def __init__(self, editor, replace=False, parent=None): |
28 def __init__(self, editor, replace=False, parent=None): |