source: trunk/tools/qml/proxysettings.ui@ 858

Last change on this file since 858 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 2.8 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>ProxySettings</class>
4 <widget class="QDialog" name="ProxySettings">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>318</width>
10 <height>199</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>Dialog</string>
15 </property>
16 <layout class="QGridLayout" name="gridLayout">
17 <item row="0" column="0" colspan="2">
18 <widget class="QCheckBox" name="proxyCheckBox">
19 <property name="text">
20 <string>Use http proxy</string>
21 </property>
22 </widget>
23 </item>
24 <item row="1" column="0">
25 <widget class="QLabel" name="serverAddressLabel">
26 <property name="text">
27 <string>Server Address:</string>
28 </property>
29 </widget>
30 </item>
31 <item row="1" column="1">
32 <widget class="QLineEdit" name="proxyServerEdit"/>
33 </item>
34 <item row="2" column="0">
35 <widget class="QLabel" name="label">
36 <property name="text">
37 <string>Port:</string>
38 </property>
39 </widget>
40 </item>
41 <item row="2" column="1">
42 <widget class="QLineEdit" name="proxyPortEdit"/>
43 </item>
44 <item row="3" column="0">
45 <widget class="QLabel" name="usernameLabel">
46 <property name="text">
47 <string>Username:</string>
48 </property>
49 </widget>
50 </item>
51 <item row="3" column="1">
52 <widget class="QLineEdit" name="usernameEdit"/>
53 </item>
54 <item row="4" column="0">
55 <widget class="QLabel" name="passwordLabel">
56 <property name="text">
57 <string>Password:</string>
58 </property>
59 </widget>
60 </item>
61 <item row="4" column="1">
62 <widget class="QLineEdit" name="passwordEdit">
63 <property name="echoMode">
64 <enum>QLineEdit::Password</enum>
65 </property>
66 </widget>
67 </item>
68 <item row="5" column="0" colspan="2">
69 <widget class="QDialogButtonBox" name="buttonBox">
70 <property name="orientation">
71 <enum>Qt::Horizontal</enum>
72 </property>
73 <property name="standardButtons">
74 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
75 </property>
76 </widget>
77 </item>
78 </layout>
79 </widget>
80 <resources/>
81 <connections>
82 <connection>
83 <sender>buttonBox</sender>
84 <signal>accepted()</signal>
85 <receiver>ProxySettings</receiver>
86 <slot>accept()</slot>
87 <hints>
88 <hint type="sourcelabel">
89 <x>248</x>
90 <y>254</y>
91 </hint>
92 <hint type="destinationlabel">
93 <x>157</x>
94 <y>274</y>
95 </hint>
96 </hints>
97 </connection>
98 <connection>
99 <sender>buttonBox</sender>
100 <signal>rejected()</signal>
101 <receiver>ProxySettings</receiver>
102 <slot>reject()</slot>
103 <hints>
104 <hint type="sourcelabel">
105 <x>316</x>
106 <y>260</y>
107 </hint>
108 <hint type="destinationlabel">
109 <x>286</x>
110 <y>274</y>
111 </hint>
112 </hints>
113 </connection>
114 </connections>
115</ui>
Note: See TracBrowser for help on using the repository browser.