virinext / QHexView

This is Qt widget for display binary data in traditional hex editor style

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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);
...

About

This is Qt widget for display binary data in traditional hex editor style

License:MIT License


Languages

Language:C++ 98.5%Language:QMake 1.5%