From 31b652a43f71eaa67ab30a46b440cc247916bb4c Mon Sep 17 00:00:00 2001 From: "xw_y_am@rmbp" Date: Mon, 2 Apr 2018 19:33:09 +0800 Subject: [PATCH] init code --- .gitignore | 1 + data.cpp | 84 +++++++++++ data.h | 22 +++ hex.ico | Bin 0 -> 3591 bytes hex_tool.pro | 39 +++++ icon.qrc | 5 + icon.rc | 1 + main.cpp | 13 ++ mainwindow.cpp | 124 ++++++++++++++++ mainwindow.h | 56 +++++++ mainwindow.ui | 393 +++++++++++++++++++++++++++++++++++++++++++++++++ 11 files changed, 738 insertions(+) create mode 100755 .gitignore create mode 100644 data.cpp create mode 100644 data.h create mode 100644 hex.ico create mode 100644 hex_tool.pro create mode 100644 icon.qrc create mode 100644 icon.rc create mode 100644 main.cpp create mode 100644 mainwindow.cpp create mode 100644 mainwindow.h create mode 100644 mainwindow.ui diff --git a/.gitignore b/.gitignore new file mode 100755 index 0000000..bcccadb --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.pro.user diff --git a/data.cpp b/data.cpp new file mode 100644 index 0000000..e4b6f40 --- /dev/null +++ b/data.cpp @@ -0,0 +1,84 @@ +#include "data.h" + +#include +#include + + +Data::Data(QString &in) +{ + this->txt = in; +} + + +Data::Data(int len) +{ + QByteArray rand; + QTime cur = QTime::currentTime(); + qsrand(cur.second() * 1000 + cur.msec()); + while (len--) rand.append(qrand() % 256); + this->txt = QString(rand.toHex()); +} + + +void Data::to_hex() +{ + this->txt = QString(this->txt.toLocal8Bit().toHex()); +} + + +void Data::clean() +{ + this->txt = this->txt.toLower().replace(QRegExp("(0x)|[^0-9a-f\n]"), ""); +} + + +QString Data::get_ascii() +{ + return QString(QByteArray::fromHex(this->txt.toLocal8Bit())); +} + + +QString Data::get(int unit, enum format fmt) +{ + QStringList work; + + if (0 > unit) { + work = this->txt.split('\n'); + } else { + this->txt.replace("\n", ""); + + if (unit) { + unit *= 2; + for (int i = 0; i < this->txt.size(); i += unit) { + work << this->txt.mid(i, unit); + } + } else { + work << this->txt; + } + } + + QString st; + + switch (fmt) { + case Data::seq: + return work.join('\n'); + case Data::space: + st = "\\1 "; + break; + case Data::prefix: + st = "0x\\1, "; + break; + default: + return ""; + } + + QStringList::iterator pick; + for (pick = work.begin(); pick != work.end(); pick++) { + if ((*pick).size() & 1) (*pick) += "0"; + (*pick).replace(QRegExp("([0-9a-z]{2})"), st); + (*pick).replace(QRegExp(" +$"), ""); + } + + return work.join('\n'); +} + diff --git a/data.h b/data.h new file mode 100644 index 0000000..e7d3ecf --- /dev/null +++ b/data.h @@ -0,0 +1,22 @@ +#ifndef DATA_H +#define DATA_H + +#include + +class Data +{ + public: + enum format { seq, space, prefix }; + + Data(QString &in); + Data(int len); + void clean(); + void to_hex(); + QString get_ascii(); + QString get(int unit, enum format fmt); + + private: + QString txt; +}; + +#endif // DATA_H diff --git a/hex.ico b/hex.ico new file mode 100644 index 0000000000000000000000000000000000000000..016d665474b4fdfa43d48e83bec33ef03b0758c2 GIT binary patch literal 3591 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 ArvLx| literal 0 HcmV?d00001 diff --git a/hex_tool.pro b/hex_tool.pro new file mode 100644 index 0000000..2e6e5bf --- /dev/null +++ b/hex_tool.pro @@ -0,0 +1,39 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2018-01-16T08:53:27 +# +#------------------------------------------------- + +QT += core gui + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +TARGET = hex_tool +TEMPLATE = app + +# The following define makes your compiler emit warnings if you use +# any feature of Qt which as been marked as deprecated (the exact warnings +# depend on your compiler). Please consult the documentation of the +# deprecated API in order to know how to port your code away from it. +DEFINES += QT_DEPRECATED_WARNINGS + +# You can also make your code fail to compile if you use deprecated APIs. +# In order to do so, uncomment the following line. +# You can also select to disable deprecated APIs only up to a certain version of Qt. +#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 + + +SOURCES += main.cpp\ + mainwindow.cpp \ + data.cpp + +HEADERS += mainwindow.h \ + data.h + +FORMS += mainwindow.ui + +DISTFILES += + +RESOURCES += \ + icon.qrc +RC_FILE = icon.rc diff --git a/icon.qrc b/icon.qrc new file mode 100644 index 0000000..f94aa9d --- /dev/null +++ b/icon.qrc @@ -0,0 +1,5 @@ + + + hex.ico + + diff --git a/icon.rc b/icon.rc new file mode 100644 index 0000000..d597160 --- /dev/null +++ b/icon.rc @@ -0,0 +1 @@ +IDI_ICON1 ICON "hex.ico" \ No newline at end of file diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..6ad6845 --- /dev/null +++ b/main.cpp @@ -0,0 +1,13 @@ +#include "mainwindow.h" +#include + +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + + return a.exec(); +} diff --git a/mainwindow.cpp b/mainwindow.cpp new file mode 100644 index 0000000..fb885a6 --- /dev/null +++ b/mainwindow.cpp @@ -0,0 +1,124 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" + +const int maxlen = 65536; + + +MainWindow::MainWindow(QWidget *parent) : + QMainWindow(parent), + ui(new Ui::MainWindow) +{ + this->bpl = 16; + this->fmt = Data::prefix; + + ui->setupUi(this); + setWindowIcon(QIcon("hex.ico")); +} + + +MainWindow::~MainWindow() +{ + delete ui; +} + + +void MainWindow::unify_rand(QPlainTextEdit *to) +{ + int len = ui->ln_rand_byte->text().toInt(); + if (len > maxlen) return; + + Data d(len); + to->setPlainText(d.get(this->bpl, this->fmt)); +} + + +void MainWindow::unify_trns(QPlainTextEdit *from, QPlainTextEdit *to) +{ + QString get = from->toPlainText(); + Data d(get); + if (ui->rb_trans_hex->isChecked()) { + d.to_hex(); + to->setPlainText(d.get(this->bpl, this->fmt)); + } else { + to->setPlainText(d.get_ascii()); + } +} + + + +void MainWindow::unify_fmt(QPlainTextEdit *from, QPlainTextEdit *to) +{ + QString get = from->toPlainText(); + Data d(get); + d.clean(); + to->setPlainText(d.get(this->bpl, this->fmt)); +} + + +void MainWindow::on_rb_bl_set_clicked() +{ + this->bpl = ui->ln_bl_byte->text().toInt(); + ui->ln_bl_byte->setEnabled(true); +} + +void MainWindow::on_rb_bl_none_clicked() +{ + this->bpl = 0; + ui->ln_bl_byte->setDisabled(true); +} + +void MainWindow::on_rb_bl_keep_clicked() +{ + this->bpl = -1; + ui->ln_bl_byte->setDisabled(true); +} + +void MainWindow::on_rb_fmt_prfx_clicked() +{ + this->fmt = Data::prefix; +} + +void MainWindow::on_rb_fmt_space_clicked() +{ + this->fmt = Data::space; +} + +void MainWindow::on_rb_fmt_seq_clicked() +{ + this->fmt = Data::seq; +} + +void MainWindow::on_btn_fmt_left_clicked() +{ + unify_fmt(ui->txt_right, ui->txt_left); +} + +void MainWindow::on_btn_fmt_right_clicked() +{ + unify_fmt(ui->txt_left, ui->txt_right); +} + +void MainWindow::on_btn_trans_left_clicked() +{ + unify_trns(ui->txt_right, ui->txt_left); +} + +void MainWindow::on_btn_trans_right_clicked() +{ + unify_trns(ui->txt_left, ui->txt_right); +} + +void MainWindow::on_btn_rand_left_clicked() +{ + unify_rand(ui->txt_left); +} + +void MainWindow::on_btn_rand_right_clicked() +{ + unify_rand(ui->txt_right); +} + +void MainWindow::on_ln_bl_byte_editingFinished() +{ + this->bpl = ui->ln_bl_byte->text().toInt(); +} diff --git a/mainwindow.h b/mainwindow.h new file mode 100644 index 0000000..e222925 --- /dev/null +++ b/mainwindow.h @@ -0,0 +1,56 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include +#include +#include "data.h" + +namespace Ui { +class MainWindow; +} + +class MainWindow : public QMainWindow +{ + Q_OBJECT + + public: + explicit MainWindow(QWidget *parent = 0); + ~MainWindow(); + + private slots: + void on_rb_bl_set_clicked(); + + void on_rb_bl_none_clicked(); + + void on_rb_bl_keep_clicked(); + + void on_rb_fmt_prfx_clicked(); + + void on_rb_fmt_space_clicked(); + + void on_rb_fmt_seq_clicked(); + + void on_btn_fmt_left_clicked(); + + void on_btn_fmt_right_clicked(); + + void on_btn_trans_left_clicked(); + + void on_btn_trans_right_clicked(); + + void on_btn_rand_left_clicked(); + + void on_btn_rand_right_clicked(); + + void on_ln_bl_byte_editingFinished(); + + private: + Ui::MainWindow *ui; + int bpl; + Data::format fmt; + void unify_rand(QPlainTextEdit *to); + void unify_trns(QPlainTextEdit *from, QPlainTextEdit *to); + void unify_fmt(QPlainTextEdit *from, QPlainTextEdit *to); +}; + +#endif // MAINWINDOW_H diff --git a/mainwindow.ui b/mainwindow.ui new file mode 100644 index 0000000..6b54cb8 --- /dev/null +++ b/mainwindow.ui @@ -0,0 +1,393 @@ + + + MainWindow + + + + 0 + 0 + 1120 + 700 + + + + + 1120 + 700 + + + + + 1120 + 700 + + + + 十六进制数据整理工具 + + + + + + 10 + 10 + 350 + 680 + + + + + + + 500 + 10 + 610 + 680 + + + + + + + + + + 370 + 500 + 120 + 111 + + + + 生成随机数 + + + + + 10 + 50 + 75 + 23 + + + + ←生成 + + + + + + 20 + 20 + 91 + 22 + + + + + + + + 0 + 0 + + + + + 50 + 16777215 + + + + 100 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + 字节 + + + + + + + + + 40 + 80 + 75 + 23 + + + + 生成→ + + + + + + + 370 + 160 + 120 + 161 + + + + 输出格式 + + + + + 10 + 100 + 75 + 23 + + + + ←整理 + + + + + + 40 + 130 + 75 + 23 + + + + 整理→ + + + + + + 10 + 20 + 109 + 71 + + + + + + + 每字节带前导0x + + + true + + + + + + + 每字节空格 + + + + + + + 每行连续输出 + + + + + + + + + + 370 + 340 + 120 + 141 + + + + ASCII转换 + + + + + 10 + 20 + 101 + 41 + + + + + + + 转为十六进制 + + + true + + + + + + + 转为ASCII + + + + + + + + + 10 + 80 + 75 + 23 + + + + ←转换 + + + + + + 40 + 110 + 75 + 23 + + + + 转换→ + + + + + + + 370 + 20 + 120 + 121 + + + + 换行选项 + + + false + + + + + 10 + 20 + 103 + 91 + + + + + + + 增加换行 + + + true + + + + + + + + + Qt::DefaultContextMenu + + + false + + + QFrame::Plain + + + + + + + + + + true + + + + 0 + 0 + + + + + 27 + 16777215 + + + + 16 + + + 128 + + + Qt::AlignCenter + + + + + + + false + + + 字节换行 + + + false + + + + + + + + + 不换行 + + + + + + + 保留原行 + + + + + + + + + + + +