summaryrefslogtreecommitdiffstats
path: root/sip/tqt/tqaction.sip
diff options
context:
space:
mode:
Diffstat (limited to 'sip/tqt/tqaction.sip')
-rw-r--r--sip/tqt/tqaction.sip148
1 files changed, 148 insertions, 0 deletions
diff --git a/sip/tqt/tqaction.sip b/sip/tqt/tqaction.sip
new file mode 100644
index 0000000..f74ca72
--- /dev/null
+++ b/sip/tqt/tqaction.sip
@@ -0,0 +1,148 @@
+// This is the SIP interface definition for TQAction and TQActionGroup.
+//
+// Copyright (c) 2007
+// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
+//
+// This file is part of PyTQt.
+//
+// This copy of PyTQt is free software; you can redistribute it and/or modify it
+// under the terms of the GNU General Public License as published by the Free
+// Software Foundation; either version 2, or (at your option) any later
+// version.
+//
+// PyTQt is supplied in the hope that it will be useful, but WITHOUT ANY
+// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+// details.
+//
+// You should have received a copy of the GNU General Public License along with
+// PyTQt; see the file LICENSE. If not, write to the Free Software Foundation,
+// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+
+%ExportedDoc
+<Sect2><Title>TQAction (TQt v2.2+)</Title>
+<Para>
+<Literal>TQAction</Literal> is fully implemented.
+</Para>
+
+</Sect2>
+<Sect2><Title>TQActionGroup (TQt v2.2+)</Title>
+<Para>
+<Literal>TQActionGroup</Literal> is fully implemented.
+</Para>
+</Sect2>
+%End
+
+
+%If (TQt_ACTION)
+
+class TQAction : TQObject
+{
+%TypeHeaderCode
+#include <tqaction.h>
+%End
+
+public:
+ 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);
+ // 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);
+ // Obsolete.
+ TQAction(TQObject * /TransferThis/,const char *,bool);
+
+ virtual void setIconSet(const TQIconSet &);
+ TQIconSet iconSet() const;
+ virtual void setText(const TQString &);
+ TQString text() const;
+ virtual void setMenuText(const TQString &);
+ TQString menuText() const;
+ virtual void setToolTip(const TQString &);
+ TQString toolTip() const;
+ virtual void setStatusTip(const TQString &);
+ TQString statusTip() const;
+ virtual void setWhatsThis(const TQString &);
+ TQString whatsThis() const;
+ virtual void setAccel(const TQKeySequence &);
+ TQKeySequence accel() const;
+ virtual void setToggleAction(bool);
+ bool isToggleAction() const;
+ bool isOn() const;
+ bool isEnabled() const;
+ bool isVisible() const;
+ virtual bool addTo(TQWidget *);
+ virtual bool removeFrom(TQWidget *);
+
+protected:
+ virtual void addedTo(TQWidget *,TQWidget *);
+ virtual void addedTo(int,TQPopupMenu *);
+
+public slots:
+ void activate();
+ void toggle();
+ virtual void setOn(bool);
+ virtual void setEnabled(bool);
+ void setDisabled(bool);
+ void setVisible(bool);
+
+signals:
+ void activated();
+ void toggled(bool);
+
+private:
+ TQAction(const TQAction &);
+};
+
+
+class TQActionGroup : TQAction
+{
+%TypeHeaderCode
+#include <tqaction.h>
+%End
+
+public:
+ TQActionGroup(TQObject * /TransferThis/,const char * = 0);
+ // Obsolete.
+ TQActionGroup(TQObject * /TransferThis/,const char *,bool);
+
+ void setExclusive(bool);
+ bool isExclusive() const;
+ void add(TQAction *);
+ void addSeparator();
+ bool addTo(TQWidget *);
+ bool removeFrom(TQWidget *);
+ void setEnabled(bool);
+ void setToggleAction(bool);
+ void setOn(bool);
+
+ void setUsesDropDown(bool);
+ bool usesDropDown() const;
+
+ void setIconSet(const TQIconSet &);
+ void setText(const TQString &);
+ void setMenuText(const TQString &);
+ void setToolTip(const TQString &);
+ void setWhatsThis(const TQString &);
+
+protected:
+ 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 *);
+
+signals:
+ void selected(TQAction *);
+
+private:
+ TQActionGroup(const TQActionGroup &);
+};
+
+%End