123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>SwitchConfigDialog</class>
- <widget class="QDialog" name="SwitchConfigDialog">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>198</width>
- <height>184</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Dialog</string>
- </property>
- <layout class="QVBoxLayout" name="verticalLayout">
- <item>
- <widget class="QGroupBox" name="groupBox">
- <property name="title">
- <string>Switch Configuration:</string>
- </property>
- <layout class="QGridLayout" name="gridLayout">
- <item row="0" column="1">
- <widget class="QCheckBox" name="checkBox">
- <property name="text">
- <string>Latching</string>
- </property>
- </widget>
- </item>
- <item row="3" column="0" colspan="2">
- <widget class="QLineEdit" name="lineSwitchKey">
- <property name="text">
- <string/>
- </property>
- <property name="placeholderText">
- <string>Enter Keystroke</string>
- </property>
- <property name="clearButtonEnabled">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item row="9" column="1">
- <widget class="QPushButton" name="buttonApply">
- <property name="text">
- <string>Apply</string>
- </property>
- </widget>
- </item>
- <item row="7" column="0">
- <widget class="QLabel" name="labelLatch">
- <property name="text">
- <string>Delay:</string>
- </property>
- </widget>
- </item>
- <item row="0" column="0">
- <widget class="QCheckBox" name="checkSwitchEnable">
- <property name="text">
- <string>Enable </string>
- </property>
- </widget>
- </item>
- <item row="8" column="0" colspan="2">
- <widget class="QSpinBox" name="spinLatchTime">
- <property name="suffix">
- <string> seconds</string>
- </property>
- <property name="maximum">
- <number>60</number>
- </property>
- <property name="singleStep">
- <number>1</number>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- </item>
- </layout>
- </widget>
- <resources/>
- <connections/>
- </ui>
|