1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:37:43 +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

@ -116,6 +116,29 @@ bool HexEditor::copy_selected_text_to_clipboard()
return true;
}
bool HexEditor::copy_selected_hex_to_clipboard_as_c_code()
{
if (m_selection_start == -1 || m_selection_end == -1 || (m_selection_end - m_selection_start) < 0 || m_buffer.is_empty())
return false;
StringBuilder output_string_builder;
output_string_builder.appendf("unsigned char raw_data[%d] = {\n", (m_selection_end - m_selection_start) + 1);
output_string_builder.append(" ");
for (int i = m_selection_start, j = 1; i <= m_selection_end; i++, j++) {
output_string_builder.appendf("0x%02X", m_buffer.data()[i]);
if (i != m_selection_end)
output_string_builder.append(", ");
if ((j % 12) == 0) {
output_string_builder.append("\n");
output_string_builder.append(" ");
}
}
output_string_builder.append("\n};\n");
GClipboard::the().set_data(output_string_builder.to_string());
return true;
}
void HexEditor::set_bytes_per_row(int bytes_per_row)
{
m_bytes_per_row = bytes_per_row;