123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>TreeApp</class>
- <widget class="QMainWindow" name="TreeApp">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>347</width>
- <height>257</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>TreeApp</string>
- </property>
- <widget class="QWidget" name="centralwidget">
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <widget class="QTreeView" name="treeView"/>
- </item>
- </layout>
- </widget>
- <widget class="QMenuBar" name="menubar">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>347</width>
- <height>20</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="actionSelect_a_file"/>
- </widget>
- <action name="actionSelect_a_file">
- <property name="text">
- <string>Select a file</string>
- </property>
- </action>
- </widget>
- <resources/>
- <connections>
- <connection>
- <sender>treeView</sender>
- <signal>doubleClicked(QModelIndex)</signal>
- <receiver>TreeApp</receiver>
- <slot>doubleClicked(QModelIndex)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>173</x>
- <y>141</y>
- </hint>
- <hint type="destinationlabel">
- <x>173</x>
- <y>128</y>
- </hint>
- </hints>
- </connection>
- </connections>
- <slots>
- <slot>doubleClicked(QModelIndex)</slot>
- </slots>
- </ui>
|