00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef EXPORT_FORMAT_OPTIONS_WIDGET_H
00023 #define EXPORT_FORMAT_OPTIONS_WIDGET_H
00024
00025 #include "ui_ExportFormatOptionsWidget.h"
00026
00027 #include <QWidget>
00028
00029 struct ExportSpecification;
00030
00031 class ExportFormatOptionsWidget : public QWidget, protected Ui::ExportFormatOptionsWidget
00032 {
00033 Q_OBJECT
00034
00035 public:
00036 ExportFormatOptionsWidget(QWidget* parent = 0);
00037 ~ExportFormatOptionsWidget();
00038
00039 void get_format_options(ExportSpecification* spec);
00040
00041
00042 private slots:
00043 void audio_type_changed(int index);
00044 void mp3_method_changed(int index);
00045 void ogg_method_changed(int index);
00046 };
00047
00048 #endif
00049
00050
00051
00052
00053