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

HexEditor: Added fill selection action.

Added the ability to fill the current selection with a given byte.
This commit is contained in:
Brandon Scott 2019-10-26 16:27:26 -05:00 committed by Andreas Kling
parent f947353a56
commit c77fe5161c
3 changed files with 23 additions and 0 deletions

View file

@ -44,6 +44,20 @@ void HexEditor::set_buffer(const ByteBuffer& buffer)
update_status();
}
void HexEditor::fill_selection(u8 fill_byte)
{
if (m_selection_start == -1 || m_selection_end == -1 || (m_selection_end - m_selection_start) < 0 || m_buffer.is_empty())
return;
for (int i = m_selection_start; i <= m_selection_end; i++) {
m_tracked_changes.set(i, m_buffer.data()[i]);
m_buffer.data()[i] = fill_byte;
}
update();
did_change();
}
void HexEditor::set_position(int position)
{
if (position > m_buffer.size())