Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 536 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 536 Bytes

QHexView

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.

GUI

2015-03-29 13 49 54

Building the example

  • cd QHexView
  • mkdir build
  • cd build
  • qmake ../example/qhexview.pro
  • make

Usage

...
QByteArray data;
...
QHexView *phexView = new QHexView;
...
phexView -> setData(data);
...