summaryrefslogtreecommitdiffstats
path: root/sip/qt/qwidgetstack.sip
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-29 01:11:08 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-29 01:11:08 -0600
commit8a055d66f43592c257cece2eb8cc021808062917 (patch)
treed0922f201bd5d24b62a33160d1d9baf9e89f9a70 /sip/qt/qwidgetstack.sip
parentb388516ca2691303a076a0764fd40bf7116fe43d (diff)
downloadpytqt-8a055d66f43592c257cece2eb8cc021808062917.tar.gz
pytqt-8a055d66f43592c257cece2eb8cc021808062917.zip
Initial TQt conversion
Diffstat (limited to 'sip/qt/qwidgetstack.sip')
-rw-r--r--sip/qt/qwidgetstack.sip70
1 files changed, 35 insertions, 35 deletions
diff --git a/sip/qt/qwidgetstack.sip b/sip/qt/qwidgetstack.sip
index daf6694..59aacc2 100644
--- a/sip/qt/qwidgetstack.sip
+++ b/sip/qt/qwidgetstack.sip
@@ -1,98 +1,98 @@
-// This is the SIP interface definition for QWidgetStack.
+// This is the SIP interface definition for TQWidgetStack.
//
// Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
//
-// This file is part of PyQt.
+// This file is part of PyTQt.
//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
+// 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.
//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
+// 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
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
+// 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>QWidgetStack</Title>
+<Sect2><Title>TQWidgetStack</Title>
<Para>
-<Literal>QWidgetStack</Literal> is fully implemented.
+<Literal>TQWidgetStack</Literal> is fully implemented.
</Para>
</Sect2>
%End
-class QWidgetStack : QFrame
+class TQWidgetStack : TQFrame
{
%TypeHeaderCode
#include <qwidgetstack.h>
%End
public:
- QWidgetStack(QWidget * /TransferThis/ = 0,const char * = 0);
-%If (Qt_3_1_0 -)
- QWidgetStack(QWidget * /TransferThis/,const char *,WFlags);
+ TQWidgetStack(TQWidget * /TransferThis/ = 0,const char * = 0);
+%If (TQt_3_1_0 -)
+ TQWidgetStack(TQWidget * /TransferThis/,const char *,WFlags);
%End
- // The QWidget has it's parent changed to be `this' so it will be
+ // The TQWidget has it's parent changed to be `this' so it will be
// deleted automatically when `this' is deleted. It stays this way
// even if removeWidget() is called, so it isn't transferred back.
-%If (- Qt_3_0_0)
- void addWidget(QWidget * /Transfer/,int);
+%If (- TQt_3_0_0)
+ void addWidget(TQWidget * /Transfer/,int);
%End
-%If (Qt_3_0_0 -)
- int addWidget(QWidget * /Transfer/,int = -1);
+%If (TQt_3_0_0 -)
+ int addWidget(TQWidget * /Transfer/,int = -1);
%End
- void removeWidget(QWidget *);
+ void removeWidget(TQWidget *);
-%If (Qt_2_00 -)
- QSize sizeHint() const;
- QSize minimumSizeHint() const;
+%If (TQt_2_00 -)
+ TQSize sizeHint() const;
+ TQSize minimumSizeHint() const;
%End
void show();
- QWidget *widget(int) const;
- int id(QWidget *) const;
+ TQWidget *widget(int) const;
+ int id(TQWidget *) const;
- QWidget *visibleWidget() const;
+ TQWidget *visibleWidget() const;
-%If (Qt_2_00 -)
- void setFrameRect(const QRect &);
+%If (TQt_2_00 -)
+ void setFrameRect(const TQRect &);
%End
-%If (- Qt_2_00)
- bool event(QEvent *);
+%If (- TQt_2_00)
+ bool event(TQEvent *);
%End
signals:
void aboutToShow(int);
- void aboutToShow(QWidget *);
+ void aboutToShow(TQWidget *);
public slots:
void raiseWidget(int);
- void raiseWidget(QWidget *);
+ void raiseWidget(TQWidget *);
protected:
void frameChanged();
-%If (- Qt_2_00)
+%If (- TQt_2_00)
void setChildGeometries();
%End
-%If (Qt_2_00 -)
- void resizeEvent(QResizeEvent *);
+%If (TQt_2_00 -)
+ void resizeEvent(TQResizeEvent *);
virtual void setChildGeometries();
- void childEvent(QChildEvent *);
+ void childEvent(TQChildEvent *);
%End
private:
-%If (Qt_2_1_0 -)
- QWidgetStack(const QWidgetStack &);
+%If (TQt_2_1_0 -)
+ TQWidgetStack(const TQWidgetStack &);
%End
};