source: trunk/examples/webkit/formextractor/formextractor.ui

Last change on this file was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 4.2 KB
Line 
1<ui version="4.0" >
2 <class>Form</class>
3 <widget class="QWidget" name="Form" >
4 <property name="geometry" >
5 <rect>
6 <x>0</x>
7 <y>0</y>
8 <width>680</width>
9 <height>218</height>
10 </rect>
11 </property>
12 <property name="windowTitle" >
13 <string>Form</string>
14 </property>
15 <layout class="QHBoxLayout" name="horizontalLayout" >
16 <item>
17 <widget class="QGroupBox" name="webFormGroupBox" >
18 <property name="title" >
19 <string>Web Form</string>
20 </property>
21 <layout class="QVBoxLayout" name="verticalLayout_2" >
22 <item>
23 <layout class="QVBoxLayout" name="verticalLayout" >
24 <item>
25 <widget class="QWebView" name="webView" >
26 <property name="minimumSize" >
27 <size>
28 <width>200</width>
29 <height>150</height>
30 </size>
31 </property>
32 <property name="maximumSize" >
33 <size>
34 <width>400</width>
35 <height>16777215</height>
36 </size>
37 </property>
38 <property name="url" >
39 <url>
40 <string>about:blank</string>
41 </url>
42 </property>
43 </widget>
44 </item>
45 </layout>
46 </item>
47 </layout>
48 </widget>
49 </item>
50 <item>
51 <spacer name="horizontalSpacer" >
52 <property name="orientation" >
53 <enum>Qt::Horizontal</enum>
54 </property>
55 <property name="sizeHint" stdset="0" >
56 <size>
57 <width>28</width>
58 <height>20</height>
59 </size>
60 </property>
61 </spacer>
62 </item>
63 <item>
64 <widget class="QGroupBox" name="dataGroupBox" >
65 <property name="title" >
66 <string>Extracted Data</string>
67 </property>
68 <layout class="QVBoxLayout" name="verticalLayout_3" >
69 <item>
70 <layout class="QFormLayout" name="formLayout" >
71 <property name="fieldGrowthPolicy" >
72 <enum>QFormLayout::FieldsStayAtSizeHint</enum>
73 </property>
74 <item row="0" column="0" >
75 <widget class="QLabel" name="firstNameLabel" >
76 <property name="text" >
77 <string>First Name</string>
78 </property>
79 </widget>
80 </item>
81 <item row="0" column="1" >
82 <widget class="QLineEdit" name="firstNameEdit" >
83 <property name="readOnly" >
84 <bool>true</bool>
85 </property>
86 </widget>
87 </item>
88 <item row="1" column="0" >
89 <widget class="QLabel" name="lastNameLabel" >
90 <property name="text" >
91 <string>Last Name</string>
92 </property>
93 </widget>
94 </item>
95 <item row="1" column="1" >
96 <widget class="QLineEdit" name="lastNameEdit" >
97 <property name="readOnly" >
98 <bool>true</bool>
99 </property>
100 </widget>
101 </item>
102 <item row="2" column="0" >
103 <widget class="QLabel" name="genderLabel" >
104 <property name="text" >
105 <string>Gender</string>
106 </property>
107 </widget>
108 </item>
109 <item row="2" column="1" >
110 <widget class="QLineEdit" name="genderEdit" >
111 <property name="readOnly" >
112 <bool>true</bool>
113 </property>
114 </widget>
115 </item>
116 <item row="3" column="0" >
117 <widget class="QLabel" name="updatesLabel" >
118 <property name="text" >
119 <string>Receive Updates</string>
120 </property>
121 </widget>
122 </item>
123 <item row="3" column="1" >
124 <widget class="QLineEdit" name="updatesEdit" >
125 <property name="readOnly" >
126 <bool>true</bool>
127 </property>
128 </widget>
129 </item>
130 </layout>
131 </item>
132 <item>
133 <spacer name="verticalSpacer" >
134 <property name="orientation" >
135 <enum>Qt::Vertical</enum>
136 </property>
137 <property name="sizeHint" stdset="0" >
138 <size>
139 <width>20</width>
140 <height>24</height>
141 </size>
142 </property>
143 </spacer>
144 </item>
145 </layout>
146 </widget>
147 </item>
148 </layout>
149 </widget>
150 <customwidgets>
151 <customwidget>
152 <class>QWebView</class>
153 <extends>QWidget</extends>
154 <header>QtWebKit/QWebView</header>
155 </customwidget>
156 </customwidgets>
157 <resources/>
158 <connections/>
159</ui>
Note: See TracBrowser for help on using the repository browser.