summaryrefslogtreecommitdiffstats
path: root/sip/qtnetwork/qsocketdevice.sip
diff options
context:
space:
mode:
Diffstat (limited to 'sip/qtnetwork/qsocketdevice.sip')
-rw-r--r--sip/qtnetwork/qsocketdevice.sip58
1 files changed, 29 insertions, 29 deletions
diff --git a/sip/qtnetwork/qsocketdevice.sip b/sip/qtnetwork/qsocketdevice.sip
index 3b48096..b9249d8 100644
--- a/sip/qtnetwork/qsocketdevice.sip
+++ b/sip/qtnetwork/qsocketdevice.sip
@@ -1,27 +1,27 @@
-// This is the SIP interface definition for QSocketDevice.
+// This is the SIP interface definition for TQSocketDevice.
//
// 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>QSocketDevice (Qt v2.2+)</Title>
+<Sect2><Title>TQSocketDevice (TQt v2.2+)</Title>
<FuncSynopsis>
<FuncDef>Q_LONG <Function>readBlock</Function></FuncDef>
<ParamDef>char *<Parameter>data</Parameter></ParamDef>
@@ -46,9 +46,9 @@ as a parameter.
%End
-%If (Qt_2_2_0 -)
+%If (TQt_2_2_0 -)
-class QSocketDevice : QIODevice
+class TQSocketDevice : TQIODevice
{
%TypeHeaderCode
#include <qsocketdevice.h>
@@ -60,7 +60,7 @@ public:
Datagram
};
-%If (Qt_3_3_0 -)
+%If (TQt_3_3_0 -)
enum Protocol {
IPv4,
IPv6,
@@ -68,15 +68,15 @@ public:
};
%End
- QSocketDevice(Type = Stream);
-%If (Qt_3_3_0 -)
- QSocketDevice(Type,Protocol,int);
+ TQSocketDevice(Type = Stream);
+%If (TQt_3_3_0 -)
+ TQSocketDevice(Type,Protocol,int);
%End
- QSocketDevice(int,Type);
+ TQSocketDevice(int,Type);
bool isValid() const;
Type type() const;
-%If (Qt_3_3_0 -)
+%If (TQt_3_3_0 -)
Protocol protocol() const;
%End
@@ -87,12 +87,12 @@ public:
void close();
void flush() /ReleaseGIL/;
-%If (- Qt_3_0_0)
+%If (- TQt_3_0_0)
uint size() const;
int at() const;
bool at(int);
%End
-%If (Qt_3_0_0 -)
+%If (TQt_3_0_0 -)
Offset size() const;
Offset at() const;
bool at(Offset);
@@ -110,22 +110,22 @@ public:
int sendBufferSize() const;
virtual void setSendBufferSize(uint);
- virtual bool connect(const QHostAddress &,Q_UINT16);
+ virtual bool connect(const TQHostAddress &,Q_UINT16);
- virtual bool bind(const QHostAddress &,Q_UINT16);
+ virtual bool bind(const TQHostAddress &,Q_UINT16);
virtual bool listen(int);
virtual int accept();
-%If (- Qt_3_0_0)
+%If (- TQt_3_0_0)
int bytesAvailable() const;
int waitForMore(int) const /ReleaseGIL/;
%End
-%If (Qt_3_0_0 -)
+%If (TQt_3_0_0 -)
Q_LONG bytesAvailable() const;
Q_LONG waitForMore(int) const /ReleaseGIL/;
%End
-%If (- Qt_3_0_0)
+%If (- TQt_3_0_0)
SIP_PYOBJECT readBlock(uint) /ReleaseGIL/ [int (char *,uint)];
%MethodCode
char *buf;
@@ -137,7 +137,7 @@ public:
int actlen;
Py_BEGIN_ALLOW_THREADS
- actlen = sipSelfWasArg ? sipCpp->QSocketDevice::readBlock(buf, a0) : sipCpp->readBlock(buf, a0);
+ actlen = sipSelfWasArg ? sipCpp->TQSocketDevice::readBlock(buf, a0) : sipCpp->readBlock(buf, a0);
Py_END_ALLOW_THREADS
if (actlen < 0)
@@ -154,9 +154,9 @@ public:
int writeBlock(const char * /Array/,uint /ArraySize/) /ReleaseGIL/;
virtual int writeBlock(const char * /Array/,uint /ArraySize/,
- const QHostAddress &,Q_UINT16) /ReleaseGIL/;
+ const TQHostAddress &,Q_UINT16) /ReleaseGIL/;
%End
-%If (Qt_3_0_0 -)
+%If (TQt_3_0_0 -)
SIP_PYOBJECT readBlock(Q_ULONG) /ReleaseGIL/ [Q_LONG (char *,Q_ULONG)];
%MethodCode
char *buf;
@@ -168,7 +168,7 @@ public:
Q_LONG actlen;
Py_BEGIN_ALLOW_THREADS
- actlen = sipSelfWasArg ? sipCpp->QSocketDevice::readBlock(buf, a0) : sipCpp->readBlock(buf, a0);
+ actlen = sipSelfWasArg ? sipCpp->TQSocketDevice::readBlock(buf, a0) : sipCpp->readBlock(buf, a0);
Py_END_ALLOW_THREADS
if (actlen < 0)
@@ -187,7 +187,7 @@ public:
Q_LONG writeBlock(const char * /Array/,
Q_ULONG /ArraySize/) /ReleaseGIL/;
virtual Q_LONG writeBlock(const char * /Array/,Q_ULONG /ArraySize/,
- const QHostAddress &,Q_UINT16) /ReleaseGIL/;
+ const TQHostAddress &,Q_UINT16) /ReleaseGIL/;
%End
int getch();
@@ -196,8 +196,8 @@ public:
Q_UINT16 port() const;
Q_UINT16 peerPort() const;
- QHostAddress address() const;
- QHostAddress peerAddress() const;
+ TQHostAddress address() const;
+ TQHostAddress peerAddress() const;
enum Error {
NoError,
@@ -218,7 +218,7 @@ protected:
void setError(Error);
private:
- QSocketDevice(const QSocketDevice &);
+ TQSocketDevice(const TQSocketDevice &);
};
%End