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

HexEditor: Added a multi-label status bar, and a new copy option.

Make use of the new multi-label status bar, and added a menu
option to allow you to copy generated C code from a selection
to the clipboard.
This commit is contained in:
Brandon Scott 2019-10-23 17:47:42 -05:00 committed by Andreas Kling
parent a1c89c2734
commit e3fbd2fe60
3 changed files with 34 additions and 7 deletions

View file

@ -26,6 +26,7 @@ public:
bool copy_selected_text_to_clipboard();
bool copy_selected_hex_to_clipboard();
bool copy_selected_hex_to_clipboard_as_c_code();
int bytes_per_row() const { return m_bytes_per_row; }
void set_bytes_per_row(int);