HexTool/mainwindow.ui
2018-05-30 22:44:36 +08:00

423 lines
11 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>570</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>131</height>
</rect>
</property>
<property name="title">
<string>格式选项</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_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 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 class="QGroupBox" name="gb_trans">
<property name="geometry">
<rect>
<x>370</x>
<y>410</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 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>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections/>
</ui>