blob: f343f057c53a02afe6450b99884f7df7a095c35c (
plain) (
tree)
|
|
<?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>261</width>
<height>280</height>
</rect>
</property>
<property name="windowTitle">
<string>CD Audio Plugin Settings</string>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<property name="leftMargin">
<number>6</number>
</property>
<property name="rightMargin">
<number>6</number>
</property>
<property name="bottomMargin">
<number>6</number>
</property>
<item row="0" column="0">
<widget class="QCheckBox" name="deviceCheckBox">
<property name="text">
<string>Override device:</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="deviceLineEdit"/>
</item>
<item row="1" column="0">
<widget class="QCheckBox" name="speedCheckBox">
<property name="text">
<string>Limit cd speed:</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QSpinBox" name="speedSpinBox">
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>48</number>
</property>
</widget>
</item>
<item row="2" column="0" colspan="2">
<widget class="QCheckBox" name="cdtextCheckBox">
<property name="text">
<string>Use cd-text</string>
</property>
</widget>
</item>
<item row="3" column="0" colspan="2">
<widget class="QGroupBox" name="cddbGroupBox">
<property name="title">
<string>CDDB</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0" colspan="2">
<widget class="QCheckBox" name="httpCheckBox">
<property name="text">
<string>Use HTTP instead of CDDBP</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="serverLineEdit"/>
</item>
<item row="1" column="0" rowspan="2">
<widget class="QLabel" name="label">
<property name="text">
<string>Server:</string>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="label_2">
<property name="text">
<string>Path:</string>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QLineEdit" name="pathLineEdit"/>
</item>
<item row="4" column="0">
<widget class="QLabel" name="label_3">
<property name="text">
<string>Port:</string>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QLineEdit" name="portLineEdit"/>
</item>
<item row="5" column="0" colspan="2">
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QPushButton" name="clearCacheButton">
<property name="text">
<string>Clear CDDB cache</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
</layout>
</widget>
</item>
<item row="4" column="0" colspan="2">
<widget class="QDialogButtonBox" name="buttonBox">
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>SettingsDialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>253</x>
<y>118</y>
</hint>
<hint type="destinationlabel">
<x>95</x>
<y>53</y>
</hint>
</hints>
</connection>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>SettingsDialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>253</x>
<y>118</y>
</hint>
<hint type="destinationlabel">
<x>130</x>
<y>63</y>
</hint>
</hints>
</connection>
<connection>
<sender>deviceCheckBox</sender>
<signal>toggled(bool)</signal>
<receiver>deviceLineEdit</receiver>
<slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>84</x>
<y>17</y>
</hint>
<hint type="destinationlabel">
<x>151</x>
<y>17</y>
</hint>
</hints>
</connection>
<connection>
<sender>speedCheckBox</sender>
<signal>toggled(bool)</signal>
<receiver>speedSpinBox</receiver>
<slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>99</x>
<y>42</y>
</hint>
<hint type="destinationlabel">
<x>134</x>
<y>45</y>
</hint>
</hints>
</connection>
</connections>
</ui>
|