diff options
Diffstat (limited to 'plugins/encoder/external/base_k3bexternalencodereditwidget.ui')
-rw-r--r-- | plugins/encoder/external/base_k3bexternalencodereditwidget.ui | 164 |
1 files changed, 164 insertions, 0 deletions
diff --git a/plugins/encoder/external/base_k3bexternalencodereditwidget.ui b/plugins/encoder/external/base_k3bexternalencodereditwidget.ui new file mode 100644 index 0000000..9f3fb5a --- /dev/null +++ b/plugins/encoder/external/base_k3bexternalencodereditwidget.ui @@ -0,0 +1,164 @@ +<!DOCTYPE UI><UI version="3.2" stdsetdef="1"> +<class>base_K3bExternalEncoderEditWidget</class> +<author>Sebastian Trueg</author> +<widget class="QWidget"> + <property name="name"> + <cstring>base_K3bExternalEncoderEditWidget</cstring> + </property> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>529</width> + <height>514</height> + </rect> + </property> + <vbox> + <property name="name"> + <cstring>unnamed</cstring> + </property> + <property name="margin"> + <number>0</number> + </property> + <widget class="QGroupBox"> + <property name="name"> + <cstring>groupBox3</cstring> + </property> + <property name="title"> + <string>General</string> + </property> + <grid> + <property name="name"> + <cstring>unnamed</cstring> + </property> + <widget class="KLineEdit" row="1" column="1"> + <property name="name"> + <cstring>m_editExtension</cstring> + </property> + </widget> + <widget class="KLineEdit" row="1" column="0"> + <property name="name"> + <cstring>m_editName</cstring> + </property> + </widget> + <widget class="QLabel" row="0" column="0"> + <property name="name"> + <cstring>textLabel1</cstring> + </property> + <property name="text"> + <string>Name:</string> + </property> + </widget> + <widget class="QLabel" row="0" column="1"> + <property name="name"> + <cstring>textLabel3</cstring> + </property> + <property name="text"> + <string>Filename extension:</string> + </property> + </widget> + </grid> + </widget> + <widget class="QGroupBox"> + <property name="name"> + <cstring>groupBox2</cstring> + </property> + <property name="title"> + <string>Command</string> + </property> + <vbox> + <property name="name"> + <cstring>unnamed</cstring> + </property> + <widget class="KActiveLabel"> + <property name="name"> + <cstring>kActiveLabel2</cstring> + </property> + <property name="text"> + <string><p><b>Command</b><br> +Please insert the command used to encode the audio data. The command has to read raw little endian (see <em>Swap Byte Order</em>) 16bit stereo audio frames from stdin. +<p>The following strings will be replaced by K3b:<br> +<b>%f</b> - The filename of the resulting file. This is where the command has to write its output to.<br> +<em>The following refer to metadata stored for example in the ID3 tag of am mp3 file (Be aware that these values might be empty).</em><br> +<b>%t</b> - Title<br> +<b>%a</b> - Artist<br> +<b>%c</b> - Comment<br> +<b>%n</b> - Track number<br> +<b>%m</b> - Album Title<br> +<b>%r</b> - Album Artist<br> +<b>%x</b> - Album comment<br> +<b>%y</b> - Release Year</string> + </property> + </widget> + <widget class="KLineEdit"> + <property name="name"> + <cstring>m_editCommand</cstring> + </property> + <property name="sizePolicy"> + <sizepolicy> + <hsizetype>7</hsizetype> + <vsizetype>0</vsizetype> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + </widget> + </vbox> + </widget> + <widget class="QGroupBox"> + <property name="name"> + <cstring>groupBox4</cstring> + </property> + <property name="title"> + <string>Options</string> + </property> + <vbox> + <property name="name"> + <cstring>unnamed</cstring> + </property> + <widget class="QCheckBox"> + <property name="name"> + <cstring>m_checkSwapByteOrder</cstring> + </property> + <property name="text"> + <string>Swap &Byte Order</string> + </property> + <property name="toolTip" stdset="0"> + <string>Swap the byte order of the input data</string> + </property> + <property name="whatsThis" stdset="0"> + <string><p> If this option is checked K3b will swap the byte order of the input data. Thus, the command has to read big endian audio frames. +<p>If the resulting audio file sounds bad it is highly likely that the byte order is wrong and this option has to be checked.</string> + </property> + </widget> + <widget class="QCheckBox"> + <property name="name"> + <cstring>m_checkWriteWaveHeader</cstring> + </property> + <property name="text"> + <string>Write W&ave Header</string> + </property> + <property name="toolTip" stdset="0"> + <string>Create a wave header for the input data</string> + </property> + <property name="whatsThis" stdset="0"> + <string><p>If this option is checked K3b will write a wave header. This is useful in case the encoder application cannot read plain raw audio data.</string> + </property> + </widget> + </vbox> + </widget> + </vbox> +</widget> +<tabstops> + <tabstop>m_editName</tabstop> + <tabstop>m_editExtension</tabstop> + <tabstop>m_editCommand</tabstop> +</tabstops> +<layoutdefaults spacing="6" margin="11"/> +<includehints> + <includehint>klineedit.h</includehint> + <includehint>klineedit.h</includehint> + <includehint>kactivelabel.h</includehint> + <includehint>klineedit.h</includehint> +</includehints> +</UI> |