# qhexview **Repository Path**: lbing9002/qhexview ## Basic Information - **Project Name**: qhexview - **Description**: edb 子模块 - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-30 - **Last Updated**: 2024-05-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README A Qt widget designed to give a nice looking but traditional hex view. ![Screenshot](http://codef00.com/img/qhexview.png) Basic usage is trivial. Any `QIODevice` can be a data source for the widget. For example: #include "QHexView" #include #include int main(int argc, char *argv[]) { QApplication app(argc, argv); QHexView w; QFile file(argv[1]); file.open(QIODevice::ReadOnly); w.setData(&file); w.show(); app.exec(); return 0; } This is a complete program which will display in a nice hex view, the contents of a file.