mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:37:45 +00:00
HexEditor: Add find_all_strings() function
This commit is contained in:
parent
10ceeb092f
commit
90e9d1a0a1
3 changed files with 50 additions and 0 deletions
|
@ -50,6 +50,7 @@ public:
|
|||
int find(ByteBuffer& needle, int start = 0);
|
||||
int find_and_highlight(ByteBuffer& needle, int start = 0);
|
||||
Vector<Match> find_all(ByteBuffer& needle, int start = 0);
|
||||
Vector<Match> find_all_strings(size_t min_length = 4);
|
||||
Function<void(int, EditMode, int, int)> on_status_change; // position, edit mode, selection start, selection end
|
||||
Function<void()> on_change;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue