Skip to content

Commit e2beee9

Browse files
author
jef
committedSep 27, 2009
fix r11719
git-svn-id: http://svn.osgeo.org/qgis/trunk@11720 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent c9ffb2b commit e2beee9

File tree

2 files changed

+144
-273
lines changed

2 files changed

+144
-273
lines changed
 

‎src/ui/qgsaddattrdialogbase.ui

Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<ui version="4.0">
3+
<class>QgsAddAttrDialogBase</class>
4+
<widget class="QDialog" name="QgsAddAttrDialogBase">
5+
<property name="geometry">
6+
<rect>
7+
<x>0</x>
8+
<y>0</y>
9+
<width>356</width>
10+
<height>207</height>
11+
</rect>
12+
</property>
13+
<property name="windowTitle">
14+
<string>Add Attribute</string>
15+
</property>
16+
<property name="modal">
17+
<bool>true</bool>
18+
</property>
19+
<layout class="QGridLayout" name="gridLayout">
20+
<item row="0" column="0">
21+
<widget class="QLabel" name="textLabel1">
22+
<property name="text">
23+
<string>Name:</string>
24+
</property>
25+
<property name="buddy">
26+
<cstring>mNameEdit</cstring>
27+
</property>
28+
</widget>
29+
</item>
30+
<item row="0" column="1">
31+
<widget class="QLineEdit" name="mNameEdit"/>
32+
</item>
33+
<item row="1" column="0">
34+
<widget class="QLabel" name="textLabel1_2">
35+
<property name="text">
36+
<string>Comment:</string>
37+
</property>
38+
<property name="buddy">
39+
<cstring>mCommentEdit</cstring>
40+
</property>
41+
</widget>
42+
</item>
43+
<item row="1" column="1">
44+
<widget class="QLineEdit" name="mCommentEdit"/>
45+
</item>
46+
<item row="2" column="0">
47+
<widget class="QLabel" name="textLabel2">
48+
<property name="text">
49+
<string>Type:</string>
50+
</property>
51+
<property name="buddy">
52+
<cstring>mTypeBox</cstring>
53+
</property>
54+
</widget>
55+
</item>
56+
<item row="2" column="1">
57+
<widget class="QComboBox" name="mTypeBox"/>
58+
</item>
59+
<item row="3" column="1">
60+
<widget class="QLabel" name="mTypeName">
61+
<property name="text">
62+
<string>Type:</string>
63+
</property>
64+
<property name="buddy">
65+
<cstring>mTypeBox</cstring>
66+
</property>
67+
</widget>
68+
</item>
69+
<item row="4" column="0">
70+
<widget class="QLabel" name="textLabel2_2">
71+
<property name="text">
72+
<string>Width</string>
73+
</property>
74+
<property name="buddy">
75+
<cstring>mLength</cstring>
76+
</property>
77+
</widget>
78+
</item>
79+
<item row="4" column="1">
80+
<widget class="QSpinBox" name="mLength"/>
81+
</item>
82+
<item row="5" column="0">
83+
<widget class="QLabel" name="textLabel2_3">
84+
<property name="text">
85+
<string>Precision</string>
86+
</property>
87+
<property name="buddy">
88+
<cstring>mPrec</cstring>
89+
</property>
90+
</widget>
91+
</item>
92+
<item row="5" column="1">
93+
<widget class="QSpinBox" name="mPrec"/>
94+
</item>
95+
<item row="6" column="1">
96+
<widget class="QDialogButtonBox" name="buttonBox">
97+
<property name="standardButtons">
98+
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
99+
</property>
100+
</widget>
101+
</item>
102+
</layout>
103+
</widget>
104+
<layoutdefault spacing="6" margin="11"/>
105+
<tabstops>
106+
<tabstop>mNameEdit</tabstop>
107+
<tabstop>mTypeBox</tabstop>
108+
</tabstops>
109+
<resources/>
110+
<connections>
111+
<connection>
112+
<sender>buttonBox</sender>
113+
<signal>accepted()</signal>
114+
<receiver>QgsAddAttrDialogBase</receiver>
115+
<slot>accept()</slot>
116+
<hints>
117+
<hint type="sourcelabel">
118+
<x>260</x>
119+
<y>109</y>
120+
</hint>
121+
<hint type="destinationlabel">
122+
<x>307</x>
123+
<y>68</y>
124+
</hint>
125+
</hints>
126+
</connection>
127+
<connection>
128+
<sender>buttonBox</sender>
129+
<signal>rejected()</signal>
130+
<receiver>QgsAddAttrDialogBase</receiver>
131+
<slot>reject()</slot>
132+
<hints>
133+
<hint type="sourcelabel">
134+
<x>196</x>
135+
<y>106</y>
136+
</hint>
137+
<hint type="destinationlabel">
138+
<x>6</x>
139+
<y>77</y>
140+
</hint>
141+
</hints>
142+
</connection>
143+
</connections>
144+
</ui>

‎src/ui/qgsgeomtypedialogbase.ui

Lines changed: 0 additions & 273 deletions
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.