From 875ae8e38bc3663e5057ca910e7ebe4b2994edb9 Mon Sep 17 00:00:00 2001 From: tpearson Date: Tue, 14 Sep 2010 19:47:20 +0000 Subject: Updated python directory git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1175349 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- python/pyqt/sip/qt/qdatastream.sip | 224 ------------------------------------- 1 file changed, 224 deletions(-) delete mode 100644 python/pyqt/sip/qt/qdatastream.sip (limited to 'python/pyqt/sip/qt/qdatastream.sip') diff --git a/python/pyqt/sip/qt/qdatastream.sip b/python/pyqt/sip/qt/qdatastream.sip deleted file mode 100644 index f5c09079..00000000 --- a/python/pyqt/sip/qt/qdatastream.sip +++ /dev/null @@ -1,224 +0,0 @@ -// This is the SIP interface definition for QDataStream. -// -// Copyright (c) 2007 -// Riverbank Computing Limited -// -// This file is part of PyQt. -// -// This copy of PyQt 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 -// 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, -// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - -%ExportedDoc -QDataStream - - QDataStream &readBytes - const char *&s - uint &l - - -This takes no parameters. The QDataStream result and the -data read are returned as a tuple. - - - - QDataStream &readRawBytes - const char *s - uint l - - -This takes only the l parameter. The -QDataStream result and the data read are returned as a -tuple. - - - - QDataStream &writeBytes - const char *s - uint len - - -len is derived from s and not passed as a -parameter. - - - - QDataStream &writeRawBytes - const char *s - uint len - - -len is derived from s and not passed as a -parameter. - - -%End - - -class QDataStream -{ -%TypeHeaderCode -#include -%End - -public: - QDataStream(); - QDataStream(QIODevice *); - QDataStream(QByteArray,int); - - QIODevice *device() const; - void setDevice(QIODevice *); - void unsetDevice(); -%If (Qt_2_00 -) - bool atEnd() const; -%End - bool eof() const; - - enum ByteOrder { - BigEndian, - LittleEndian - }; - - int byteOrder() const; - void setByteOrder(int); - bool isPrintableData() const; - void setPrintableData(bool); - int version() const; - void setVersion(int); - - SIP_PYTUPLE readBytes() /ReleaseGIL/; -%MethodCode - char *c; - uint l; - - Py_BEGIN_ALLOW_THREADS - sipCpp -> QDataStream::readBytes(c,l); - Py_END_ALLOW_THREADS - - sipRes = sipBuildResult(&sipIsErr,"(Sa)",sipSelf,c,l); - - if (c) - delete[] c; -%End - - SIP_PYTUPLE readRawBytes(uint) /ReleaseGIL/; -%MethodCode - char *buf; - - if ((buf = (char *)sipMalloc(a0)) == NULL) - sipIsErr = 1; - else - { - Py_BEGIN_ALLOW_THREADS - sipCpp -> QDataStream::readRawBytes(buf,a0); - Py_END_ALLOW_THREADS - - sipRes = sipBuildResult(&sipIsErr,"(Sa)",sipSelf,buf,a0); - - sipFree((ANY *)buf); - } -%End - - QDataStream &writeBytes(const char * /Array/, - uint /ArraySize/) /ReleaseGIL/; - QDataStream &writeRawBytes(const char * /Array/, - uint /ArraySize/) /ReleaseGIL/; - -%If (Qt_3_0_0 -) - // These are taken from the corresponding class definitions. We limit - // them to Qt v3.0.0 and later just to avoid checking earlier versions. - - QDataStream &operator<<(const QBrush &); - QDataStream &operator>>(QBrush & /Constrained/); - - QDataStream &operator<<(const QColor &); - QDataStream &operator>>(QColor & /Constrained/); - - QDataStream &operator<<(const QByteArray &); - QDataStream &operator>>(QByteArray & /Constrained/); - - QDataStream &operator<<(const QCString &); - QDataStream &operator>>(QCString & /Constrained/); - - QDataStream &operator<<(const QCursor &); - QDataStream &operator>>(QCursor & /Constrained/); - - QDataStream &operator<<(const QDate &); - QDataStream &operator>>(QDate & /Constrained/); - - QDataStream &operator<<(const QTime &); - QDataStream &operator>>(QTime & /Constrained/); - - QDataStream &operator<<(const QDateTime &); - QDataStream &operator>>(QDateTime & /Constrained/); - - QDataStream &operator<<(const QFont &); - QDataStream &operator>>(QFont & /Constrained/); - - QDataStream &operator<<(const QImage &); - QDataStream &operator>>(QImage & /Constrained/); - - QDataStream &operator<<(const QKeySequence &); - QDataStream &operator>>(QKeySequence & /Constrained/); - - QDataStream &operator<<(const QColorGroup &); - QDataStream &operator>>(QColorGroup & /Constrained/); - - QDataStream &operator<<(const QPalette &); - QDataStream &operator>>(QPalette & /Constrained/); - - QDataStream &operator<<(const QPen &); - QDataStream &operator>>(QPen & /Constrained/); - - QDataStream &operator<<(const QPicture &); - QDataStream &operator>>(QPicture & /Constrained/); - - QDataStream &operator<<(const QPixmap &); - QDataStream &operator>>(QPixmap & /Constrained/); - - QDataStream &operator<<(const QPointArray &); - QDataStream &operator>>(QPointArray & /Constrained/); - - QDataStream &operator<<(const QPoint &); - QDataStream &operator>>(QPoint & /Constrained/); - - QDataStream &operator<<(const QRect &); - QDataStream &operator>>(QRect & /Constrained/); - - QDataStream &operator<<(const QRegion &); - QDataStream &operator>>(QRegion & /Constrained/); - - QDataStream &operator<<(const QSize &); - QDataStream &operator>>(QSize & /Constrained/); - - QDataStream &operator<<(const QString &); - QDataStream &operator>>(QString & /Constrained/); - - QDataStream &operator<<(const QStringList &); - QDataStream &operator>>(QStringList & /Constrained/); - - QDataStream &operator<<(const QVariant &); - QDataStream &operator>>(QVariant & /Constrained/); - - QDataStream &operator<<(const QWMatrix &); - QDataStream &operator>>(QWMatrix & /Constrained/); -%End -%If (Qt_3_1_0 -) - QDataStream &operator<<(const QUuid &); - QDataStream &operator>>(QUuid & /Constrained/); -%End - -private: - QDataStream(const QDataStream &); -}; -- cgit v1.2.3