init code
This commit is contained in:
parent
7d14f0a114
commit
31b652a43f
1
.gitignore
vendored
Executable file
1
.gitignore
vendored
Executable file
@ -0,0 +1 @@
|
||||
*.pro.user
|
84
data.cpp
Normal file
84
data.cpp
Normal file
@ -0,0 +1,84 @@
|
||||
#include "data.h"
|
||||
|
||||
#include <QTime>
|
||||
#include <QtGlobal>
|
||||
|
||||
|
||||
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');
|
||||
}
|
||||
|
22
data.h
Normal file
22
data.h
Normal file
@ -0,0 +1,22 @@
|
||||
#ifndef DATA_H
|
||||
#define DATA_H
|
||||
|
||||
#include <QString>
|
||||
|
||||
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
|
39
hex_tool.pro
Normal file
39
hex_tool.pro
Normal file
@ -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
|
5
icon.qrc
Normal file
5
icon.qrc
Normal file
@ -0,0 +1,5 @@
|
||||
<RCC>
|
||||
<qresource prefix="/new/icon">
|
||||
<file>hex.ico</file>
|
||||
</qresource>
|
||||
</RCC>
|
13
main.cpp
Normal file
13
main.cpp
Normal file
@ -0,0 +1,13 @@
|
||||
#include "mainwindow.h"
|
||||
#include <QApplication>
|
||||
|
||||
#include <QDebug>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QApplication a(argc, argv);
|
||||
MainWindow w;
|
||||
w.show();
|
||||
|
||||
return a.exec();
|
||||
}
|
124
mainwindow.cpp
Normal file
124
mainwindow.cpp
Normal file
@ -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();
|
||||
}
|
56
mainwindow.h
Normal file
56
mainwindow.h
Normal file
@ -0,0 +1,56 @@
|
||||
#ifndef MAINWINDOW_H
|
||||
#define MAINWINDOW_H
|
||||
|
||||
#include <QMainWindow>
|
||||
#include <QtWidgets/QPlainTextEdit>
|
||||
#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
|
393
mainwindow.ui
Normal file
393
mainwindow.ui
Normal file
@ -0,0 +1,393 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>MainWindow</class>
|
||||
<widget class="QMainWindow" name="MainWindow">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>1120</width>
|
||||
<height>700</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>1120</width>
|
||||
<height>700</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>1120</width>
|
||||
<height>700</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>十六进制数据整理工具</string>
|
||||
</property>
|
||||
<widget class="QWidget" name="centralWidget">
|
||||
<widget class="QPlainTextEdit" name="txt_left">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>10</x>
|
||||
<y>10</y>
|
||||
<width>350</width>
|
||||
<height>680</height>
|
||||
</rect>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QPlainTextEdit" name="txt_right">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>500</x>
|
||||
<y>10</y>
|
||||
<width>610</width>
|
||||
<height>680</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="plainText">
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QGroupBox" name="gb_rand">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>370</x>
|
||||
<y>500</y>
|
||||
<width>120</width>
|
||||
<height>111</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>生成随机数</string>
|
||||
</property>
|
||||
<widget class="QPushButton" name="btn_rand_left">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>10</x>
|
||||
<y>50</y>
|
||||
<width>75</width>
|
||||
<height>23</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>←生成</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QWidget" name="horizontalLayoutWidget_2">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>20</x>
|
||||
<y>20</y>
|
||||
<width>91</width>
|
||||
<height>22</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="hl_rand">
|
||||
<item>
|
||||
<widget class="QLineEdit" name="ln_rand_byte">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>50</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>100</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_3">
|
||||
<property name="text">
|
||||
<string>字节</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QPushButton" name="btn_rand_right">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>40</x>
|
||||
<y>80</y>
|
||||
<width>75</width>
|
||||
<height>23</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>生成→</string>
|
||||
</property>
|
||||
</widget>
|
||||
</widget>
|
||||
<widget class="QGroupBox" name="gb_pf">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>370</x>
|
||||
<y>160</y>
|
||||
<width>120</width>
|
||||
<height>161</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>输出格式</string>
|
||||
</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">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>10</x>
|
||||
<y>20</y>
|
||||
<width>109</width>
|
||||
<height>71</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="vl_fmt">
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rb_fmt_prfx">
|
||||
<property name="text">
|
||||
<string>每字节带前导0x</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rb_fmt_space">
|
||||
<property name="text">
|
||||
<string>每字节空格</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rb_fmt_seq">
|
||||
<property name="text">
|
||||
<string>每行连续输出</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
<widget class="QGroupBox" name="gb_trans">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>370</x>
|
||||
<y>340</y>
|
||||
<width>120</width>
|
||||
<height>141</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>ASCII转换</string>
|
||||
</property>
|
||||
<widget class="QWidget" name="verticalLayoutWidget_3">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>10</x>
|
||||
<y>20</y>
|
||||
<width>101</width>
|
||||
<height>41</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rb_trans_hex">
|
||||
<property name="text">
|
||||
<string>转为十六进制</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rb_trans_ascii">
|
||||
<property name="text">
|
||||
<string>转为ASCII</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QPushButton" name="btn_trans_left">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>10</x>
|
||||
<y>80</y>
|
||||
<width>75</width>
|
||||
<height>23</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>←转换</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QPushButton" name="btn_trans_right">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>40</x>
|
||||
<y>110</y>
|
||||
<width>75</width>
|
||||
<height>23</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>转换→</string>
|
||||
</property>
|
||||
</widget>
|
||||
</widget>
|
||||
<widget class="QGroupBox" name="gb_bl">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>370</x>
|
||||
<y>20</y>
|
||||
<width>120</width>
|
||||
<height>121</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>换行选项</string>
|
||||
</property>
|
||||
<property name="checkable">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<widget class="QWidget" name="verticalLayoutWidget">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>10</x>
|
||||
<y>20</y>
|
||||
<width>103</width>
|
||||
<height>91</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="vl_bl">
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rb_bl_set">
|
||||
<property name="text">
|
||||
<string>增加换行</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="hl_bl">
|
||||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="contextMenuPolicy">
|
||||
<enum>Qt::DefaultContextMenu</enum>
|
||||
</property>
|
||||
<property name="autoFillBackground">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="frameShadow">
|
||||
<enum>QFrame::Plain</enum>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>每</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLineEdit" name="ln_bl_byte">
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>27</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>16</string>
|
||||
</property>
|
||||
<property name="maxLength">
|
||||
<number>128</number>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="autoFillBackground">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>字节换行</string>
|
||||
</property>
|
||||
<property name="openExternalLinks">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rb_bl_none">
|
||||
<property name="text">
|
||||
<string>不换行</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rb_bl_keep">
|
||||
<property name="text">
|
||||
<string>保留原行</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
<layoutdefault spacing="6" margin="11"/>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
Loading…
x
Reference in New Issue
Block a user