diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-29 01:11:08 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-29 01:11:08 -0600 |
commit | 8a055d66f43592c257cece2eb8cc021808062917 (patch) | |
tree | d0922f201bd5d24b62a33160d1d9baf9e89f9a70 /sip/qt/qgmanager.sip | |
parent | b388516ca2691303a076a0764fd40bf7116fe43d (diff) | |
download | pytqt-8a055d66f43592c257cece2eb8cc021808062917.tar.gz pytqt-8a055d66f43592c257cece2eb8cc021808062917.zip |
Initial TQt conversion
Diffstat (limited to 'sip/qt/qgmanager.sip')
-rw-r--r-- | sip/qt/qgmanager.sip | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/sip/qt/qgmanager.sip b/sip/qt/qgmanager.sip index 5a194b8..9f81d48 100644 --- a/sip/qt/qgmanager.sip +++ b/sip/qt/qgmanager.sip @@ -1,53 +1,53 @@ -// This is the SIP interface definition for QGManager. +// This is the SIP interface definition for TQGManager. // // 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>QGManager (Qt v1.x)</Title> +<Sect2><Title>TQGManager (TQt v1.x)</Title> <Para> -<Literal>QGManager</Literal> is fully implemented. +<Literal>TQGManager</Literal> is fully implemented. </Para> </Sect2> -<Sect2><Title>QChain (Qt v1.x)</Title> +<Sect2><Title>TQChain (TQt v1.x)</Title> <Para> -<Literal>QChain</Literal> is implemented as an opaque class. +<Literal>TQChain</Literal> is implemented as an opaque class. </Para> </Sect2> %End -%If (- Qt_2_00) +%If (- TQt_2_00) -class QChain; +class TQChain; -class QGManager : QObject +class TQGManager : TQObject { %TypeHeaderCode #include <qgmanager.h> %End public: - QGManager(QWidget *,const char * = 0); + TQGManager(TQWidget *,const char * = 0); enum Direction { LeftToRight, @@ -57,32 +57,32 @@ public: }; enum { - unlimited = QCOORD_MAX + unlimited = TQCOORD_MAX }; void setBorder(int); - QChain *newSerChain(Direction); - QChain *newParChain(Direction); - bool add(QChain *,QChain *,int = 0); - bool addWidget(QChain *,QWidget *,int = 0); - bool addSpacing(QChain *,int,int = 0,int = unlimited); - bool addBranch(QChain *,QChain *,int,int); - void setStretch(QChain *,int); + TQChain *newSerChain(Direction); + TQChain *newParChain(Direction); + bool add(TQChain *,TQChain *,int = 0); + bool addWidget(TQChain *,TQWidget *,int = 0); + bool addSpacing(TQChain *,int,int = 0,int = unlimited); + bool addBranch(TQChain *,TQChain *,int,int); + void setStretch(TQChain *,int); bool activate(); void freeze(int = 0,int = 0); void unFreeze(); - QChain *xChain(); - QChain *yChain(); - void setMenuBar(QWidget *); - QWidget *mainWidget(); - void remove(QWidget *); - void setName(QChain *,const char *); + TQChain *xChain(); + TQChain *yChain(); + void setMenuBar(TQWidget *); + TQWidget *mainWidget(); + void remove(TQWidget *); + void setName(TQChain *,const char *); protected: - bool eventFilter(QObject *,QEvent *); + bool eventFilter(TQObject *,TQEvent *); private: - QGManager(const QGManager &); + TQGManager(const TQGManager &); }; %End |