| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 | <?xml version="1.0" encoding="UTF-8"?><ui version="4.0"> <class>ctkSettingsDialog</class> <widget class="QDialog" name="ctkSettingsDialog">  <property name="geometry">   <rect>    <x>0</x>    <y>0</y>    <width>690</width>    <height>397</height>   </rect>  </property>  <property name="windowTitle">   <string>Settings</string>  </property>  <layout class="QGridLayout" name="gridLayout" columnstretch="0,1">   <item row="0" column="0">    <widget class="QTreeWidget" name="SettingsTreeWidget">     <property name="headerHidden">      <bool>true</bool>     </property>     <column>      <property name="text">       <string notr="true">1</string>      </property>     </column>    </widget>   </item>   <item row="0" column="1">    <widget class="QStackedWidget" name="SettingsStackedWidget"/>   </item>   <item row="1" column="0" colspan="2">    <widget class="QDialogButtonBox" name="SettingsButtonBox">     <property name="orientation">      <enum>Qt::Horizontal</enum>     </property>     <property name="standardButtons">      <set>QDialogButtonBox::Ok|QDialogButtonBox::Reset|QDialogButtonBox::RestoreDefaults</set>     </property>    </widget>   </item>  </layout> </widget> <resources/> <connections>  <connection>   <sender>SettingsButtonBox</sender>   <signal>accepted()</signal>   <receiver>ctkSettingsDialog</receiver>   <slot>accept()</slot>   <hints>    <hint type="sourcelabel">     <x>248</x>     <y>254</y>    </hint>    <hint type="destinationlabel">     <x>157</x>     <y>274</y>    </hint>   </hints>  </connection>  <connection>   <sender>SettingsButtonBox</sender>   <signal>rejected()</signal>   <receiver>ctkSettingsDialog</receiver>   <slot>reject()</slot>   <hints>    <hint type="sourcelabel">     <x>316</x>     <y>260</y>    </hint>    <hint type="destinationlabel">     <x>286</x>     <y>274</y>    </hint>   </hints>  </connection> </connections></ui>
 |