Files
renderdoc/qrenderdoc/Windows/Dialogs/AxisMappingDialog.ui
T
Orson Baines 35f4fad20e Issue 2322: Configure mesh coordinate system
- Add a new combo box and button to camera settings for mesh viewer
- Add a new dialog window for custom axis mappings
- Implement the axis mappings in gl driver (other drivers to come)
2021-11-08 11:39:28 +00:00

88 lines
2.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>AxisMappingDialog</class>
<widget class="QDialog" name="AxisMappingDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>300</width>
<height>200</height>
</rect>
</property>
<property name="windowTitle">
<string>Edit Custom Mapping</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<property name="sizeConstraint">
<enum>QLayout::SetFixedSize</enum>
</property>
<property name="leftMargin">
<number>30</number>
</property>
<property name="topMargin">
<number>30</number>
</property>
<property name="rightMargin">
<number>30</number>
</property>
<property name="bottomMargin">
<number>30</number>
</property>
<item>
<layout class="QGridLayout" name="gridLayout_5">
<property name="bottomMargin">
<number>10</number>
</property>
<item row="0" column="0">
<widget class="QLabel" name="xAxisLabel">
<property name="text">
<string>X Axis:</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QComboBox" name="xAxisCombo"/>
</item>
<item row="1" column="0">
<widget class="QLabel" name="yAxisLabel">
<property name="text">
<string>Y Axis:</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QComboBox" name="yAxisCombo"/>
</item>
<item row="2" column="0">
<widget class="QLabel" name="zAxisLabel">
<property name="text">
<string>Z Axis:</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QComboBox" name="zAxisCombo"/>
</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>
<property name="centerButtons">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
<resources>
<include location="../../Resources/resources.qrc"/>
</resources>
</ui>