add cap mode

This commit is contained in:
xw_y_am 2018-05-30 22:44:36 +08:00
parent 0ef4ab6936
commit 7b94e714a3
5 changed files with 74 additions and 39 deletions

View File

@ -4,19 +4,21 @@
#include <QtGlobal> #include <QtGlobal>
Data::Data(QString &in) Data::Data(QString &in, bool cap)
{ {
this->txt = in; this->txt = in;
this->cap = cap;
} }
Data::Data(int len) Data::Data(int len, bool cap)
{ {
QByteArray rand; QByteArray rand;
QTime cur = QTime::currentTime(); QTime cur = QTime::currentTime();
qsrand(cur.second() * 1000 + cur.msec()); qsrand(cur.second() * 1000 + cur.msec());
while (len--) rand.append(qrand() % 256); while (len--) rand.append(qrand() % 256);
this->txt = QString(rand.toHex()); this->txt = QString(rand.toHex());
this->cap = cap;
} }
@ -28,7 +30,7 @@ void Data::to_hex()
void Data::clean() void Data::clean()
{ {
this->txt = this->txt.toLower().replace(QRegExp("(0x)|[^0-9a-f\n]"), ""); this->txt = this->txt.toLower().replace(QRegExp("(0x)|[^0-9a-fA-F\n]"), "");
} }
@ -42,6 +44,8 @@ QString Data::get(int unit, enum format fmt)
{ {
QStringList work; QStringList work;
if (this->cap) this->txt = this->txt.toUpper();
if (0 > unit) { if (0 > unit) {
work = this->txt.split('\n'); work = this->txt.split('\n');
} else { } else {
@ -75,7 +79,7 @@ QString Data::get(int unit, enum format fmt)
QStringList::iterator pick; QStringList::iterator pick;
for (pick = work.begin(); pick != work.end(); pick++) { for (pick = work.begin(); pick != work.end(); pick++) {
if ((*pick).size() & 1) (*pick) += "0"; if ((*pick).size() & 1) (*pick) += "0";
(*pick).replace(QRegExp("([0-9a-z]{2})"), st); (*pick).replace(QRegExp("([0-9a-fA-F]{2})"), st);
(*pick).replace(QRegExp(" +$"), ""); (*pick).replace(QRegExp(" +$"), "");
} }

5
data.h
View File

@ -7,9 +7,10 @@ class Data
{ {
public: public:
enum format { seq, space, prefix }; enum format { seq, space, prefix };
bool cap;
Data(QString &in); Data(QString &in, bool cap);
Data(int len); Data(int len, bool cap);
void clean(); void clean();
void to_hex(); void to_hex();
QString get_ascii(); QString get_ascii();

View File

@ -27,7 +27,7 @@ void MainWindow::unify_rand(QPlainTextEdit *to)
int len = ui->ln_rand_byte->text().toInt(); int len = ui->ln_rand_byte->text().toInt();
if (len > maxlen) return; if (len > maxlen) return;
Data d(len); Data d(len, ui->cb_cap->isChecked());
to->setPlainText(d.get(this->bpl, this->fmt)); to->setPlainText(d.get(this->bpl, this->fmt));
} }
@ -35,7 +35,7 @@ void MainWindow::unify_rand(QPlainTextEdit *to)
void MainWindow::unify_trns(QPlainTextEdit *from, QPlainTextEdit *to) void MainWindow::unify_trns(QPlainTextEdit *from, QPlainTextEdit *to)
{ {
QString get = from->toPlainText(); QString get = from->toPlainText();
Data d(get); Data d(get, ui->cb_cap->isChecked());
if (ui->rb_trans_hex->isChecked()) { if (ui->rb_trans_hex->isChecked()) {
d.to_hex(); d.to_hex();
to->setPlainText(d.get(this->bpl, this->fmt)); to->setPlainText(d.get(this->bpl, this->fmt));
@ -49,7 +49,7 @@ void MainWindow::unify_trns(QPlainTextEdit *from, QPlainTextEdit *to)
void MainWindow::unify_fmt(QPlainTextEdit *from, QPlainTextEdit *to) void MainWindow::unify_fmt(QPlainTextEdit *from, QPlainTextEdit *to)
{ {
QString get = from->toPlainText(); QString get = from->toPlainText();
Data d(get); Data d(get, ui->cb_cap->isChecked());
d.clean(); d.clean();
to->setPlainText(d.get(this->bpl, this->fmt)); to->setPlainText(d.get(this->bpl, this->fmt));
} }

View File

@ -47,6 +47,7 @@ class MainWindow : public QMainWindow
private: private:
Ui::MainWindow *ui; Ui::MainWindow *ui;
int bpl; int bpl;
bool cap;
Data::format fmt; Data::format fmt;
void unify_rand(QPlainTextEdit *to); void unify_rand(QPlainTextEdit *to);
void unify_trns(QPlainTextEdit *from, QPlainTextEdit *to); void unify_trns(QPlainTextEdit *from, QPlainTextEdit *to);

View File

@ -53,7 +53,7 @@
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>370</x> <x>370</x>
<y>500</y> <y>570</y>
<width>120</width> <width>120</width>
<height>111</height> <height>111</height>
</rect> </rect>
@ -135,38 +135,12 @@
<x>370</x> <x>370</x>
<y>160</y> <y>160</y>
<width>120</width> <width>120</width>
<height>161</height> <height>131</height>
</rect> </rect>
</property> </property>
<property name="title"> <property name="title">
<string>输出格式</string> <string>格式选项</string>
</property> </property>
<widget class="QPushButton" name="btn_fmt_left">
<property name="geometry">
<rect>
<x>10</x>
<y>100</y>
<width>75</width>
<height>23</height>
</rect>
</property>
<property name="text">
<string>←整理</string>
</property>
</widget>
<widget class="QPushButton" name="btn_fmt_right">
<property name="geometry">
<rect>
<x>40</x>
<y>130</y>
<width>75</width>
<height>23</height>
</rect>
</property>
<property name="text">
<string>整理→</string>
</property>
</widget>
<widget class="QWidget" name="verticalLayoutWidget_2"> <widget class="QWidget" name="verticalLayoutWidget_2">
<property name="geometry"> <property name="geometry">
<rect> <rect>
@ -203,12 +177,28 @@
</item> </item>
</layout> </layout>
</widget> </widget>
<widget class="QCheckBox" name="cb_cap">
<property name="geometry">
<rect>
<x>10</x>
<y>110</y>
<width>71</width>
<height>16</height>
</rect>
</property>
<property name="text">
<string>输出大写</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</widget> </widget>
<widget class="QGroupBox" name="gb_trans"> <widget class="QGroupBox" name="gb_trans">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>370</x> <x>370</x>
<y>340</y> <y>410</y>
<width>120</width> <width>120</width>
<height>141</height> <height>141</height>
</rect> </rect>
@ -385,6 +375,45 @@
</layout> </layout>
</widget> </widget>
</widget> </widget>
<widget class="QGroupBox" name="groupBox">
<property name="geometry">
<rect>
<x>370</x>
<y>310</y>
<width>120</width>
<height>80</height>
</rect>
</property>
<property name="title">
<string>格式整理</string>
</property>
<widget class="QPushButton" name="btn_fmt_right">
<property name="geometry">
<rect>
<x>40</x>
<y>50</y>
<width>75</width>
<height>23</height>
</rect>
</property>
<property name="text">
<string>整理→</string>
</property>
</widget>
<widget class="QPushButton" name="btn_fmt_left">
<property name="geometry">
<rect>
<x>10</x>
<y>20</y>
<width>75</width>
<height>23</height>
</rect>
</property>
<property name="text">
<string>←整理</string>
</property>
</widget>
</widget>
</widget> </widget>
</widget> </widget>
<layoutdefault spacing="6" margin="11"/> <layoutdefault spacing="6" margin="11"/>