Skip to content

Commit

Permalink
fix r11719
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@11720 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Sep 27, 2009
1 parent c9ffb2b commit e2beee9
Show file tree
Hide file tree
Showing 2 changed files with 144 additions and 273 deletions.
144 changes: 144 additions & 0 deletions src/ui/qgsaddattrdialogbase.ui
@@ -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>

0 comments on commit e2beee9

Please sign in to comment.