This is Qt widget for display binary data in traditional hex-editor style. This widget doesn`t have any editing capabilities. Only viewing and copying.
- cd QHexView
- mkdir build
- cd build
- qmake ../example/qhexview.pro
- make
...
QByteArray data;
...
QHexView *phexView = new QHexView;
...
phexView -> setData(data);
...