| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 | <?xml version="1.0" encoding="UTF-8"?><ui version="4.0"> <class>ctkXnatTreeBrowserMainWindow</class> <widget class="QMainWindow" name="ctkXnatTreeBrowserMainWindow">  <property name="geometry">   <rect>    <x>0</x>    <y>0</y>    <width>553</width>    <height>325</height>   </rect>  </property>  <property name="windowTitle">   <string>MainWindow</string>  </property>  <widget class="QWidget" name="centralwidget">   <layout class="QVBoxLayout" name="verticalLayout_3">    <item>     <layout class="QHBoxLayout" name="horizontalLayout_2">      <item>       <widget class="QPushButton" name="loginButton">        <property name="text">         <string>Login</string>        </property>       </widget>      </item>      <item>       <widget class="QPushButton" name="addResourceButton">        <property name="enabled">         <bool>false</bool>        </property>        <property name="toolTip">         <string>Creates a new resource folder</string>        </property>        <property name="text">         <string>Add Resource</string>        </property>       </widget>      </item>      <item>       <widget class="QPushButton" name="uploadFileButton">        <property name="enabled">         <bool>false</bool>        </property>        <property name="text">         <string>Upload File</string>        </property>       </widget>      </item>      <item>       <widget class="QPushButton" name="downloadButton">        <property name="enabled">         <bool>false</bool>        </property>        <property name="text">         <string>Download</string>        </property>       </widget>      </item>      <item>       <widget class="QLabel" name="loginLabel">        <property name="sizePolicy">         <sizepolicy hsizetype="Expanding" vsizetype="Preferred">          <horstretch>0</horstretch>          <verstretch>0</verstretch>         </sizepolicy>        </property>        <property name="text">         <string>Not connected</string>        </property>       </widget>      </item>     </layout>    </item>    <item>     <layout class="QHBoxLayout" name="horizontalLayout">      <item>       <widget class="QTreeView" name="treeView"/>      </item>     </layout>    </item>    <item>     <widget class="QGroupBox" name="detailsGroupBox">      <property name="title">       <string>Details</string>      </property>     </widget>    </item>    <item>     <layout class="QVBoxLayout" name="verticalLayout">      <item>       <widget class="QLabel" name="downloadLabel">        <property name="styleSheet">         <string notr="true">color: rgb(64, 64, 64);font: 75 10pt "Lucida Grande";</string>        </property>        <property name="text">         <string>Select a xnat file, resource, scan, or scan folder to download...</string>        </property>       </widget>      </item>     </layout>    </item>   </layout>  </widget>  <widget class="QMenuBar" name="menubar">   <property name="geometry">    <rect>     <x>0</x>     <y>0</y>     <width>553</width>     <height>22</height>    </rect>   </property>   <widget class="QMenu" name="menu_File">    <property name="title">     <string>&File</string>    </property>    <addaction name="action_Quit"/>   </widget>   <addaction name="menu_File"/>  </widget>  <widget class="QStatusBar" name="statusbar"/>  <action name="action_Quit">   <property name="text">    <string>&Quit</string>   </property>  </action> </widget> <resources/> <connections/></ui>
 |