-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@11720 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
jef
committed
Sep 27, 2009
1 parent
0277bc7
commit 5cce500
Showing
2 changed files
with
144 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>QgsAddAttrDialogBase</class> | ||
<widget class="QDialog" name="QgsAddAttrDialogBase"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>356</width> | ||
<height>207</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>Add Attribute</string> | ||
</property> | ||
<property name="modal"> | ||
<bool>true</bool> | ||
</property> | ||
<layout class="QGridLayout" name="gridLayout"> | ||
<item row="0" column="0"> | ||
<widget class="QLabel" name="textLabel1"> | ||
<property name="text"> | ||
<string>Name:</string> | ||
</property> | ||
<property name="buddy"> | ||
<cstring>mNameEdit</cstring> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="0" column="1"> | ||
<widget class="QLineEdit" name="mNameEdit"/> | ||
</item> | ||
<item row="1" column="0"> | ||
<widget class="QLabel" name="textLabel1_2"> | ||
<property name="text"> | ||
<string>Comment:</string> | ||
</property> | ||
<property name="buddy"> | ||
<cstring>mCommentEdit</cstring> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="1" column="1"> | ||
<widget class="QLineEdit" name="mCommentEdit"/> | ||
</item> | ||
<item row="2" column="0"> | ||
<widget class="QLabel" name="textLabel2"> | ||
<property name="text"> | ||
<string>Type:</string> | ||
</property> | ||
<property name="buddy"> | ||
<cstring>mTypeBox</cstring> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="2" column="1"> | ||
<widget class="QComboBox" name="mTypeBox"/> | ||
</item> | ||
<item row="3" column="1"> | ||
<widget class="QLabel" name="mTypeName"> | ||
<property name="text"> | ||
<string>Type:</string> | ||
</property> | ||
<property name="buddy"> | ||
<cstring>mTypeBox</cstring> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="4" column="0"> | ||
<widget class="QLabel" name="textLabel2_2"> | ||
<property name="text"> | ||
<string>Width</string> | ||
</property> | ||
<property name="buddy"> | ||
<cstring>mLength</cstring> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="4" column="1"> | ||
<widget class="QSpinBox" name="mLength"/> | ||
</item> | ||
<item row="5" column="0"> | ||
<widget class="QLabel" name="textLabel2_3"> | ||
<property name="text"> | ||
<string>Precision</string> | ||
</property> | ||
<property name="buddy"> | ||
<cstring>mPrec</cstring> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="5" column="1"> | ||
<widget class="QSpinBox" name="mPrec"/> | ||
</item> | ||
<item row="6" column="1"> | ||
<widget class="QDialogButtonBox" name="buttonBox"> | ||
<property name="standardButtons"> | ||
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</widget> | ||
<layoutdefault spacing="6" margin="11"/> | ||
<tabstops> | ||
<tabstop>mNameEdit</tabstop> | ||
<tabstop>mTypeBox</tabstop> | ||
</tabstops> | ||
<resources/> | ||
<connections> | ||
<connection> | ||
<sender>buttonBox</sender> | ||
<signal>accepted()</signal> | ||
<receiver>QgsAddAttrDialogBase</receiver> | ||
<slot>accept()</slot> | ||
<hints> | ||
<hint type="sourcelabel"> | ||
<x>260</x> | ||
<y>109</y> | ||
</hint> | ||
<hint type="destinationlabel"> | ||
<x>307</x> | ||
<y>68</y> | ||
</hint> | ||
</hints> | ||
</connection> | ||
<connection> | ||
<sender>buttonBox</sender> | ||
<signal>rejected()</signal> | ||
<receiver>QgsAddAttrDialogBase</receiver> | ||
<slot>reject()</slot> | ||
<hints> | ||
<hint type="sourcelabel"> | ||
<x>196</x> | ||
<y>106</y> | ||
</hint> | ||
<hint type="destinationlabel"> | ||
<x>6</x> | ||
<y>77</y> | ||
</hint> | ||
</hints> | ||
</connection> | ||
</connections> | ||
</ui> |
Oops, something went wrong.