This repository has been archived on 2020-03-08. You can view files and clone it, but cannot push or open issues or pull requests.
pg-tp3/settingsdialog.ui

153 lines
3.8 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SettingsDialog</class>
<widget class="QDialog" name="SettingsDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="PropSlider" name="sli_distance">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLabel" name="lbl_distance">
<property name="text">
<string>Distance (zZ)</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="PropSlider" name="sli_focal_length">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLabel" name="lbl_focal_length">
<property name="text">
<string>Focale (rR)</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="PropSlider" name="sli_near_clip">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QLabel" name="lbl_near_clip">
<property name="text">
<string>Coupe avant (nN)</string>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="PropSlider" name="sli_far_clip">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QLabel" name="lbl_far_clip">
<property name="text">
<string>Coupe arrière (fF)</string>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="PropSlider" name="sli_angle">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QLabel" name="lbl_angle">
<property name="text">
<string>Angle (spc)</string>
</property>
</widget>
</item>
</layout>
</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>
<customwidgets>
<customwidget>
<class>PropSlider</class>
<extends>QSlider</extends>
<header>propslider.h</header>
</customwidget>
</customwidgets>
<resources/>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>SettingsDialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>227</x>
<y>281</y>
</hint>
<hint type="destinationlabel">
<x>157</x>
<y>274</y>
</hint>
</hints>
</connection>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>SettingsDialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>295</x>
<y>287</y>
</hint>
<hint type="destinationlabel">
<x>286</x>
<y>274</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>onSliderDistance(int)</slot>
<slot>onSliderFocalLength(int)</slot>
<slot>onSliderNearClip(int)</slot>
<slot>onSliderFarClip(int)</slot>
<slot>onSliderAngle(int)</slot>
</slots>
</ui>