Redesign CSV import dialog.

This fixes groupbox alignment and dialog resize issues.

Signed-off-by: Sergey Starosek <sergey.starosek@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Sergey Starosek 2013-11-29 15:40:07 +02:00 committed by Dirk Hohndel
parent 0f7037a92f
commit f24748253c

View file

@ -6,96 +6,55 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>400</width> <width>432</width>
<height>300</height> <height>330</height>
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
<string>Import CSV file</string> <string>Import CSV file</string>
</property> </property>
<widget class="QDialogButtonBox" name="buttonBox"> <layout class="QVBoxLayout" name="verticalLayout">
<property name="geometry"> <item>
<rect>
<x>200</x>
<y>240</y>
<width>171</width>
<height>32</height>
</rect>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
<widget class="QGroupBox" name="groupBox"> <widget class="QGroupBox" name="groupBox">
<property name="geometry"> <property name="sizePolicy">
<rect> <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
<x>20</x> <horstretch>0</horstretch>
<y>10</y> <verstretch>0</verstretch>
<width>351</width> </sizepolicy>
<height>71</height>
</rect>
</property> </property>
<property name="title"> <property name="title">
<string>Import File (CSV)</string> <string>Import File (CSV)</string>
</property> </property>
<widget class="QLineEdit" name="CSVFile"> <layout class="QHBoxLayout" name="horizontalLayout">
<property name="geometry"> <item>
<rect> <widget class="QLineEdit" name="CSVFile"/>
<x>0</x> </item>
<y>30</y> <item>
<width>291</width>
<height>29</height>
</rect>
</property>
</widget>
<widget class="QToolButton" name="CSVFileSelector"> <widget class="QToolButton" name="CSVFileSelector">
<property name="geometry">
<rect>
<x>300</x>
<y>30</y>
<width>25</width>
<height>27</height>
</rect>
</property>
<property name="text"> <property name="text">
<string>...</string> <string>...</string>
</property> </property>
</widget> </widget>
</item>
</layout>
</widget> </widget>
<widget class="QGroupBox" name="groupBox_2"> </item>
<property name="geometry"> <item>
<rect> <widget class="QWidget" name="horizontalWidget" native="true">
<x>200</x> <layout class="QHBoxLayout" name="horizontalLayout_3">
<y>80</y> <property name="spacing">
<width>121</width> <number>0</number>
<height>61</height>
</rect>
</property> </property>
<property name="title"> <property name="margin">
<string>Field Separator</string> <number>0</number>
</property> </property>
<widget class="QComboBox" name="CSVSeparator"> <item>
<property name="geometry">
<rect>
<x>0</x>
<y>30</y>
<width>111</width>
<height>29</height>
</rect>
</property>
</widget>
</widget>
<widget class="QGroupBox" name="groupBox_3"> <widget class="QGroupBox" name="groupBox_3">
<property name="geometry"> <property name="sizePolicy">
<rect> <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
<x>20</x> <horstretch>0</horstretch>
<y>80</y> <verstretch>0</verstretch>
<width>171</width> </sizepolicy>
<height>221</height>
</rect>
</property> </property>
<property name="title"> <property name="title">
<string>Field Configuration</string> <string>Field Configuration</string>
@ -214,32 +173,83 @@
<zorder>stopdepthCheckBox</zorder> <zorder>stopdepthCheckBox</zorder>
<zorder>CSVstopdepth</zorder> <zorder>CSVstopdepth</zorder>
</widget> </widget>
</item>
<item>
<widget class="QWidget" name="verticalWidget" native="true">
<layout class="QVBoxLayout" name="verticalLayout_2">
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QGroupBox" name="groupBox_2">
<property name="title">
<string>Field Separator</string>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QComboBox" name="CSVSeparator"/>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="groupBox_4"> <widget class="QGroupBox" name="groupBox_4">
<property name="geometry"> <property name="sizePolicy">
<rect> <sizepolicy hsizetype="Preferred" vsizetype="Minimum">
<x>200</x> <horstretch>0</horstretch>
<y>159</y> <verstretch>0</verstretch>
<width>181</width> </sizepolicy>
<height>61</height>
</rect>
</property> </property>
<property name="title"> <property name="title">
<string>Pre-configured imports</string> <string>Pre-configured imports</string>
</property> </property>
<layout class="QHBoxLayout" name="horizontalLayout_4">
<item>
<widget class="QComboBox" name="knownImports"> <widget class="QComboBox" name="knownImports">
<property name="geometry">
<rect>
<x>0</x>
<y>30</y>
<width>161</width>
<height>29</height>
</rect>
</property>
<property name="currentIndex"> <property name="currentIndex">
<number>-1</number> <number>-1</number>
</property> </property>
</widget> </widget>
</item>
</layout>
</widget> </widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget> </widget>
<resources/> <resources/>
<connections> <connections>
@ -250,12 +260,12 @@
<slot>accept()</slot> <slot>accept()</slot>
<hints> <hints>
<hint type="sourcelabel"> <hint type="sourcelabel">
<x>248</x> <x>310</x>
<y>254</y> <y>286</y>
</hint> </hint>
<hint type="destinationlabel"> <hint type="destinationlabel">
<x>157</x> <x>215</x>
<y>274</y> <y>164</y>
</hint> </hint>
</hints> </hints>
</connection> </connection>
@ -266,12 +276,12 @@
<slot>reject()</slot> <slot>reject()</slot>
<hints> <hints>
<hint type="sourcelabel"> <hint type="sourcelabel">
<x>316</x> <x>310</x>
<y>260</y> <y>286</y>
</hint> </hint>
<hint type="destinationlabel"> <hint type="destinationlabel">
<x>286</x> <x>215</x>
<y>274</y> <y>164</y>
</hint> </hint>
</hints> </hints>
</connection> </connection>
@ -280,24 +290,64 @@
<signal>clicked(bool)</signal> <signal>clicked(bool)</signal>
<receiver>CSVTemperature</receiver> <receiver>CSVTemperature</receiver>
<slot>setEnabled(bool)</slot> <slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>77</x>
<y>191</y>
</hint>
<hint type="destinationlabel">
<x>161</x>
<y>191</y>
</hint>
</hints>
</connection> </connection>
<connection> <connection>
<sender>po2CheckBox</sender> <sender>po2CheckBox</sender>
<signal>clicked(bool)</signal> <signal>clicked(bool)</signal>
<receiver>CSVpo2</receiver> <receiver>CSVpo2</receiver>
<slot>setEnabled(bool)</slot> <slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>77</x>
<y>223</y>
</hint>
<hint type="destinationlabel">
<x>161</x>
<y>223</y>
</hint>
</hints>
</connection> </connection>
<connection> <connection>
<sender>cnsCheckBox</sender> <sender>cnsCheckBox</sender>
<signal>clicked(bool)</signal> <signal>clicked(bool)</signal>
<receiver>CSVcns</receiver> <receiver>CSVcns</receiver>
<slot>setEnabled(bool)</slot> <slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>77</x>
<y>255</y>
</hint>
<hint type="destinationlabel">
<x>161</x>
<y>255</y>
</hint>
</hints>
</connection> </connection>
<connection> <connection>
<sender>stopdepthCheckBox</sender> <sender>stopdepthCheckBox</sender>
<signal>clicked(bool)</signal> <signal>clicked(bool)</signal>
<receiver>CSVstopdepth</receiver> <receiver>CSVstopdepth</receiver>
<slot>setEnabled(bool)</slot> <slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>77</x>
<y>287</y>
</hint>
<hint type="destinationlabel">
<x>161</x>
<y>287</y>
</hint>
</hints>
</connection> </connection>
</connections> </connections>
</ui> </ui>