// This is the SIP interface definition for TQDns. // // Copyright (c) 2007 // Riverbank Computing Limited // // This file is part of PyTQt. // // 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. // // 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 // 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 TQDns (TQt v2.2+) TQDns is fully implemented. %End %If (TQt_DNS) %If (TQt_2_2_0 -) class TQDns : TQObject { %TypeHeaderCode #include %End public: enum RecordType { None, A, Aaaa, Mx, Srv, Cname, Ptr, Txt }; TQDns(); TQDns(const TQString &,RecordType = A); TQDns(const TQHostAddress &,RecordType = A); virtual void setLabel(const TQString &); virtual void setLabel(const TQHostAddress &); TQString label() const; virtual void setRecordType(RecordType = A); RecordType recordType() const; bool isWorking() const; TQValueList addresses() const; class MailServer { public: MailServer(const TQString & = TQString::null,Q_UINT16 = 0); TQString name; Q_UINT16 priority; }; TQValueList mailServers() const; class Server { public: Server(const TQString & = TQString::null,Q_UINT16 = 0, Q_UINT16 = 0,Q_UINT16 = 0); TQString name; Q_UINT16 priority; Q_UINT16 weight; Q_UINT16 port; }; TQValueList servers() const; TQStringList hostNames() const; TQStringList texts() const; TQString canonicalName() const; TQStringList qualifiedNames() const; signals: void resultsReady(); }; %MappedType TQValueList { %TypeHeaderCode #include %End %ConvertFromTypeCode // Convert to a Python list of TQHostAddress instances. int i; PyObject *l; // Create the list. if ((l = PyList_New(sipCpp -> count())) == NULL) return NULL; // Get it. i = 0; TQValueListConstIterator it; for (it = sipCpp -> begin(); it != sipCpp -> end(); ++it) { PyObject *tmobj; if ((tmobj = sipConvertFromNewInstance(new TQHostAddress(*it),sipClass_TQHostAddress,sipTransferObj)) == NULL || PyList_SetItem(l,i,tmobj) < 0) { Py_XDECREF(tmobj); Py_DECREF(l); return NULL; } ++i; } return l; %End %ConvertToTypeCode // At the moment this will never be called, so provide a null // implementation. if (sipIsErr == NULL) return PyList_Check(sipPy); PyErr_Format(PyExc_TypeError,"Converting to TQValueList not yet implemented"); *sipIsErr = 1; return 0; %End }; %MappedType TQValueList { %TypeHeaderCode #include %End %ConvertFromTypeCode // Convert to a Python list of TQDns::MailServer instances. int i; PyObject *l; // Create the list. if ((l = PyList_New(sipCpp -> count())) == NULL) return NULL; // Get it. i = 0; TQValueListConstIterator it; for (it = sipCpp -> begin(); it != sipCpp -> end(); ++it) { PyObject *tmobj; if ((tmobj = sipConvertFromNewInstance(new TQDns::MailServer(*it),sipClass_TQDns_MailServer,sipTransferObj)) == NULL || PyList_SetItem(l,i,tmobj) < 0) { Py_XDECREF(tmobj); Py_DECREF(l); return NULL; } ++i; } return l; %End %ConvertToTypeCode // At the moment this will never be called, so provide a null // implementation. if (sipIsErr == NULL) return PyList_Check(sipPy); PyErr_Format(PyExc_TypeError,"Converting to TQValueList not yet implemented"); *sipIsErr = 1; return 0; %End }; %MappedType TQValueList { %TypeHeaderCode #include %End %ConvertFromTypeCode // Convert to a Python list of TQDns::Server instances. int i; PyObject *l; // Create the list. if ((l = PyList_New(sipCpp -> count())) == NULL) return NULL; // Get it. i = 0; TQValueListConstIterator it; for (it = sipCpp -> begin(); it != sipCpp -> end(); ++it) { PyObject *tmobj; if ((tmobj = sipConvertFromNewInstance(new TQDns::Server(*it),sipClass_TQDns_Server,sipTransferObj)) == NULL || PyList_SetItem(l,i,tmobj) < 0) { Py_XDECREF(tmobj); Py_DECREF(l); return NULL; } ++i; } return l; %End %ConvertToTypeCode // At the moment this will never be called, so provide a null // implementation. if (sipIsErr == NULL) return PyList_Check(sipPy); PyErr_Format(PyExc_TypeError,"Converting to TQValueList not yet implemented"); *sipIsErr = 1; return 0; %End }; %End %End