From 8a055d66f43592c257cece2eb8cc021808062917 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 29 Nov 2011 01:11:08 -0600 Subject: Initial TQt conversion --- sip/qt/qtextstream.sip | 108 ++++++++++++++++++++++++------------------------- 1 file changed, 54 insertions(+), 54 deletions(-) (limited to 'sip/qt/qtextstream.sip') diff --git a/sip/qt/qtextstream.sip b/sip/qt/qtextstream.sip index 7e8abcd..d546eb2 100644 --- a/sip/qt/qtextstream.sip +++ b/sip/qt/qtextstream.sip @@ -1,30 +1,30 @@ -// This is the SIP interface definition for QTextStream, QTextIStream and -// QTextOStream. +// This is the SIP interface definition for TQTextStream, TQTextIStream and +// TQTextOStream. // // Copyright (c) 2007 // Riverbank Computing Limited // -// 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 -QTextStream +TQTextStream - QTextStream + TQTextStream FILE *fp int mode @@ -33,7 +33,7 @@ Not implemented. - QTextStream &readRawBytes + TQTextStream &readRawBytes char *buf uint len @@ -42,7 +42,7 @@ Not yet implemented. - QTextStream &writeRawBytes + TQTextStream &writeRawBytes const char *buf uint len @@ -51,9 +51,9 @@ Not yet implemented. -QTextIStream (Qt v2+) +TQTextIStream (TQt v2+) - QTextIStream + TQTextIStream FILE *fp int mode @@ -62,9 +62,9 @@ Not implemented. -QTextOStream (Qt v2+) +TQTextOStream (TQt v2+) - QTextOStream + TQTextOStream FILE *fp int mode @@ -75,14 +75,14 @@ Not implemented. %End -class QTextStream +class TQTextStream { %TypeHeaderCode #include %End public: -%If (Qt_2_00 - Qt_2_2_0) +%If (TQt_2_00 - TQt_2_2_0) enum Encoding { Locale, Latin1, @@ -92,7 +92,7 @@ public: RawUnicode }; %End -%If (Qt_2_2_0 -) +%If (TQt_2_2_0 -) enum Encoding { Locale, Latin1, @@ -104,37 +104,37 @@ public: }; %End - QTextStream(); - QTextStream(QIODevice *); -%If (Qt_2_00 -) - QTextStream(QString *,int); + TQTextStream(); + TQTextStream(TQIODevice *); +%If (TQt_2_00 -) + TQTextStream(TQString *,int); %End - QTextStream(QByteArray,int); -// QTextStream(FILE *,int); + TQTextStream(TQByteArray,int); +// TQTextStream(FILE *,int); -%If (Qt_2_00 -) +%If (TQt_2_00 -) void setEncoding(Encoding); - void setCodec(QTextCodec *); + void setCodec(TQTextCodec *); %End -%If (Qt_3_1_0 -) - QTextCodec *codec(); +%If (TQt_3_1_0 -) + TQTextCodec *codec(); %End - QIODevice *device() const; - void setDevice(QIODevice *); + TQIODevice *device() const; + void setDevice(TQIODevice *); void unsetDevice(); -%If (Qt_2_00 -) +%If (TQt_2_00 -) bool atEnd() const; %End bool eof() const; -// QTextStream &readRawBytes(char *,uint) /ReleaseGIL/; -// QTextStream &writeRawBytes(const char *,uint) /ReleaseGIL/; +// TQTextStream &readRawBytes(char *,uint) /ReleaseGIL/; +// TQTextStream &writeRawBytes(const char *,uint) /ReleaseGIL/; - QString readLine() /ReleaseGIL/; -%If (Qt_2_00 -) - QString read() /ReleaseGIL/; + TQString readLine() /ReleaseGIL/; +%If (TQt_2_00 -) + TQString read() /ReleaseGIL/; void skipWhiteSpace(); %End @@ -174,57 +174,57 @@ public: int precision() const; int precision(int); -%If (Qt_3_0_0 -) +%If (TQt_3_0_0 -) // These are defined in qmainwindow.h as global operators so we have // to implement them here and pretend they are class operators. - QTextStream &operator<<(const QMainWindow &); - QTextStream &operator>>(QMainWindow &); + TQTextStream &operator<<(const TQMainWindow &); + TQTextStream &operator>>(TQMainWindow &); // These are defined in qdockarea.h as global operators so we have // to implement them here and pretend they are class operators. - QTextStream &operator<<(const QDockArea &); - QTextStream &operator>>(QDockArea &); + TQTextStream &operator<<(const TQDockArea &); + TQTextStream &operator>>(TQDockArea &); %End private: - QTextStream(const QTextStream &); + TQTextStream(const TQTextStream &); }; -%If (Qt_2_00 -) +%If (TQt_2_00 -) -class QTextIStream : QTextStream +class TQTextIStream : TQTextStream { %TypeHeaderCode #include %End public: - QTextIStream(QString *); - QTextIStream(QByteArray); -// QTextIStream(FILE *); + TQTextIStream(TQString *); + TQTextIStream(TQByteArray); +// TQTextIStream(FILE *); private: -%If (Qt_3_1_0 -) - QTextIStream(const QTextIStream &); +%If (TQt_3_1_0 -) + TQTextIStream(const TQTextIStream &); %End }; -class QTextOStream : QTextStream +class TQTextOStream : TQTextStream { %TypeHeaderCode #include %End public: - QTextOStream(QString *); - QTextOStream(QByteArray); -// QTextOStream(FILE *); + TQTextOStream(TQString *); + TQTextOStream(TQByteArray); +// TQTextOStream(FILE *); private: -%If (Qt_3_1_0 -) - QTextOStream(const QTextOStream &); +%If (TQt_3_1_0 -) + TQTextOStream(const TQTextOStream &); %End }; -- cgit v1.2.3