1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
/***************************************************************************
MP3EncoderDialog.h - dialog for configuring the MP3 encoer
-------------------
begin : Sun Jun 03 2012
copyright : (C) 2012 by Thomas Eschenbacher
email : Thomas.Eschenbacher@gmx.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef MP3_ENCODER_DIALOG_H
#define MP3_ENCODER_DIALOG_H
#include "config.h"
#include <QDialog>
#include <QMap>
#include <QString>
#include "MP3EncoderSettings.h"
#include "ui_MP3EncoderDialogBase.h"
class QAbstractButton;
class QWidget;
namespace Kwave
{
class MP3EncoderDialog :public QDialog,
public Ui::MP3EncoderDialogBase
{
Q_OBJECT
public:
/** Constructor */
explicit MP3EncoderDialog(QWidget *parent);
/** Destructor */
virtual ~MP3EncoderDialog() override;
public slots:
/** load all settings from the config file */
void load();
/** store all settings to a config file */
void save();
private slots:
/** called when the selection of the program has changed */
void selectProgram(int index);
/** called whenever an edit field has changed its value */
void switchToUserDefined();
/** evaluates a click to one of the standard buttons */
void buttonClicked(QAbstractButton *button);
/** auto-detect settings */
void autoDetect();
/** locate the full path of the file */
void locatePath();
/** search for the program, file browser */
void browseFile();
/** test the settings */
void testSettings();
/** show help about the encoder */
void encoderHelp();
/** show the help page the manual */
void invokeHelp();
private:
/**
* Calls the program with one parameter and returns the output
* of stderr/stdout (combined) as a string
* @param path the path of the program to call
* @param param a command line parameter
* @return string with combined stdout/stderr
*/
QString callWithParam(const QString &path, const QString ¶m);
/**
* Retrieves the title/name of an encoder by calling it once
* @param path the path of the encoder program
* @param param the command line parameter to get the version
* @return title of the encoder
*/
QString encoderVersion(const QString &path, const QString ¶m);
/**
* Search for an encoder in the system PATH
* @param program name of the program
* @return full path where it can be found,
* or the value of the parameter "program" if not found
*/
QString searchPath(const QString &program);
/** updates the version info string of the current encoder */
void updateEncoderInfo();
private:
/** current encoder settings, complete struct */
Kwave::MP3EncoderSettings m_settings;
};
}
#endif /* MP3_ENCODER_DIALOG_H */
//***************************************************************************
//***************************************************************************
|