diff options
Diffstat (limited to 'sip/qtsql/qsqlrecord.sip')
-rw-r--r-- | sip/qtsql/qsqlrecord.sip | 86 |
1 files changed, 43 insertions, 43 deletions
diff --git a/sip/qtsql/qsqlrecord.sip b/sip/qtsql/qsqlrecord.sip index 5676bcc..0bffac2 100644 --- a/sip/qtsql/qsqlrecord.sip +++ b/sip/qtsql/qsqlrecord.sip @@ -1,100 +1,100 @@ -// This is the SIP interface definition for QSqlRecord and QSqlRecordInfo. +// This is the SIP interface definition for TQSqlRecord and TQSqlRecordInfo. // // 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>QSqlRecord (Qt v3+)</Title> +<Sect2><Title>TQSqlRecord (TQt v3+)</Title> <Para> -<Literal>QSqlRecord</Literal> is fully implemented. +<Literal>TQSqlRecord</Literal> is fully implemented. </Para> </Sect2> -<Sect2><Title>QSqlRecordInfo (Qt v3+)</Title> +<Sect2><Title>TQSqlRecordInfo (TQt v3+)</Title> <Para> -<Literal>QSqlRecordInfo</Literal> is implemented as a Python list of -<Literal>QSqlFieldInfo</Literal> instances. +<Literal>TQSqlRecordInfo</Literal> is implemented as a Python list of +<Literal>TQSqlFieldInfo</Literal> instances. </Para> </Sect2> %End -%If (Qt_3_0_0 -) +%If (TQt_3_0_0 -) -class QSqlRecord +class TQSqlRecord { %TypeHeaderCode #include <qsqlrecord.h> %End public: - QSqlRecord(); - QSqlRecord(const QSqlRecord &); + TQSqlRecord(); + TQSqlRecord(const TQSqlRecord &); - virtual QVariant value(int) const; - virtual QVariant value(const QString &) const; - virtual void setValue(int,const QVariant &); - virtual void setValue(const QString &,const QVariant &); + virtual TQVariant value(int) const; + virtual TQVariant value(const TQString &) const; + virtual void setValue(int,const TQVariant &); + virtual void setValue(const TQString &,const TQVariant &); bool isGenerated(int) const; - bool isGenerated(const QString &) const; - virtual void setGenerated(const QString &,bool); + bool isGenerated(const TQString &) const; + virtual void setGenerated(const TQString &,bool); virtual void setGenerated(int,bool); virtual void setNull(int); - virtual void setNull(const QString &); + virtual void setNull(const TQString &); bool isNull(int); - bool isNull(const QString &); -%If (Qt_3_1_0 -) + bool isNull(const TQString &); +%If (TQt_3_1_0 -) // bool isNull(int) const; -// bool isNull(const QString &) const; +// bool isNull(const TQString &) const; %End - int position(const QString &) const; - QString fieldName(int) const; - QSqlField *field(int); - QSqlField *field(const QString &); -// const QSqlField *field(int) const; -// const QSqlField *field(const QString &) const; + int position(const TQString &) const; + TQString fieldName(int) const; + TQSqlField *field(int); + TQSqlField *field(const TQString &); +// const TQSqlField *field(int) const; +// const TQSqlField *field(const TQString &) const; - virtual void append(const QSqlField &); - virtual void insert(int,const QSqlField &); + virtual void append(const TQSqlField &); + virtual void insert(int,const TQSqlField &); virtual void remove(int); bool isEmpty() const; - bool contains(const QString &) const; + bool contains(const TQString &) const; virtual void clear(); virtual void clearValues(bool = 0); uint count() const; - virtual QString toString(const QString & = QString::null, - const QString & = ",") const; - virtual QStringList toStringList(const QString & = QString::null) const; + virtual TQString toString(const TQString & = TQString::null, + const TQString & = ",") const; + virtual TQStringList toStringList(const TQString & = TQString::null) const; }; -%MappedType QSqlRecordInfo +%MappedType TQSqlRecordInfo { %TypeHeaderCode #include <qsqlrecord.h> %End %ConvertFromTypeCode - // Convert to a Python list of QSqlFieldInfo instances. + // Convert to a Python list of TQSqlFieldInfo instances. int i; PyObject *l; @@ -107,13 +107,13 @@ public: // Get it. i = 0; - QValueListConstIterator<QSqlFieldInfo> it; + TQValueListConstIterator<TQSqlFieldInfo> it; for (it = sipCpp -> begin(); it != sipCpp -> end(); ++it) { PyObject *tmobj; - if ((tmobj = sipConvertFromNewInstance(new QSqlFieldInfo(*it),sipClass_QSqlFieldInfo,sipTransferObj)) == NULL || PyList_SetItem(l,i,tmobj) < 0) + if ((tmobj = sipConvertFromNewInstance(new TQSqlFieldInfo(*it),sipClass_QSqlFieldInfo,sipTransferObj)) == NULL || PyList_SetItem(l,i,tmobj) < 0) { Py_XDECREF(tmobj); Py_DECREF(l); @@ -129,7 +129,7 @@ public: %ConvertToTypeCode - // Convert a Python list of QSqlFieldInfo instances to a QSqlRecordInfo + // Convert a Python list of TQSqlFieldInfo instances to a TQSqlRecordInfo // on the heap. if (sipIsErr == NULL) @@ -144,14 +144,14 @@ public: return 1; } - QSqlRecordInfo *qri = new QSqlRecordInfo; + TQSqlRecordInfo *qri = new TQSqlRecordInfo; for (int i = 0; i < PyList_GET_SIZE(sipPy); ++i) { int iserr = 0, state; // We apply the transfer to the list itself, not the elements. - QSqlFieldInfo *itm = reinterpret_cast<QSqlFieldInfo *>(sipConvertToInstance(PyList_GET_ITEM(sipPy,i),sipClass_QSqlFieldInfo,0,SIP_NOT_NONE,&state,&iserr)); + TQSqlFieldInfo *itm = reinterpret_cast<TQSqlFieldInfo *>(sipConvertToInstance(PyList_GET_ITEM(sipPy,i),sipClass_QSqlFieldInfo,0,SIP_NOT_NONE,&state,&iserr)); if (iserr) { |