| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 | <?xml version="1.0" encoding="UTF-8"?><ui version="4.0"> <class>ctkCLModuleExplorerMainWindow</class> <widget class="QMainWindow" name="ctkCLModuleExplorerMainWindow">  <property name="geometry">   <rect>    <x>0</x>    <y>0</y>    <width>800</width>    <height>600</height>   </rect>  </property>  <property name="windowTitle">   <string>CTK Command Line Module Explorer</string>  </property>  <widget class="QWidget" name="centralwidget">   <layout class="QHBoxLayout" name="horizontalLayout">    <property name="margin">     <number>0</number>    </property>    <item>     <widget class="QTabWidget" name="mainTabWidget">      <property name="currentIndex">       <number>-1</number>      </property>      <property name="elideMode">       <enum>Qt::ElideMiddle</enum>      </property>      <property name="tabsClosable">       <bool>true</bool>      </property>      <property name="movable">       <bool>true</bool>      </property>     </widget>    </item>   </layout>  </widget>  <widget class="QMenuBar" name="menubar">   <property name="geometry">    <rect>     <x>0</x>     <y>0</y>     <width>800</width>     <height>25</height>    </rect>   </property>  </widget>  <widget class="QStatusBar" name="statusbar"/>  <widget class="QToolBar" name="toolBar">   <property name="windowTitle">    <string>toolBar</string>   </property>   <attribute name="toolBarArea">    <enum>TopToolBarArea</enum>   </attribute>   <attribute name="toolBarBreak">    <bool>false</bool>   </attribute>   <addaction name="actionRun"/>   <addaction name="actionStop"/>  </widget>  <action name="actionRun">   <property name="icon">    <iconset resource="resources/ctkCLModuleExplorer.qrc">     <normaloff>:/icons/run.png</normaloff>:/icons/run.png</iconset>   </property>   <property name="text">    <string>Run</string>   </property>   <property name="toolTip">    <string>Run CLI Plug-in</string>   </property>   <property name="shortcut">    <string>Ctrl+R</string>   </property>  </action>  <action name="actionStop">   <property name="icon">    <iconset resource="resources/ctkCLModuleExplorer.qrc">     <normaloff>:/icons/stop.png</normaloff>:/icons/stop.png</iconset>   </property>   <property name="text">    <string>Stop</string>   </property>   <property name="toolTip">    <string>Stop CLI Plug-in</string>   </property>   <property name="shortcut">    <string>Ctrl+C</string>   </property>  </action> </widget> <resources>  <include location="resources/ctkCLModuleExplorer.qrc"/> </resources> <connections/></ui>
 |