Eneboo - Documentación para desarrolladores
|
00001 /*************************************************************************** 00002 AQSDomElement_p.h 00003 ------------------- 00004 begin : 14/02/2011 00005 copyright : (C) 2003-2011 by InfoSiAL S.L. 00006 email : mail@infosial.com 00007 ***************************************************************************/ 00008 /*************************************************************************** 00009 * This program is free software; you can redistribute it and/or modify * 00010 * it under the terms of the GNU General Public License as published by * 00011 * the Free Software Foundation; version 2 of the License. * 00012 ***************************************************************************/ 00013 /*************************************************************************** 00014 Este programa es software libre. Puede redistribuirlo y/o modificarlo 00015 bajo los términos de la Licencia Pública General de GNU en su 00016 versión 2, publicada por la Free Software Foundation. 00017 ***************************************************************************/ 00018 00019 #ifndef AQSDOMELEMENT_P_H_ 00020 #define AQSDOMELEMENT_P_H_ 00021 00022 #include "AQSDomAttr_p.h" 00023 00024 // @AQ_PTR_INDIRECTION@ 00025 00026 class AQSDomElement : public AQSDomNode 00027 { 00028 Q_OBJECT 00029 00030 AQ_DECLARE_AQS_VOID(DomElement, DomNode); 00031 00032 //@AQ_BEGIN_DEF_PUB_SLOTS@ 00033 public slots: 00034 QString attribute(const QString &, const QString& = QString::null) const; 00035 void setAttribute(const QString &, const QString &); 00036 void setAttribute(const QString &, int); 00037 void setAttribute(const QString &, uint); 00038 void setAttribute(const QString &, long); 00039 void setAttribute(const QString &, ulong); 00040 void setAttribute(const QString &, double); 00041 void removeAttribute(const QString &); 00042 QDomAttr *attributeNode(const QString &); 00043 QDomAttr *setAttributeNode(QDomAttr *); 00044 QDomAttr *setAttributeNode(AQSDomAttr *); 00045 QDomAttr *removeAttributeNode(QDomAttr *); 00046 QDomAttr *removeAttributeNode(AQSDomAttr *); 00047 virtual QDomNodeList *elementsByTagName(const QString &) const; 00048 bool hasAttribute(const QString &) const; 00049 QString attributeNS(const QString, const QString &, const QString &) const; 00050 void setAttributeNS(const QString, const QString &, const QString &); 00051 void setAttributeNS(const QString, const QString &, int); 00052 void setAttributeNS(const QString, const QString &, uint); 00053 void setAttributeNS(const QString, const QString &, long); 00054 void setAttributeNS(const QString, const QString &, ulong); 00055 void setAttributeNS(const QString, const QString &, double); 00056 void removeAttributeNS(const QString &, const QString &); 00057 QDomAttr *attributeNodeNS(const QString &, const QString &); 00058 QDomAttr *setAttributeNodeNS(QDomAttr *); 00059 QDomAttr *setAttributeNodeNS(AQSDomAttr *); 00060 virtual QDomNodeList *elementsByTagNameNS(const QString &, const QString &) const; 00061 bool hasAttributeNS(const QString &, const QString &) const; 00062 QString tagName() const; 00063 void setTagName(const QString &); 00064 virtual QDomNamedNodeMap *attributes() const; 00065 virtual uint nodeType() const; 00066 virtual bool isElement() const; 00067 QString text() const; 00068 00069 protected: 00070 static void *construct(const QSArgumentList &args) { 00071 QMap<int, QStringList> candidates; 00072 candidates[0].append(QString::null); 00073 candidates[1].append(QString::fromLatin1("QDomElement*")); 00074 QString sgt(castArgsSignature(args, candidates)); 00075 if (sgt.isEmpty()) 00076 return new QDomElement; 00077 if (sgt == QString::fromLatin1("QDomElement*")) 00078 return new QDomElement(*argValue<QDomElement *>(args[0])); 00079 return 0; 00080 } 00081 00082 public: 00083 static QMap<int, QStringList> candidateConstructors() { 00084 QMap<int, QStringList> candidates; 00085 candidates[0].append(QString::null); 00086 candidates[1].append(QString::fromLatin1("QDomElement*")); 00087 return candidates; 00088 } 00089 //@AQ_END_DEF_PUB_SLOTS@ 00090 }; 00091 00092 //@AQ_BEGIN_IMP_PUB_SLOTS@ 00093 inline QString AQSDomElement::attribute(const QString &arg0, const QString &arg1) const 00094 { 00095 AQ_CALL_RET_V(attribute(arg0, arg1), QString); 00096 } 00097 inline void AQSDomElement::setAttribute(const QString &arg0, const QString &arg1) 00098 { 00099 AQ_CALL_VOID(setAttribute(arg0, arg1)); 00100 } 00101 inline void AQSDomElement::setAttribute(const QString &arg0, int arg1) 00102 { 00103 AQ_CALL_VOID(setAttribute(arg0, arg1)); 00104 } 00105 inline void AQSDomElement::setAttribute(const QString &arg0, uint arg1) 00106 { 00107 AQ_CALL_VOID(setAttribute(arg0, arg1)); 00108 } 00109 inline void AQSDomElement::setAttribute(const QString &arg0, long arg1) 00110 { 00111 AQ_CALL_VOID(setAttribute(arg0, arg1)); 00112 } 00113 inline void AQSDomElement::setAttribute(const QString &arg0, ulong arg1) 00114 { 00115 AQ_CALL_VOID(setAttribute(arg0, arg1)); 00116 } 00117 inline void AQSDomElement::setAttribute(const QString &arg0, double arg1) 00118 { 00119 AQ_CALL_VOID(setAttribute(arg0, arg1)); 00120 } 00121 inline void AQSDomElement::removeAttribute(const QString &arg0) 00122 { 00123 AQ_CALL_VOID(removeAttribute(arg0)); 00124 } 00125 inline QDomAttr *AQSDomElement::attributeNode(const QString &arg0) 00126 { 00127 AQ_CALL_RET_PTR(attributeNode(arg0), QDomAttr); 00128 } 00129 inline QDomAttr *AQSDomElement::setAttributeNode(QDomAttr *arg0) 00130 { 00131 AQ_CALL_RET_PTR(setAttributeNode(*arg0), QDomAttr); 00132 } 00133 inline QDomAttr *AQSDomElement::setAttributeNode(AQSDomAttr *arg0) 00134 { 00135 AQ_CALL_RET_PTR(setAttributeNode(*arg0), QDomAttr); 00136 } 00137 inline QDomAttr *AQSDomElement::removeAttributeNode(QDomAttr *arg0) 00138 { 00139 AQ_CALL_RET_PTR(removeAttributeNode(*arg0), QDomAttr); 00140 } 00141 inline QDomAttr *AQSDomElement::removeAttributeNode(AQSDomAttr *arg0) 00142 { 00143 AQ_CALL_RET_PTR(removeAttributeNode(*arg0), QDomAttr); 00144 } 00145 inline QDomNodeList *AQSDomElement::elementsByTagName(const QString &arg0) const 00146 { 00147 AQ_CALL_RET_PTR(elementsByTagName(arg0), QDomNodeList); 00148 } 00149 inline bool AQSDomElement::hasAttribute(const QString &arg0) const 00150 { 00151 AQ_CALL_RET_V(hasAttribute(arg0), bool); 00152 } 00153 inline QString AQSDomElement::attributeNS(const QString arg0, const QString &arg1, const QString &arg2) const 00154 { 00155 AQ_CALL_RET_V(attributeNS(arg0, arg1, arg2), QString); 00156 } 00157 inline void AQSDomElement::setAttributeNS(const QString arg0, const QString &arg1, const QString &arg2) 00158 { 00159 AQ_CALL_VOID(setAttributeNS(arg0, arg1, arg2)); 00160 } 00161 inline void AQSDomElement::setAttributeNS(const QString arg0, const QString &arg1, int arg2) 00162 { 00163 AQ_CALL_VOID(setAttributeNS(arg0, arg1, arg2)); 00164 } 00165 inline void AQSDomElement::setAttributeNS(const QString arg0, const QString &arg1, uint arg2) 00166 { 00167 AQ_CALL_VOID(setAttributeNS(arg0, arg1, arg2)); 00168 } 00169 inline void AQSDomElement::setAttributeNS(const QString arg0, const QString &arg1, long arg2) 00170 { 00171 AQ_CALL_VOID(setAttributeNS(arg0, arg1, arg2)); 00172 } 00173 inline void AQSDomElement::setAttributeNS(const QString arg0, const QString &arg1, ulong arg2) 00174 { 00175 AQ_CALL_VOID(setAttributeNS(arg0, arg1, arg2)); 00176 } 00177 inline void AQSDomElement::setAttributeNS(const QString arg0, const QString &arg1, double arg2) 00178 { 00179 AQ_CALL_VOID(setAttributeNS(arg0, arg1, arg2)); 00180 } 00181 inline void AQSDomElement::removeAttributeNS(const QString &arg0, const QString &arg1) 00182 { 00183 AQ_CALL_VOID(removeAttributeNS(arg0, arg1)); 00184 } 00185 inline QDomAttr *AQSDomElement::attributeNodeNS(const QString &arg0, const QString &arg1) 00186 { 00187 AQ_CALL_RET_PTR(attributeNodeNS(arg0, arg1), QDomAttr); 00188 } 00189 inline QDomAttr *AQSDomElement::setAttributeNodeNS(QDomAttr *arg0) 00190 { 00191 AQ_CALL_RET_PTR(setAttributeNodeNS(*arg0), QDomAttr); 00192 } 00193 inline QDomAttr *AQSDomElement::setAttributeNodeNS(AQSDomAttr *arg0) 00194 { 00195 AQ_CALL_RET_PTR(setAttributeNodeNS(*arg0), QDomAttr); 00196 } 00197 inline QDomNodeList *AQSDomElement::elementsByTagNameNS(const QString &arg0, const QString &arg1) const 00198 { 00199 AQ_CALL_RET_PTR(elementsByTagNameNS(arg0, arg1), QDomNodeList); 00200 } 00201 inline bool AQSDomElement::hasAttributeNS(const QString &arg0, const QString &arg1) const 00202 { 00203 AQ_CALL_RET_V(hasAttributeNS(arg0, arg1), bool); 00204 } 00205 inline QString AQSDomElement::tagName() const 00206 { 00207 AQ_CALL_RET_V(tagName(), QString); 00208 } 00209 inline void AQSDomElement::setTagName(const QString &arg0) 00210 { 00211 AQ_CALL_VOID(setTagName(arg0)); 00212 } 00213 inline QDomNamedNodeMap *AQSDomElement::attributes() const 00214 { 00215 AQ_CALL_RET_PTR(attributes(), QDomNamedNodeMap); 00216 } 00217 inline uint AQSDomElement::nodeType() const 00218 { 00219 AQ_CALL_RET_V(nodeType(), uint); 00220 } 00221 inline bool AQSDomElement::isElement() const 00222 { 00223 AQ_CALL_RET_V(isElement(), bool); 00224 } 00225 inline QString AQSDomElement::text() const 00226 { 00227 AQ_CALL_RET_V(text(), QString); 00228 } 00229 //@AQ_END_IMP_PUB_SLOTS@ 00230 00231 #endif /* AQSDOMELEMENT_P_H_ */ 00232 // @AQSVOIDPTR@