1<?xml version="1.0" encoding="UTF-8"?> 2<ui version="4.0"> 3 <class>DownloadWidget</class> 4 <widget class="QFrame" name="DownloadWidget"> 5 <property name="styleSheet"> 6 <string notr="true">#DownloadWidget { 7 background: palette(button); 8 border: 1px solid palette(dark); 9 margin: 0px; 10}</string> 11 </property> 12 <layout class="QGridLayout" name="m_topLevelLayout"> 13 <property name="sizeConstraint"> 14 <enum>QLayout::SetMinAndMaxSize</enum> 15 </property> 16 <item row="0" column="0"> 17 <widget class="QLabel" name="m_dstName"> 18 <property name="styleSheet"> 19 <string notr="true">font-weight: bold 20</string> 21 </property> 22 <property name="text"> 23 <string>TextLabel</string> 24 </property> 25 </widget> 26 </item> 27 <item row="0" column="1"> 28 <widget class="QPushButton" name="m_cancelButton"> 29 <property name="sizePolicy"> 30 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"/> 31 </property> 32 <property name="styleSheet"> 33 <string notr="true">QPushButton { 34 margin: 1px; 35 border: none; 36} 37QPushButton:pressed { 38 margin: none; 39 border: 1px solid palette(shadow); 40 background: palette(midlight); 41}</string> 42 </property> 43 <property name="flat"> 44 <bool>false</bool> 45 </property> 46 </widget> 47 </item> 48 <item row="1" column="0" colspan="2"> 49 <widget class="QLabel" name="m_srcUrl"> 50 <property name="maximumSize"> 51 <size> 52 <width>350</width> 53 <height>16777215</height> 54 </size> 55 </property> 56 <property name="styleSheet"> 57 <string notr="true"/> 58 </property> 59 <property name="text"> 60 <string>TextLabel</string> 61 </property> 62 </widget> 63 </item> 64 <item row="2" column="0" colspan="2"> 65 <widget class="QProgressBar" name="m_progressBar"> 66 <property name="styleSheet"> 67 <string notr="true">font-size: 12px</string> 68 </property> 69 <property name="value"> 70 <number>24</number> 71 </property> 72 </widget> 73 </item> 74 </layout> 75 </widget> 76 <resources> 77 <include location="data/simplebrowser.qrc"/> 78 </resources> 79 <connections/> 80</ui> 81