1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>WindowAppLogView</class>
- <widget class="QWidget" name="WindowAppLogView">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>710</width>
- <height>532</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>WindowOutput</string>
- </property>
- <widget class="QTextEdit" name="textEdit">
- <property name="geometry">
- <rect>
- <x>2</x>
- <y>28</y>
- <width>256</width>
- <height>192</height>
- </rect>
- </property>
- </widget>
- <widget class="QComboBox" name="logMode">
- <property name="geometry">
- <rect>
- <x>2</x>
- <y>2</y>
- <width>74</width>
- <height>20</height>
- </rect>
- </property>
- <item>
- <property name="text">
- <string>ALL</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Debug</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Info</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Warning</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Critical</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Fatal</string>
- </property>
- </item>
- </widget>
- </widget>
- <layoutdefault spacing="6" margin="11"/>
- <resources/>
- <connections/>
- </ui>
|