summaryrefslogtreecommitdiffstats
path: root/lib/koproperty/editors/spinbox.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
commitf008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch)
tree8e9244c4d4957c36be81e15b566b4aa5ea26c982 /lib/koproperty/editors/spinbox.h
parent1210f27b660efb7b37ff43ec68763e85a403471f (diff)
downloadkoffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz
koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/koproperty/editors/spinbox.h')
-rw-r--r--lib/koproperty/editors/spinbox.h36
1 files changed, 20 insertions, 16 deletions
diff --git a/lib/koproperty/editors/spinbox.h b/lib/koproperty/editors/spinbox.h
index 527aae4f..d16cc3e9 100644
--- a/lib/koproperty/editors/spinbox.h
+++ b/lib/koproperty/editors/spinbox.h
@@ -35,29 +35,31 @@ class DoubleEdit;
class IntSpinBox : public KIntSpinBox
{
Q_OBJECT
+ TQ_OBJECT
public:
IntSpinBox(int lower, int upper, int step, int value, int base=10,
- IntEdit *parent=0, const char *name=0);
+ IntEdit *tqparent=0, const char *name=0);
virtual ~IntSpinBox() {;}
- virtual void setValue(const QVariant &value);
+ virtual void setValue(const TQVariant &value);
- virtual bool eventFilter(QObject *o, QEvent *e);
- QLineEdit * editor () const { return KIntSpinBox::editor(); }
+ virtual bool eventFilter(TQObject *o, TQEvent *e);
+ TQLineEdit * editor () const { return KIntSpinBox::editor(); }
};
class KOPROPERTY_EXPORT IntEdit : public Widget
{
Q_OBJECT
+ TQ_OBJECT
public:
- IntEdit(Property *property, QWidget *parent=0, const char *name=0);
+ IntEdit(Property *property, TQWidget *tqparent=0, const char *name=0);
virtual ~IntEdit();
- virtual QVariant value() const;
- virtual void setValue(const QVariant &value, bool emitChange=true);
- virtual void drawViewer(QPainter *p, const QColorGroup &cg, const QRect &r, const QVariant &value);
+ virtual TQVariant value() const;
+ virtual void setValue(const TQVariant &value, bool emitChange=true);
+ virtual void drawViewer(TQPainter *p, const TQColorGroup &cg, const TQRect &r, const TQVariant &value);
protected:
virtual void setReadOnlyInternal(bool readOnly);
@@ -75,31 +77,33 @@ class KOPROPERTY_EXPORT IntEdit : public Widget
class DoubleSpinBox : public KDoubleSpinBox
{
Q_OBJECT
+ TQ_OBJECT
public:
//! \todo Support setting precision limits, step, etc.
DoubleSpinBox(double lower, double upper, double step, double value=0,
- int precision=2, DoubleEdit *parent=0);
+ int precision=2, DoubleEdit *tqparent=0);
virtual ~DoubleSpinBox() {;}
- virtual bool eventFilter(QObject *o, QEvent *e);
- QLineEdit * editor () const { return KDoubleSpinBox::editor(); }
+ virtual bool eventFilter(TQObject *o, TQEvent *e);
+ TQLineEdit * editor () const { return KDoubleSpinBox::editor(); }
public slots:
- virtual void setValue( const QVariant& value );
+ virtual void setValue( const TQVariant& value );
};
class KOPROPERTY_EXPORT DoubleEdit : public Widget
{
Q_OBJECT
+ TQ_OBJECT
public:
- DoubleEdit(Property *property, QWidget *parent=0, const char *name=0);
+ DoubleEdit(Property *property, TQWidget *tqparent=0, const char *name=0);
virtual ~DoubleEdit();
- virtual QVariant value() const;
- virtual void setValue(const QVariant &value, bool emitChange=true);
- virtual void drawViewer(QPainter *p, const QColorGroup &cg, const QRect &r, const QVariant &value);
+ virtual TQVariant value() const;
+ virtual void setValue(const TQVariant &value, bool emitChange=true);
+ virtual void drawViewer(TQPainter *p, const TQColorGroup &cg, const TQRect &r, const TQVariant &value);
protected:
virtual void setReadOnlyInternal(bool readOnly);