summaryrefslogtreecommitdiffstats
path: root/kaudiocreator/encoderconfig.ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'kaudiocreator/encoderconfig.ui.h')
-rw-r--r--kaudiocreator/encoderconfig.ui.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/kaudiocreator/encoderconfig.ui.h b/kaudiocreator/encoderconfig.ui.h
new file mode 100644
index 00000000..fd95a75a
--- /dev/null
+++ b/kaudiocreator/encoderconfig.ui.h
@@ -0,0 +1,25 @@
+/****************************************************************************
+** ui.h extension file, included from the uic-generated form implementation.
+**
+** If you wish to add, delete or rename functions or slots use
+** Qt Designer which will update this file, preserving your code. Create an
+** init() function in place of a constructor, and a destroy() function in
+** place of a destructor.
+*****************************************************************************/
+
+#include "wizard.h"
+#include <qlineedit.h>
+
+/**
+ * Load up the wizard with the encoder fileFormat string. Save it if OK is hit.
+ */
+void EncoderConfig::encoderWizard(){
+ fileWizard wizard(this, "Encoder File Format Wizard", true);
+ wizard.fileFormat->setText(kcfg_fileFormat->text());
+
+ // Show dialog and save results if ok is pressed.
+ bool okClicked = wizard.exec();
+ if(okClicked){
+ kcfg_fileFormat->setText(wizard.fileFormat->text());
+ }
+}