You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
soundkonverter/src/configbackendspage.h

83 lines
1.5 KiB

#ifndef CONFIGBACKENDSPAGE_H
#define CONFIGBACKENDSPAGE_H
#include <configpagebase.h>
#include <tqstringlist.h>
class Config;
class KComboBox;
class KScrollView;
class TQGroupBox;
class TQGridLayout;
class TQLabel;
class TQSlider;
class TQCheckBox;
class TQVBox;
/**
* @short The page for configuring the environment
* @author Daniel Faust <hessijames@gmail.com>
* @version 0.3
*/
class ConfigBackendsPage : public ConfigPageBase
{
TQ_OBJECT
public:
/**
* Default Constructor
*/
ConfigBackendsPage( Config*, TQMap<TQString, TQString>*, TQWidget *parent=0, const char *name=0 );
/**
* Default Destructor
*/
virtual ~ConfigBackendsPage();
private:
struct FormatOptions
{
// TODO remove the string lists
TQString format;
TQGroupBox* group;
TQGridLayout* grid;
TQLabel* lEncoder;
KComboBox* cEncoder;
TQLabel* lStrength;
TQSlider* sStrength;
TQLabel* lStrengthDisplay;
TQLabel* lDecoder;
KComboBox* cDecoder;
TQLabel* lReplayGain;
KComboBox* cReplayGain;
TQCheckBox* cInternalReplayGain;
};
TQValueList<FormatOptions> formatOptions;
TQGridLayout* grid;
KScrollView* scrollView;
TQVBox* box;
KComboBox* cRipper;
Config* config;
TQMap<TQString, TQString>* binaries;
public slots:
void resetDefaults();
void saveSettings();
void rebuild();
void refill();
void encoderChanged();
void strengthChanged();
};
#endif // CONFIGBACKENDSPAGE_H