| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 | <?xml version="1.0" encoding="UTF-8"?><ui version="4.0"> <class>AboutDialog</class> <widget class="QDialog" name="AboutDialog">  <property name="geometry">   <rect>    <x>0</x>    <y>0</y>    <width>328</width>    <height>340</height>   </rect>  </property>  <property name="sizePolicy">   <sizepolicy hsizetype="Fixed" vsizetype="Fixed">    <horstretch>0</horstretch>    <verstretch>0</verstretch>   </sizepolicy>  </property>  <property name="minimumSize">   <size>    <width>0</width>    <height>0</height>   </size>  </property>  <property name="windowTitle">   <string>About StarPU-Top...</string>  </property>  <property name="windowIcon">   <iconset resource="resources.qrc">    <normaloff>:/images/about.png</normaloff>:/images/about.png</iconset>  </property>  <property name="modal">   <bool>true</bool>  </property>  <layout class="QGridLayout" name="gridLayout">   <item row="3" column="0" colspan="2">    <widget class="QGroupBox" name="developersGroupBox">     <property name="maximumSize">      <size>       <width>16777215</width>       <height>110</height>      </size>     </property>     <property name="title">      <string>Developers</string>     </property>     <layout class="QGridLayout" name="gridLayout_2">      <item row="0" column="0">       <widget class="QListWidget" name="developersList">        <property name="enabled">         <bool>true</bool>        </property>        <property name="selectionMode">         <enum>QAbstractItemView::NoSelection</enum>        </property>        <item>         <property name="text">          <string>William BRAIK</string>         </property>        </item>        <item>         <property name="text">          <string>Yann COURTOIS</string>         </property>        </item>        <item>         <property name="text">          <string>Jean-Marie COUTEYEN</string>         </property>        </item>        <item>         <property name="text">          <string>Anthony ROY</string>         </property>        </item>       </widget>      </item>     </layout>    </widget>   </item>   <item row="0" column="1">    <widget class="QLabel" name="titleLabel">     <property name="maximumSize">      <size>       <width>16777215</width>       <height>50</height>      </size>     </property>     <property name="styleSheet">      <string notr="true">font: 12pt "MS Shell Dlg 2";</string>     </property>     <property name="text">      <string>StarPU-Top, for StarPU</string>     </property>     <property name="scaledContents">      <bool>false</bool>     </property>     <property name="alignment">      <set>Qt::AlignCenter</set>     </property>    </widget>   </item>   <item row="0" column="0">    <widget class="QLabel" name="label">     <property name="maximumSize">      <size>       <width>120</width>       <height>110</height>      </size>     </property>     <property name="text">      <string/>     </property>     <property name="pixmap">      <pixmap resource="resources.qrc">:/images/starpu_top.png</pixmap>     </property>     <property name="scaledContents">      <bool>true</bool>     </property>    </widget>   </item>   <item row="1" column="0" colspan="2">    <widget class="QGroupBox" name="groupBox">     <property name="minimumSize">      <size>       <width>0</width>       <height>0</height>      </size>     </property>     <property name="maximumSize">      <size>       <width>16777215</width>       <height>90</height>      </size>     </property>     <property name="title">      <string>Software</string>     </property>     <layout class="QGridLayout" name="gridLayout_3">      <item row="0" column="0">       <widget class="QListWidget" name="listWidget">        <property name="enabled">         <bool>true</bool>        </property>        <property name="minimumSize">         <size>          <width>0</width>          <height>0</height>         </size>        </property>        <property name="maximumSize">         <size>          <width>16777215</width>          <height>16777215</height>         </size>        </property>        <property name="selectionMode">         <enum>QAbstractItemView::NoSelection</enum>        </property>        <item>         <property name="text">          <string>Year : 2011</string>         </property>        </item>        <item>         <property name="text">          <string>Version : 0.1</string>         </property>        </item>        <item>         <property name="text">          <string>Licence : LGPL</string>         </property>        </item>       </widget>      </item>     </layout>    </widget>   </item>  </layout> </widget> <resources>  <include location="resources.qrc"/> </resources> <connections/></ui>
 |