initial commit

This commit is contained in:
2019-10-28 17:23:29 +01:00
parent 0896dcae4d
commit 0caaf37ead
713 changed files with 6243 additions and 12 deletions
+136
View File
@@ -0,0 +1,136 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>cExportDialog</class>
<widget class="QDialog" name="cExportDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>135</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<item row="0" column="0">
<layout class="QGridLayout" name="gridLayout" columnstretch="0,0">
<item row="2" column="0">
<widget class="QLabel" name="label_3">
<property name="text">
<string>quality:</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_2">
<property name="text">
<string>file format:</string>
</property>
<property name="buddy">
<cstring>m_lpFileFormat</cstring>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QComboBox" name="m_lpFileFormat"/>
</item>
<item row="0" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>destination path:</string>
</property>
<property name="buddy">
<cstring>m_lpDestinationPath</cstring>
</property>
</widget>
</item>
<item row="2" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QSlider" name="m_lpQuality">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="tickPosition">
<enum>QSlider::TicksBelow</enum>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="m_lpQualityValue">
<property name="text">
<string>0</string>
</property>
<property name="buddy">
<cstring>m_lpQuality</cstring>
</property>
</widget>
</item>
</layout>
</item>
<item row="0" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_3" stretch="0,0">
<item>
<widget class="QLineEdit" name="m_lpDestinationPath"/>
</item>
<item>
<widget class="QPushButton" name="m_lpDestinationPathBrowse">
<property name="text">
<string>...</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</item>
<item row="1" column="0">
<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>
<resources/>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>cExportDialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>227</x>
<y>117</y>
</hint>
<hint type="destinationlabel">
<x>157</x>
<y>134</y>
</hint>
</hints>
</connection>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>cExportDialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>295</x>
<y>123</y>
</hint>
<hint type="destinationlabel">
<x>286</x>
<y>134</y>
</hint>
</hints>
</connection>
</connections>
</ui>