summaryrefslogtreecommitdiffstats
path: root/sip/qt/qaction.sip
diff options
context:
space:
mode:
Diffstat (limited to 'sip/qt/qaction.sip')
-rw-r--r--sip/qt/qaction.sip62
1 files changed, 0 insertions, 62 deletions
diff --git a/sip/qt/qaction.sip b/sip/qt/qaction.sip
index 7b98a09..f74ca72 100644
--- a/sip/qt/qaction.sip
+++ b/sip/qt/qaction.sip
@@ -36,7 +36,6 @@
%If (TQt_ACTION)
-%If (TQt_2_2_0 -)
class TQAction : TQObject
{
@@ -45,35 +44,19 @@ class TQAction : TQObject
%End
public:
-%If (- TQt_3_0_0)
- TQAction(TQObject * /TransferThis/ = 0,const char * = 0,bool = 0);
- TQAction(const TQString &,const TQIconSet &,const TQString &,int,
- TQObject * /TransferThis/,const char * = 0,bool = 0);
- TQAction(const TQString &,const TQString &,int,TQObject * /TransferThis/,
- const char * = 0,bool = 0);
-%End
-%If (TQt_3_0_0 - TQt_3_2_0)
- TQAction(TQObject * /TransferThis/,const char * = 0,bool = 0);
-%End
-%If (TQt_3_2_0 -)
TQAction(TQObject * /TransferThis/,const char * = 0);
TQAction(const TQString &,TQKeySequence,TQObject * /TransferThis/,
const char * = 0);
TQAction(const TQIconSet &,const TQString &,TQKeySequence,
TQObject * /TransferThis/,const char * = 0);
-%End
-%If (TQt_3_0_0 -)
// Obsolete.
TQAction(const TQString &,const TQIconSet &,const TQString &,TQKeySequence,
TQObject * /TransferThis/,const char * = 0,bool = 0);
// Obsolete.
TQAction(const TQString &,const TQString &,TQKeySequence,
TQObject * /TransferThis/,const char * = 0,bool = 0);
-%End
-%If (TQt_3_2_0 -)
// Obsolete.
TQAction(TQObject * /TransferThis/,const char *,bool);
-%End
virtual void setIconSet(const TQIconSet &);
TQIconSet iconSet() const;
@@ -87,57 +70,34 @@ public:
TQString statusTip() const;
virtual void setWhatsThis(const TQString &);
TQString whatsThis() const;
-%If (- TQt_3_0_0)
- virtual void setAccel(int);
- int accel() const;
-%End
-%If (TQt_3_0_0 -)
virtual void setAccel(const TQKeySequence &);
TQKeySequence accel() const;
-%End
virtual void setToggleAction(bool);
bool isToggleAction() const;
-%If (- TQt_3_0_0)
- virtual void setOn(bool);
-%End
bool isOn() const;
bool isEnabled() const;
-%If (TQt_3_1_0 -)
bool isVisible() const;
-%End
virtual bool addTo(TQWidget *);
virtual bool removeFrom(TQWidget *);
protected:
-%If (TQt_3_0_0 -)
virtual void addedTo(TQWidget *,TQWidget *);
virtual void addedTo(int,TQPopupMenu *);
-%End
public slots:
-%If (TQt_3_3_0 -)
void activate();
-%End
-%If (TQt_3_0_0 -)
void toggle();
virtual void setOn(bool);
-%End
virtual void setEnabled(bool);
-%If (TQt_3_3_0 -)
void setDisabled(bool);
-%End
-%If (TQt_3_1_0 -)
void setVisible(bool);
-%End
signals:
void activated();
void toggled(bool);
private:
-%If (TQt_3_1_0 -)
TQAction(const TQAction &);
-%End
};
@@ -148,36 +108,20 @@ class TQActionGroup : TQAction
%End
public:
-%If (- TQt_3_0_0)
- TQActionGroup(TQWidget * /TransferThis/,const char * = 0,bool = 1);
-%End
-%If (TQt_3_0_0 - TQt_3_2_0)
- TQActionGroup(TQObject * /TransferThis/,const char * = 0,bool = 1);
-%End
-%If (TQt_3_2_0 -)
TQActionGroup(TQObject * /TransferThis/,const char * = 0);
// Obsolete.
TQActionGroup(TQObject * /TransferThis/,const char *,bool);
-%End
void setExclusive(bool);
bool isExclusive() const;
-%If (- TQt_3_0_0)
- void insert(TQAction *);
-%End
-%If (TQt_3_0_0 -)
void add(TQAction *);
void addSeparator();
-%End
bool addTo(TQWidget *);
bool removeFrom(TQWidget *);
void setEnabled(bool);
-%If (TQt_3_2_0 -)
void setToggleAction(bool);
void setOn(bool);
-%End
-%If (TQt_3_0_0 -)
void setUsesDropDown(bool);
bool usesDropDown() const;
@@ -186,25 +130,19 @@ public:
void setMenuText(const TQString &);
void setToolTip(const TQString &);
void setWhatsThis(const TQString &);
-%End
protected:
-%If (TQt_3_0_0 -)
void childEvent(TQChildEvent *);
virtual void addedTo(TQWidget *,TQWidget *,TQAction *);
virtual void addedTo(int,TQPopupMenu *,TQAction *);
virtual void addedTo(TQWidget *,TQWidget *);
virtual void addedTo(int,TQPopupMenu *);
-%End
signals:
void selected(TQAction *);
private:
-%If (TQt_3_1_0 -)
TQActionGroup(const TQActionGroup &);
-%End
};
%End
-%End