Skip to content

Commit

Permalink
Some fixes for the projection selector:
Browse files Browse the repository at this point in the history
 - make the projection proj text area consume less space
 - make epsg checked by default in find box
 - enable enter key when entering text in the find box
 - improve layout to maximise space for proj list


git-svn-id: http://svn.osgeo.org/qgis/trunk@9009 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Aug 6, 2008
1 parent 3944236 commit 177516b
Showing 1 changed file with 37 additions and 21 deletions.
58 changes: 37 additions & 21 deletions src/ui/qgsprojectionselectorbase.ui
Expand Up @@ -5,8 +5,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>457</width>
<height>403</height>
<width>466</width>
<height>416</height>
</rect>
</property>
<property name="sizePolicy" >
Expand Down Expand Up @@ -34,6 +34,9 @@
<property name="bottomMargin" >
<number>3</number>
</property>
<property name="verticalSpacing" >
<number>3</number>
</property>
<item row="0" column="0" >
<widget class="QTreeWidget" name="lstCoordinateSystems" >
<property name="alternatingRowColors" >
Expand Down Expand Up @@ -65,21 +68,27 @@
<item row="1" column="0" >
<widget class="QTextEdit" name="teProjection" >
<property name="sizePolicy" >
<sizepolicy vsizetype="Expanding" hsizetype="Expanding" >
<sizepolicy vsizetype="Minimum" hsizetype="Expanding" >
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize" >
<size>
<width>0</width>
<height>100</height>
<height>30</height>
</size>
</property>
<property name="maximumSize" >
<size>
<width>16777215</width>
<height>100</height>
<height>50</height>
</size>
</property>
<property name="baseSize" >
<size>
<width>0</width>
<height>50</height>
</size>
</property>
<property name="autoFormatting" >
Expand Down Expand Up @@ -113,6 +122,9 @@
<height>10</height>
</size>
</property>
<property name="checked" >
<bool>true</bool>
</property>
</widget>
</item>
<item row="0" column="1" >
Expand All @@ -128,23 +140,10 @@
</property>
</widget>
</item>
<item row="0" column="2" colspan="2" >
<spacer>
<property name="orientation" >
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" >
<size>
<width>231</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item row="1" column="0" colspan="3" >
<item row="0" column="2" >
<widget class="QLineEdit" name="leSearch" />
</item>
<item row="1" column="3" >
<item row="0" column="3" >
<widget class="QPushButton" name="pbnFind" >
<property name="maximumSize" >
<size>
Expand All @@ -167,5 +166,22 @@
</widget>
<layoutdefault spacing="6" margin="11" />
<resources/>
<connections/>
<connections>
<connection>
<sender>leSearch</sender>
<signal>editingFinished()</signal>
<receiver>pbnFind</receiver>
<slot>click()</slot>
<hints>
<hint type="sourcelabel" >
<x>292</x>
<y>380</y>
</hint>
<hint type="destinationlabel" >
<x>375</x>
<y>373</y>
</hint>
</hints>
</connection>
</connections>
</ui>

0 comments on commit 177516b

Please sign in to comment.