1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:27:35 +00:00

HexEditor: Add 'Select All' action

This commit is contained in:
Brendan Coles 2021-05-22 07:44:10 +00:00 committed by Ali Mohammad Pur
parent ee5cf92b3d
commit d1623350b5
3 changed files with 22 additions and 4 deletions

View file

@ -33,6 +33,7 @@ public:
void fill_selection(u8 fill_byte);
bool write_to_file(const String& path);
void select_all();
bool has_selection() const { return !(m_selection_start == -1 || m_selection_end == -1 || (m_selection_end - m_selection_start) < 0 || m_buffer.is_empty()); }
bool copy_selected_text_to_clipboard();
bool copy_selected_hex_to_clipboard();
@ -42,6 +43,7 @@ public:
void set_bytes_per_row(int);
void set_position(int position);
void highlight(int start, int end);
int find_and_highlight(ByteBuffer& needle, int start = 0);
Function<void(int, EditMode, int, int)> on_status_change; // position, edit mode, selection start, selection end
Function<void()> on_change;