2018-07-22 06:40:16 +08:00
|
|
|
<?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>
|
2018-11-02 05:02:52 +08:00
|
|
|
<width>900</width>
|
2018-07-24 03:25:02 +08:00
|
|
|
<height>600</height>
|
2018-07-22 06:40:16 +08:00
|
|
|
</rect>
|
|
|
|
</property>
|
|
|
|
<property name="windowTitle">
|
2018-09-30 04:05:08 +08:00
|
|
|
<string>Textractor</string>
|
2018-07-22 06:40:16 +08:00
|
|
|
</property>
|
2018-11-05 05:37:23 +08:00
|
|
|
<property name="styleSheet">
|
|
|
|
<string notr="true">
|
|
|
|
QObject
|
|
|
|
{
|
|
|
|
font: 10pt "MS Shell Dlg 2";
|
|
|
|
}
|
|
|
|
#textOutput
|
|
|
|
{
|
|
|
|
font: 13pt "MS Shell Dlg 2";
|
|
|
|
}
|
|
|
|
QPushButton, QComboBox
|
|
|
|
{
|
|
|
|
padding-top: 3px;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-left: 5px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
</string>
|
|
|
|
</property>
|
2018-07-23 07:53:51 +08:00
|
|
|
<widget class="QWidget" name="centralWidget">
|
2018-11-02 05:02:52 +08:00
|
|
|
<layout class="QHBoxLayout">
|
2018-07-24 03:25:02 +08:00
|
|
|
<item>
|
2018-12-15 11:26:49 +08:00
|
|
|
<widget class="QFrame" name="processFrame">
|
2018-11-02 05:02:52 +08:00
|
|
|
<property name="enabled">
|
|
|
|
<bool>true</bool>
|
2018-07-24 03:25:02 +08:00
|
|
|
</property>
|
2018-12-15 11:26:49 +08:00
|
|
|
<layout class="QVBoxLayout" name="processLayout">
|
2018-07-25 10:00:10 +08:00
|
|
|
<property name="leftMargin">
|
2018-11-02 05:02:52 +08:00
|
|
|
<number>0</number>
|
2018-07-25 10:00:10 +08:00
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
2018-11-02 05:02:52 +08:00
|
|
|
<number>0</number>
|
2018-07-25 10:00:10 +08:00
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
2018-11-02 05:02:52 +08:00
|
|
|
<number>0</number>
|
2018-07-25 10:00:10 +08:00
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
2018-11-02 05:02:52 +08:00
|
|
|
<number>0</number>
|
2018-07-25 10:00:10 +08:00
|
|
|
</property>
|
2018-07-24 13:57:54 +08:00
|
|
|
<item>
|
2018-11-02 05:02:52 +08:00
|
|
|
<widget class="QComboBox" name="processCombo">
|
|
|
|
<property name="editable">
|
|
|
|
<bool>false</bool>
|
2018-07-25 10:00:10 +08:00
|
|
|
</property>
|
2018-11-02 05:02:52 +08:00
|
|
|
<property name="insertPolicy">
|
|
|
|
<enum>QComboBox::InsertAtBottom</enum>
|
2018-07-25 01:39:02 +08:00
|
|
|
</property>
|
2018-11-02 05:02:52 +08:00
|
|
|
<property name="sizeAdjustPolicy">
|
|
|
|
<enum>QComboBox::AdjustToContents</enum>
|
2018-07-25 10:00:10 +08:00
|
|
|
</property>
|
2018-07-25 01:39:02 +08:00
|
|
|
</widget>
|
|
|
|
</item>
|
2018-07-24 03:25:02 +08:00
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
</item>
|
2018-11-02 05:02:52 +08:00
|
|
|
<item>
|
|
|
|
<layout class="QVBoxLayout">
|
|
|
|
<item>
|
|
|
|
<widget class="QComboBox" name="ttCombo">
|
|
|
|
<property name="editable">
|
|
|
|
<bool>false</bool>
|
|
|
|
</property>
|
|
|
|
<property name="maxVisibleItems">
|
|
|
|
<number>50</number>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<widget class="QPlainTextEdit" name="textOutput">
|
|
|
|
<property name="readOnly">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</item>
|
2018-07-24 03:25:02 +08:00
|
|
|
</layout>
|
2018-07-23 07:53:51 +08:00
|
|
|
</widget>
|
2018-07-22 06:40:16 +08:00
|
|
|
</widget>
|
2018-11-02 06:54:28 +08:00
|
|
|
<layoutdefault spacing="6" margin="6"/>
|
2018-07-22 06:40:16 +08:00
|
|
|
<resources/>
|
|
|
|
<connections/>
|
|
|
|
</ui>
|