|
|
|
@ -43,7 +43,7 @@ class KPushButton;
|
|
|
|
|
class PostFilterParameter : public TQObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PostFilterParameter(const TQString& name, int offset, TQWidget* parent)
|
|
|
|
|
: TQObject(parent, name.ascii()), m_offset(offset)
|
|
|
|
@ -62,7 +62,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);
|
|
|
|
|
~PostFilterParameterInt() {};
|
|
|
|
@ -87,7 +87,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);
|
|
|
|
|
~PostFilterParameterDouble() {};
|
|
|
|
@ -112,7 +112,7 @@ private:
|
|
|
|
|
class PostFilterParameterChar : public PostFilterParameter
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PostFilterParameterChar(const TQString& name, int offset, char *value, int size, TQWidget* parent);
|
|
|
|
|
~PostFilterParameterChar() {};
|
|
|
|
@ -136,7 +136,7 @@ private:
|
|
|
|
|
class PostFilterParameterCombo : public PostFilterParameter
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PostFilterParameterCombo(const TQString& name, int offset, int value, char **enums, TQWidget* parent);
|
|
|
|
|
~PostFilterParameterCombo() {};
|
|
|
|
@ -159,7 +159,7 @@ private:
|
|
|
|
|
class PostFilterParameterBool : public PostFilterParameter
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PostFilterParameterBool(const TQString& name, int offset, bool value, TQWidget* parent);
|
|
|
|
|
~PostFilterParameterBool() {};
|
|
|
|
@ -184,7 +184,7 @@ private:
|
|
|
|
|
class PostFilterHelp : public KDialogBase
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PostFilterHelp(TQWidget *parent=0, const char *name=0, const TQString& text = TQString());
|
|
|
|
|
~PostFilterHelp();
|
|
|
|
@ -197,7 +197,7 @@ private:
|
|
|
|
|
class PostFilter : public TQObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PostFilter(const TQString& name, xine_t* engine, xine_audio_port_t* audioDriver,
|
|
|
|
|
xine_video_port_t* videoDriver, TQWidget *parent);
|
|
|
|
|