Dax89 / QHexView

A versatile Hexadecimal widget for Qt5

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add dataChanged signal

T-640 opened this issue · comments

commented

Whenever I make modifications to binary data inside hex view I need it to emit a signal notifying that this data has been changed. A signal like this inside QHexView class would be ideal:

void dataChanged (QByteArray);

Currently the closest equivalent is documentChanged() signal of QHexDocument, but it is a bit cumbersome to use. It is triggered “spuriously” (for this particular case) by changes in metadata as well, like parts of widget being highlighted.

commented

Added in version 5.0