Subversion Repositories svn1-original

Rev

Rev 297 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
297 david 1
<?xml version="1.0" encoding="UTF-8"?>
2
<ui version="4.0">
3
 <class>Dialog</class>
4
 <widget class="QDialog" name="Dialog">
5
  <property name="windowModality">
6
   <enum>Qt::ApplicationModal</enum>
7
  </property>
8
  <property name="geometry">
9
   <rect>
10
    <x>0</x>
11
    <y>0</y>
12
    <width>378</width>
13
    <height>222</height>
14
   </rect>
15
  </property>
16
  <property name="sizePolicy">
17
   <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
18
    <horstretch>0</horstretch>
19
    <verstretch>0</verstretch>
20
   </sizepolicy>
21
  </property>
22
  <property name="minimumSize">
23
   <size>
24
    <width>0</width>
25
    <height>0</height>
26
   </size>
27
  </property>
28
  <property name="windowTitle">
29
   <string>Http authentication required</string>
30
  </property>
31
  <property name="sizeGripEnabled">
32
   <bool>true</bool>
33
  </property>
34
  <property name="modal">
35
   <bool>true</bool>
36
  </property>
37
  <layout class="QGridLayout">
38
   <item row="0" column="0" colspan="2">
39
    <widget class="QLabel" name="label">
40
     <property name="text">
41
      <string>You need to supply a Username and a Password to access this site</string>
42
     </property>
43
     <property name="wordWrap">
44
      <bool>false</bool>
45
     </property>
46
    </widget>
47
   </item>
48
   <item row="2" column="0">
49
    <widget class="QLabel" name="label_2">
50
     <property name="text">
51
      <string>Username:</string>
52
     </property>
53
    </widget>
54
   </item>
55
   <item row="2" column="1">
56
    <widget class="QLineEdit" name="userEdit"/>
57
   </item>
58
   <item row="3" column="0">
59
    <widget class="QLabel" name="label_3">
60
     <property name="text">
61
      <string>Password:</string>
62
     </property>
63
    </widget>
64
   </item>
65
   <item row="3" column="1">
66
    <widget class="QLineEdit" name="passwordEdit"/>
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
   <item row="1" column="0">
79
    <widget class="QLabel" name="label_4">
80
     <property name="text">
81
      <string>Site:</string>
82
     </property>
83
    </widget>
84
   </item>
85
   <item row="1" column="1">
86
    <widget class="QLabel" name="siteDescription">
87
     <property name="font">
88
      <font>
89
       <weight>75</weight>
90
       <bold>true</bold>
91
      </font>
92
     </property>
93
     <property name="text">
94
      <string>%1 at %2</string>
95
     </property>
96
     <property name="wordWrap">
97
      <bool>true</bool>
98
     </property>
99
    </widget>
100
   </item>
101
   <item row="4" column="0">
102
    <spacer>
103
     <property name="orientation">
104
      <enum>Qt::Vertical</enum>
105
     </property>
106
     <property name="sizeHint" stdset="0">
107
      <size>
108
       <width>20</width>
109
       <height>40</height>
110
      </size>
111
     </property>
112
    </spacer>
113
   </item>
114
  </layout>
115
 </widget>
116
 <resources/>
117
 <connections>
118
  <connection>
119
   <sender>buttonBox</sender>
120
   <signal>accepted()</signal>
121
   <receiver>Dialog</receiver>
122
   <slot>accept()</slot>
123
   <hints>
124
    <hint type="sourcelabel">
125
     <x>248</x>
126
     <y>254</y>
127
    </hint>
128
    <hint type="destinationlabel">
129
     <x>157</x>
130
     <y>274</y>
131
    </hint>
132
   </hints>
133
  </connection>
134
  <connection>
135
   <sender>buttonBox</sender>
136
   <signal>rejected()</signal>
137
   <receiver>Dialog</receiver>
138
   <slot>reject()</slot>
139
   <hints>
140
    <hint type="sourcelabel">
141
     <x>316</x>
142
     <y>260</y>
143
    </hint>
144
    <hint type="destinationlabel">
145
     <x>286</x>
146
     <y>274</y>
147
    </hint>
148
   </hints>
149
  </connection>
150
 </connections>
151
</ui>