slint/examples/cpp/qt_viewer/interface.ui
Olivier Goffart a34074db11 Move the C++ specific example to the examples/cpp directory
The platform ones are not experimental so move out of tests
2023-07-31 12:58:38 +02:00

78 lines
1.9 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Interface</class>
<widget class="QWidget" name="Interface">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>512</width>
<height>524</height>
</rect>
</property>
<property name="windowTitle">
<string>Slint Viewer</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QPushButton" name="load_button">
<property name="text">
<string>Load</string>
</property>
</widget>
</item>
<item row="0" column="1" rowspan="7">
<widget class="QFrame" name="my_content">
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>Property name</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLineEdit" name="prop_name"/>
</item>
<item row="3" column="0">
<widget class="QLabel" name="label_2">
<property name="text">
<string>Value</string>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLineEdit" name="prop_value"/>
</item>
<item row="5" column="0">
<widget class="QPushButton" name="set_button">
<property name="text">
<string>Set</string>
</property>
</widget>
</item>
<item row="6" column="0">
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>233</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>