| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | <?xml version="1.0" encoding="UTF-8"?><ui version="4.0"> <class>EasaView</class> <widget class="QDialog" name="EasaView">  <property name="geometry">   <rect>    <x>0</x>    <y>0</y>    <width>1280</width>    <height>480</height>   </rect>  </property>  <property name="windowTitle">   <string>Dialog</string>  </property>  <layout class="QGridLayout" name="gridLayout">   <item row="1" column="0" colspan="2">    <widget class="QTableView" name="EasaTableView"/>   </item>   <item row="0" column="0" colspan="2">    <widget class="QLabel" name="label">     <property name="font">      <font>       <pointsize>24</pointsize>      </font>     </property>     <property name="text">      <string>Work in Progress</string>     </property>     <property name="alignment">      <set>Qt::AlignCenter</set>     </property>    </widget>   </item>   <item row="2" column="0" colspan="2">    <widget class="QPushButton" name="QuitButton">     <property name="text">      <string>Quit</string>     </property>    </widget>   </item>  </layout> </widget> <resources/> <connections/></ui>
 |