1<ui version="4.0" > 2 <class>ProxyDialog</class> 3 <widget class="QDialog" name="ProxyDialog" > 4 <property name="geometry" > 5 <rect> 6 <x>0</x> 7 <y>0</y> 8 <width>369</width> 9 <height>144</height> 10 </rect> 11 </property> 12 <property name="windowTitle" > 13 <string>Proxy Authentication</string> 14 </property> 15 <layout class="QGridLayout" name="gridLayout" > 16 <item row="0" column="0" > 17 <widget class="QLabel" name="iconLabel" > 18 <property name="text" > 19 <string>ICON</string> 20 </property> 21 </widget> 22 </item> 23 <item row="0" column="1" colspan="2" > 24 <widget class="QLabel" name="introLabel" > 25 <property name="text" > 26 <string>Connect to proxy</string> 27 </property> 28 <property name="wordWrap" > 29 <bool>true</bool> 30 </property> 31 </widget> 32 </item> 33 <item row="1" column="0" colspan="2" > 34 <widget class="QLabel" name="usernameLabel" > 35 <property name="text" > 36 <string>Username:</string> 37 </property> 38 </widget> 39 </item> 40 <item row="1" column="2" > 41 <widget class="QLineEdit" name="userNameLineEdit" /> 42 </item> 43 <item row="2" column="0" colspan="2" > 44 <widget class="QLabel" name="passwordLabel" > 45 <property name="text" > 46 <string>Password:</string> 47 </property> 48 </widget> 49 </item> 50 <item row="2" column="2" > 51 <widget class="QLineEdit" name="passwordLineEdit" > 52 <property name="echoMode" > 53 <enum>QLineEdit::Password</enum> 54 </property> 55 </widget> 56 </item> 57 <item row="3" column="0" colspan="3" > 58 <widget class="QDialogButtonBox" name="buttonBox" > 59 <property name="orientation" > 60 <enum>Qt::Horizontal</enum> 61 </property> 62 <property name="standardButtons" > 63 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> 64 </property> 65 </widget> 66 </item> 67 </layout> 68 </widget> 69 <resources/> 70 <connections> 71 <connection> 72 <sender>buttonBox</sender> 73 <signal>accepted()</signal> 74 <receiver>ProxyDialog</receiver> 75 <slot>accept()</slot> 76 <hints> 77 <hint type="sourcelabel" > 78 <x>248</x> 79 <y>254</y> 80 </hint> 81 <hint type="destinationlabel" > 82 <x>157</x> 83 <y>274</y> 84 </hint> 85 </hints> 86 </connection> 87 <connection> 88 <sender>buttonBox</sender> 89 <signal>rejected()</signal> 90 <receiver>ProxyDialog</receiver> 91 <slot>reject()</slot> 92 <hints> 93 <hint type="sourcelabel" > 94 <x>316</x> 95 <y>260</y> 96 </hint> 97 <hint type="destinationlabel" > 98 <x>286</x> 99 <y>274</y> 100 </hint> 101 </hints> 102 </connection> 103 </connections> 104</ui> 105