|
|
|
@ -30,7 +30,7 @@ class Variant;
|
|
|
|
|
class PIEditor : public TQWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PIEditor(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
|
|
|
|
|
~PIEditor();
|
|
|
|
@ -53,7 +53,7 @@ class PIEditor : public TQWidget
|
|
|
|
|
class PIBool : public PIEditor
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PIBool( TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0 );
|
|
|
|
|
~PIBool();
|
|
|
|
@ -74,7 +74,7 @@ class PIBool : public PIEditor
|
|
|
|
|
class PIColor : public PIEditor
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PIColor(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
|
|
|
|
|
~PIColor();
|
|
|
|
@ -96,7 +96,7 @@ Allows the editing of double precision numerical values, using the DoubleNum wid
|
|
|
|
|
class PIDouble : public PIEditor
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PIDouble(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
|
|
|
|
|
~PIDouble();
|
|
|
|
@ -116,7 +116,7 @@ class PIDouble : public PIEditor
|
|
|
|
|
class PIFilename : public PIEditor
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PIFilename(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
|
|
|
|
|
~PIFilename();
|
|
|
|
@ -138,7 +138,7 @@ class PIFilename : public PIEditor
|
|
|
|
|
class PIInt : public PIEditor
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PIInt( const TQString &id, Variant *data, TQWidget *parent = 0, const char *name = 0);
|
|
|
|
|
~PIInt();
|
|
|
|
@ -158,7 +158,7 @@ class PIInt : public PIEditor
|
|
|
|
|
class PILineEdit : public PIEditor
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PILineEdit(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
|
|
|
|
|
~PILineEdit();
|
|
|
|
@ -178,7 +178,7 @@ class PILineEdit : public PIEditor
|
|
|
|
|
class PIStringCombo : public PIEditor
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PIStringCombo(TQString id, Variant *data, TQWidget *parent, const char *name = 0);
|
|
|
|
|
~PIStringCombo();
|
|
|
|
|