|
|
|
@ -42,7 +42,7 @@ class KPushButton;
|
|
|
|
|
|
|
|
|
|
class PostFilterParameter : public TQObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PostFilterParameter(const TQString& name, int offset, TQWidget* parent)
|
|
|
|
@ -61,7 +61,7 @@ protected:
|
|
|
|
|
|
|
|
|
|
class PostFilterParameterInt : public PostFilterParameter
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PostFilterParameterInt(const TQString& name, int offset, int value, int min, int max, TQWidget* parent);
|
|
|
|
@ -86,7 +86,7 @@ private:
|
|
|
|
|
|
|
|
|
|
class PostFilterParameterDouble : public PostFilterParameter
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PostFilterParameterDouble(const TQString& name, int offset, double value, double min, double max, TQWidget* parent);
|
|
|
|
@ -111,7 +111,7 @@ private:
|
|
|
|
|
|
|
|
|
|
class PostFilterParameterChar : public PostFilterParameter
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PostFilterParameterChar(const TQString& name, int offset, char *value, int size, TQWidget* parent);
|
|
|
|
@ -135,7 +135,7 @@ private:
|
|
|
|
|
|
|
|
|
|
class PostFilterParameterCombo : public PostFilterParameter
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PostFilterParameterCombo(const TQString& name, int offset, int value, char **enums, TQWidget* parent);
|
|
|
|
@ -158,7 +158,7 @@ private:
|
|
|
|
|
|
|
|
|
|
class PostFilterParameterBool : public PostFilterParameter
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PostFilterParameterBool(const TQString& name, int offset, bool value, TQWidget* parent);
|
|
|
|
@ -183,7 +183,7 @@ private:
|
|
|
|
|
|
|
|
|
|
class PostFilterHelp : public KDialogBase
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PostFilterHelp(TQWidget *parent=0, const char *name=0, const TQString& text = TQString());
|
|
|
|
@ -196,7 +196,7 @@ private:
|
|
|
|
|
|
|
|
|
|
class PostFilter : public TQObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PostFilter(const TQString& name, xine_t* engine, xine_audio_port_t* audioDriver,
|
|
|
|
|