HexTool/mainwindow.ui
xw_y_am@develop e88f2844f9 refactoring
2018-06-02 23:33:18 +08:00

408 lines
10 KiB
XML

<?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>510</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>150</y>
<width>120</width>
<height>131</height>
</rect>
</property>
<property name="title">
<string>HEX格式选项</string>
</property>
<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_cpre">
<property name="text">
<string>每字节带前导0x</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="rb_fmt_sepa">
<property name="text">
<string>每字节空格</string>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="rb_fmt_cont">
<property name="text">
<string>每行连续输出</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QCheckBox" name="cb_fmt_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 class="QGroupBox" name="gb_trans">
<property name="geometry">
<rect>
<x>370</x>
<y>300</y>
<width>120</width>
<height>191</height>
</rect>
</property>
<property name="title">
<string>数据格式转换</string>
</property>
<widget class="QWidget" name="verticalLayoutWidget_3">
<property name="geometry">
<rect>
<x>10</x>
<y>20</y>
<width>103</width>
<height>106</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_3">
<item>
<widget class="QRadioButton" name="rb_hex2hex">
<property name="text">
<string>HEX → HEX</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="rb_ascii2hex">
<property name="text">
<string>ASCII → HEX</string>
</property>
<property name="checked">
<bool>false</bool>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="rb_hex2ascii">
<property name="text">
<string>HEX → ASCII</string>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="rb_base2hex">
<property name="text">
<string>Base64 → HEX</string>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="rb_hex2base">
<property name="text">
<string>HEX → Base64</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QPushButton" name="btn_trans_left">
<property name="geometry">
<rect>
<x>10</x>
<y>130</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>160</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>10</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="lbl_blset_1">
<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="lbl_lbset_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>