1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986
|
#include <PythonQt.h>
#include <QObject>
#include <QVariant>
#include <qbytearray.h>
#include <qdom.h>
#include <qiodevice.h>
#include <qtextstream.h>
#include <qxml.h>
class PythonQtWrapper_QDomAttr : public QObject
{ Q_OBJECT
public:
public slots:
QDomAttr* new_QDomAttr();
QDomAttr* new_QDomAttr(const QDomAttr& x);
void delete_QDomAttr(QDomAttr* obj) { delete obj; }
QString name(QDomAttr* theWrappedObject) const;
QDomElement ownerElement(QDomAttr* theWrappedObject) const;
void setValue(QDomAttr* theWrappedObject, const QString& arg__1);
bool specified(QDomAttr* theWrappedObject) const;
QString value(QDomAttr* theWrappedObject) const;
bool __nonzero__(QDomAttr* obj) { return !obj->isNull(); }
};
class PythonQtWrapper_QDomCDATASection : public QObject
{ Q_OBJECT
public:
public slots:
QDomCDATASection* new_QDomCDATASection();
QDomCDATASection* new_QDomCDATASection(const QDomCDATASection& x);
void delete_QDomCDATASection(QDomCDATASection* obj) { delete obj; }
bool __nonzero__(QDomCDATASection* obj) { return !obj->isNull(); }
};
class PythonQtWrapper_QDomCharacterData : public QObject
{ Q_OBJECT
public:
public slots:
QDomCharacterData* new_QDomCharacterData();
QDomCharacterData* new_QDomCharacterData(const QDomCharacterData& x);
void delete_QDomCharacterData(QDomCharacterData* obj) { delete obj; }
void appendData(QDomCharacterData* theWrappedObject, const QString& arg);
QString data(QDomCharacterData* theWrappedObject) const;
void deleteData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count);
void insertData(QDomCharacterData* theWrappedObject, unsigned long offset, const QString& arg);
uint length(QDomCharacterData* theWrappedObject) const;
void replaceData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count, const QString& arg);
void setData(QDomCharacterData* theWrappedObject, const QString& arg__1);
QString substringData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count);
bool __nonzero__(QDomCharacterData* obj) { return !obj->isNull(); }
};
class PythonQtWrapper_QDomComment : public QObject
{ Q_OBJECT
public:
public slots:
QDomComment* new_QDomComment();
QDomComment* new_QDomComment(const QDomComment& x);
void delete_QDomComment(QDomComment* obj) { delete obj; }
bool __nonzero__(QDomComment* obj) { return !obj->isNull(); }
};
class PythonQtWrapper_QDomDocument : public QObject
{ Q_OBJECT
public:
public slots:
QDomDocument* new_QDomDocument();
QDomDocument* new_QDomDocument(const QDomDocument& x);
QDomDocument* new_QDomDocument(const QDomDocumentType& doctype);
QDomDocument* new_QDomDocument(const QString& name);
void delete_QDomDocument(QDomDocument* obj) { delete obj; }
QDomAttr createAttribute(QDomDocument* theWrappedObject, const QString& name);
QDomAttr createAttributeNS(QDomDocument* theWrappedObject, const QString& nsURI, const QString& qName);
QDomCDATASection createCDATASection(QDomDocument* theWrappedObject, const QString& data);
QDomComment createComment(QDomDocument* theWrappedObject, const QString& data);
QDomDocumentFragment createDocumentFragment(QDomDocument* theWrappedObject);
QDomElement createElement(QDomDocument* theWrappedObject, const QString& tagName);
QDomElement createElementNS(QDomDocument* theWrappedObject, const QString& nsURI, const QString& qName);
QDomEntityReference createEntityReference(QDomDocument* theWrappedObject, const QString& name);
QDomProcessingInstruction createProcessingInstruction(QDomDocument* theWrappedObject, const QString& target, const QString& data);
QDomText createTextNode(QDomDocument* theWrappedObject, const QString& data);
QDomDocumentType doctype(QDomDocument* theWrappedObject) const;
QDomElement documentElement(QDomDocument* theWrappedObject) const;
QDomElement elementById(QDomDocument* theWrappedObject, const QString& elementId);
QDomNodeList elementsByTagName(QDomDocument* theWrappedObject, const QString& tagname) const;
QDomNodeList elementsByTagNameNS(QDomDocument* theWrappedObject, const QString& nsURI, const QString& localName);
QDomImplementation implementation(QDomDocument* theWrappedObject) const;
QDomNode importNode(QDomDocument* theWrappedObject, const QDomNode& importedNode, bool deep);
bool setContent(QDomDocument* theWrappedObject, QIODevice* dev, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
bool setContent(QDomDocument* theWrappedObject, QIODevice* dev, bool namespaceProcessing, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
bool setContent(QDomDocument* theWrappedObject, QXmlInputSource* source, QXmlReader* reader, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
bool setContent(QDomDocument* theWrappedObject, QXmlInputSource* source, bool namespaceProcessing, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
bool setContent(QDomDocument* theWrappedObject, const QByteArray& text, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
bool setContent(QDomDocument* theWrappedObject, const QByteArray& text, bool namespaceProcessing, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
bool setContent(QDomDocument* theWrappedObject, const QString& text, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
bool setContent(QDomDocument* theWrappedObject, const QString& text, bool namespaceProcessing, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
QByteArray toByteArray(QDomDocument* theWrappedObject, int arg__1 = 1) const;
QString toString(QDomDocument* theWrappedObject, int arg__1 = 1) const;
QString py_toString(QDomDocument*);
bool __nonzero__(QDomDocument* obj) { return !obj->isNull(); }
};
class PythonQtWrapper_QDomDocumentFragment : public QObject
{ Q_OBJECT
public:
public slots:
QDomDocumentFragment* new_QDomDocumentFragment();
QDomDocumentFragment* new_QDomDocumentFragment(const QDomDocumentFragment& x);
void delete_QDomDocumentFragment(QDomDocumentFragment* obj) { delete obj; }
bool __nonzero__(QDomDocumentFragment* obj) { return !obj->isNull(); }
};
class PythonQtWrapper_QDomDocumentType : public QObject
{ Q_OBJECT
public:
public slots:
QDomDocumentType* new_QDomDocumentType();
QDomDocumentType* new_QDomDocumentType(const QDomDocumentType& x);
void delete_QDomDocumentType(QDomDocumentType* obj) { delete obj; }
QDomNamedNodeMap entities(QDomDocumentType* theWrappedObject) const;
QString internalSubset(QDomDocumentType* theWrappedObject) const;
QString name(QDomDocumentType* theWrappedObject) const;
QDomNamedNodeMap notations(QDomDocumentType* theWrappedObject) const;
QString publicId(QDomDocumentType* theWrappedObject) const;
QString systemId(QDomDocumentType* theWrappedObject) const;
bool __nonzero__(QDomDocumentType* obj) { return !obj->isNull(); }
};
class PythonQtWrapper_QDomElement : public QObject
{ Q_OBJECT
public:
public slots:
QDomElement* new_QDomElement();
QDomElement* new_QDomElement(const QDomElement& x);
void delete_QDomElement(QDomElement* obj) { delete obj; }
QString attribute(QDomElement* theWrappedObject, const QString& name, const QString& defValue = QString()) const;
QString attributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& localName, const QString& defValue = QString()) const;
QDomAttr attributeNode(QDomElement* theWrappedObject, const QString& name);
QDomAttr attributeNodeNS(QDomElement* theWrappedObject, const QString& nsURI, const QString& localName);
QDomNamedNodeMap attributes(QDomElement* theWrappedObject) const;
QDomNodeList elementsByTagName(QDomElement* theWrappedObject, const QString& tagname) const;
QDomNodeList elementsByTagNameNS(QDomElement* theWrappedObject, const QString& nsURI, const QString& localName) const;
bool hasAttribute(QDomElement* theWrappedObject, const QString& name) const;
bool hasAttributeNS(QDomElement* theWrappedObject, const QString& nsURI, const QString& localName) const;
void removeAttribute(QDomElement* theWrappedObject, const QString& name);
void removeAttributeNS(QDomElement* theWrappedObject, const QString& nsURI, const QString& localName);
QDomAttr removeAttributeNode(QDomElement* theWrappedObject, const QDomAttr& oldAttr);
void setAttribute(QDomElement* theWrappedObject, const QString& name, const QString& value);
void setAttribute(QDomElement* theWrappedObject, const QString& name, double value);
void setAttribute(QDomElement* theWrappedObject, const QString& name, float value);
void setAttribute(QDomElement* theWrappedObject, const QString& name, int value);
void setAttribute(QDomElement* theWrappedObject, const QString& name, qlonglong value);
void setAttribute(QDomElement* theWrappedObject, const QString& name, qulonglong value);
void setAttributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& qName, const QString& value);
void setAttributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& qName, double value);
void setAttributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& qName, int value);
void setAttributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& qName, qlonglong value);
void setAttributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& qName, qulonglong value);
QDomAttr setAttributeNode(QDomElement* theWrappedObject, const QDomAttr& newAttr);
QDomAttr setAttributeNodeNS(QDomElement* theWrappedObject, const QDomAttr& newAttr);
void setTagName(QDomElement* theWrappedObject, const QString& name);
QString tagName(QDomElement* theWrappedObject) const;
QString text(QDomElement* theWrappedObject) const;
bool __nonzero__(QDomElement* obj) { return !obj->isNull(); }
};
class PythonQtWrapper_QDomEntity : public QObject
{ Q_OBJECT
public:
public slots:
QDomEntity* new_QDomEntity();
QDomEntity* new_QDomEntity(const QDomEntity& x);
void delete_QDomEntity(QDomEntity* obj) { delete obj; }
QString notationName(QDomEntity* theWrappedObject) const;
QString publicId(QDomEntity* theWrappedObject) const;
QString systemId(QDomEntity* theWrappedObject) const;
bool __nonzero__(QDomEntity* obj) { return !obj->isNull(); }
};
class PythonQtWrapper_QDomEntityReference : public QObject
{ Q_OBJECT
public:
public slots:
QDomEntityReference* new_QDomEntityReference();
QDomEntityReference* new_QDomEntityReference(const QDomEntityReference& x);
void delete_QDomEntityReference(QDomEntityReference* obj) { delete obj; }
bool __nonzero__(QDomEntityReference* obj) { return !obj->isNull(); }
};
class PythonQtWrapper_QDomImplementation : public QObject
{ Q_OBJECT
public:
Q_ENUMS(InvalidDataPolicy )
enum InvalidDataPolicy{
AcceptInvalidChars = QDomImplementation::AcceptInvalidChars, DropInvalidChars = QDomImplementation::DropInvalidChars, ReturnNullNode = QDomImplementation::ReturnNullNode};
public slots:
QDomImplementation* new_QDomImplementation();
QDomImplementation* new_QDomImplementation(const QDomImplementation& arg__1);
void delete_QDomImplementation(QDomImplementation* obj) { delete obj; }
QDomDocument createDocument(QDomImplementation* theWrappedObject, const QString& nsURI, const QString& qName, const QDomDocumentType& doctype);
QDomDocumentType createDocumentType(QDomImplementation* theWrappedObject, const QString& qName, const QString& publicId, const QString& systemId);
bool hasFeature(QDomImplementation* theWrappedObject, const QString& feature, const QString& version) const;
QDomImplementation::InvalidDataPolicy static_QDomImplementation_invalidDataPolicy();
bool isNull(QDomImplementation* theWrappedObject);
bool __ne__(QDomImplementation* theWrappedObject, const QDomImplementation& arg__1) const;
bool __eq__(QDomImplementation* theWrappedObject, const QDomImplementation& arg__1) const;
void static_QDomImplementation_setInvalidDataPolicy(QDomImplementation::InvalidDataPolicy policy);
bool __nonzero__(QDomImplementation* obj) { return !obj->isNull(); }
};
class PythonQtWrapper_QDomNamedNodeMap : public QObject
{ Q_OBJECT
public:
public slots:
QDomNamedNodeMap* new_QDomNamedNodeMap();
QDomNamedNodeMap* new_QDomNamedNodeMap(const QDomNamedNodeMap& arg__1);
void delete_QDomNamedNodeMap(QDomNamedNodeMap* obj) { delete obj; }
bool contains(QDomNamedNodeMap* theWrappedObject, const QString& name) const;
int count(QDomNamedNodeMap* theWrappedObject) const;
bool isEmpty(QDomNamedNodeMap* theWrappedObject) const;
QDomNode item(QDomNamedNodeMap* theWrappedObject, int index) const;
uint length(QDomNamedNodeMap* theWrappedObject) const;
QDomNode namedItem(QDomNamedNodeMap* theWrappedObject, const QString& name) const;
QDomNode namedItemNS(QDomNamedNodeMap* theWrappedObject, const QString& nsURI, const QString& localName) const;
bool __ne__(QDomNamedNodeMap* theWrappedObject, const QDomNamedNodeMap& arg__1) const;
bool __eq__(QDomNamedNodeMap* theWrappedObject, const QDomNamedNodeMap& arg__1) const;
QDomNode removeNamedItem(QDomNamedNodeMap* theWrappedObject, const QString& name);
QDomNode removeNamedItemNS(QDomNamedNodeMap* theWrappedObject, const QString& nsURI, const QString& localName);
QDomNode setNamedItem(QDomNamedNodeMap* theWrappedObject, const QDomNode& newNode);
QDomNode setNamedItemNS(QDomNamedNodeMap* theWrappedObject, const QDomNode& newNode);
int size(QDomNamedNodeMap* theWrappedObject) const;
};
class PythonQtWrapper_QDomNode : public QObject
{ Q_OBJECT
public:
Q_ENUMS(NodeType EncodingPolicy )
enum NodeType{
ElementNode = QDomNode::ElementNode, AttributeNode = QDomNode::AttributeNode, TextNode = QDomNode::TextNode, CDATASectionNode = QDomNode::CDATASectionNode, EntityReferenceNode = QDomNode::EntityReferenceNode, EntityNode = QDomNode::EntityNode, ProcessingInstructionNode = QDomNode::ProcessingInstructionNode, CommentNode = QDomNode::CommentNode, DocumentNode = QDomNode::DocumentNode, DocumentTypeNode = QDomNode::DocumentTypeNode, DocumentFragmentNode = QDomNode::DocumentFragmentNode, NotationNode = QDomNode::NotationNode, BaseNode = QDomNode::BaseNode, CharacterDataNode = QDomNode::CharacterDataNode};
enum EncodingPolicy{
EncodingFromDocument = QDomNode::EncodingFromDocument, EncodingFromTextStream = QDomNode::EncodingFromTextStream};
public slots:
QDomNode* new_QDomNode();
QDomNode* new_QDomNode(const QDomNode& arg__1);
void delete_QDomNode(QDomNode* obj) { delete obj; }
QDomNode appendChild(QDomNode* theWrappedObject, const QDomNode& newChild);
QDomNodeList childNodes(QDomNode* theWrappedObject) const;
void clear(QDomNode* theWrappedObject);
QDomNode cloneNode(QDomNode* theWrappedObject, bool deep = true) const;
int columnNumber(QDomNode* theWrappedObject) const;
QDomNode firstChild(QDomNode* theWrappedObject) const;
QDomElement firstChildElement(QDomNode* theWrappedObject, const QString& tagName = QString()) const;
bool hasAttributes(QDomNode* theWrappedObject) const;
bool hasChildNodes(QDomNode* theWrappedObject) const;
QDomNode insertAfter(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& refChild);
QDomNode insertBefore(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& refChild);
bool isAttr(QDomNode* theWrappedObject) const;
bool isCDATASection(QDomNode* theWrappedObject) const;
bool isCharacterData(QDomNode* theWrappedObject) const;
bool isComment(QDomNode* theWrappedObject) const;
bool isDocument(QDomNode* theWrappedObject) const;
bool isDocumentFragment(QDomNode* theWrappedObject) const;
bool isDocumentType(QDomNode* theWrappedObject) const;
bool isElement(QDomNode* theWrappedObject) const;
bool isEntity(QDomNode* theWrappedObject) const;
bool isEntityReference(QDomNode* theWrappedObject) const;
bool isNotation(QDomNode* theWrappedObject) const;
bool isNull(QDomNode* theWrappedObject) const;
bool isProcessingInstruction(QDomNode* theWrappedObject) const;
bool isSupported(QDomNode* theWrappedObject, const QString& feature, const QString& version) const;
bool isText(QDomNode* theWrappedObject) const;
QDomNode lastChild(QDomNode* theWrappedObject) const;
QDomElement lastChildElement(QDomNode* theWrappedObject, const QString& tagName = QString()) const;
int lineNumber(QDomNode* theWrappedObject) const;
QString localName(QDomNode* theWrappedObject) const;
QDomNode namedItem(QDomNode* theWrappedObject, const QString& name) const;
QString namespaceURI(QDomNode* theWrappedObject) const;
QDomNode nextSibling(QDomNode* theWrappedObject) const;
QDomElement nextSiblingElement(QDomNode* theWrappedObject, const QString& taName = QString()) const;
QString nodeName(QDomNode* theWrappedObject) const;
QDomNode::NodeType nodeType(QDomNode* theWrappedObject) const;
QString nodeValue(QDomNode* theWrappedObject) const;
void normalize(QDomNode* theWrappedObject);
bool __ne__(QDomNode* theWrappedObject, const QDomNode& arg__1) const;
void writeTo(QDomNode* theWrappedObject, QTextStream& arg__1);
bool __eq__(QDomNode* theWrappedObject, const QDomNode& arg__1) const;
QDomDocument ownerDocument(QDomNode* theWrappedObject) const;
QDomNode parentNode(QDomNode* theWrappedObject) const;
QString prefix(QDomNode* theWrappedObject) const;
QDomNode previousSibling(QDomNode* theWrappedObject) const;
QDomElement previousSiblingElement(QDomNode* theWrappedObject, const QString& tagName = QString()) const;
QDomNode removeChild(QDomNode* theWrappedObject, const QDomNode& oldChild);
QDomNode replaceChild(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& oldChild);
void save(QDomNode* theWrappedObject, QTextStream& arg__1, int arg__2) const;
void save(QDomNode* theWrappedObject, QTextStream& arg__1, int arg__2, QDomNode::EncodingPolicy arg__3) const;
void setNodeValue(QDomNode* theWrappedObject, const QString& arg__1);
void setPrefix(QDomNode* theWrappedObject, const QString& pre);
QDomAttr toAttr(QDomNode* theWrappedObject) const;
QDomCDATASection toCDATASection(QDomNode* theWrappedObject) const;
QDomCharacterData toCharacterData(QDomNode* theWrappedObject) const;
QDomComment toComment(QDomNode* theWrappedObject) const;
QDomDocument toDocument(QDomNode* theWrappedObject) const;
QDomDocumentFragment toDocumentFragment(QDomNode* theWrappedObject) const;
QDomDocumentType toDocumentType(QDomNode* theWrappedObject) const;
QDomElement toElement(QDomNode* theWrappedObject) const;
QDomEntity toEntity(QDomNode* theWrappedObject) const;
QDomEntityReference toEntityReference(QDomNode* theWrappedObject) const;
QDomNotation toNotation(QDomNode* theWrappedObject) const;
QDomProcessingInstruction toProcessingInstruction(QDomNode* theWrappedObject) const;
QDomText toText(QDomNode* theWrappedObject) const;
bool __nonzero__(QDomNode* obj) { return !obj->isNull(); }
};
class PythonQtWrapper_QDomNodeList : public QObject
{ Q_OBJECT
public:
public slots:
QDomNodeList* new_QDomNodeList();
QDomNodeList* new_QDomNodeList(const QDomNodeList& arg__1);
void delete_QDomNodeList(QDomNodeList* obj) { delete obj; }
QDomNode at(QDomNodeList* theWrappedObject, int index) const;
int count(QDomNodeList* theWrappedObject) const;
bool isEmpty(QDomNodeList* theWrappedObject) const;
QDomNode item(QDomNodeList* theWrappedObject, int index) const;
uint length(QDomNodeList* theWrappedObject) const;
bool __ne__(QDomNodeList* theWrappedObject, const QDomNodeList& arg__1) const;
bool __eq__(QDomNodeList* theWrappedObject, const QDomNodeList& arg__1) const;
int size(QDomNodeList* theWrappedObject) const;
};
class PythonQtWrapper_QDomNotation : public QObject
{ Q_OBJECT
public:
public slots:
QDomNotation* new_QDomNotation();
QDomNotation* new_QDomNotation(const QDomNotation& x);
void delete_QDomNotation(QDomNotation* obj) { delete obj; }
QString publicId(QDomNotation* theWrappedObject) const;
QString systemId(QDomNotation* theWrappedObject) const;
bool __nonzero__(QDomNotation* obj) { return !obj->isNull(); }
};
class PythonQtWrapper_QDomProcessingInstruction : public QObject
{ Q_OBJECT
public:
public slots:
QDomProcessingInstruction* new_QDomProcessingInstruction();
QDomProcessingInstruction* new_QDomProcessingInstruction(const QDomProcessingInstruction& x);
void delete_QDomProcessingInstruction(QDomProcessingInstruction* obj) { delete obj; }
QString data(QDomProcessingInstruction* theWrappedObject) const;
void setData(QDomProcessingInstruction* theWrappedObject, const QString& d);
QString target(QDomProcessingInstruction* theWrappedObject) const;
bool __nonzero__(QDomProcessingInstruction* obj) { return !obj->isNull(); }
};
class PythonQtWrapper_QDomText : public QObject
{ Q_OBJECT
public:
public slots:
QDomText* new_QDomText();
QDomText* new_QDomText(const QDomText& x);
void delete_QDomText(QDomText* obj) { delete obj; }
QDomText splitText(QDomText* theWrappedObject, int offset);
bool __nonzero__(QDomText* obj) { return !obj->isNull(); }
};
class PythonQtShell_QXmlAttributes : public QXmlAttributes
{
public:
PythonQtShell_QXmlAttributes():QXmlAttributes(),_wrapper(NULL) {};
~PythonQtShell_QXmlAttributes();
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QXmlAttributes : public QObject
{ Q_OBJECT
public:
public slots:
QXmlAttributes* new_QXmlAttributes();
QXmlAttributes* new_QXmlAttributes(const QXmlAttributes& other) {
PythonQtShell_QXmlAttributes* a = new PythonQtShell_QXmlAttributes();
*((QXmlAttributes*)a) = other;
return a; }
void delete_QXmlAttributes(QXmlAttributes* obj) { delete obj; }
void append(QXmlAttributes* theWrappedObject, const QString& qName, const QString& uri, const QString& localPart, const QString& value);
void clear(QXmlAttributes* theWrappedObject);
int count(QXmlAttributes* theWrappedObject) const;
int index(QXmlAttributes* theWrappedObject, const QString& qName) const;
int index(QXmlAttributes* theWrappedObject, const QString& uri, const QString& localPart) const;
int length(QXmlAttributes* theWrappedObject) const;
QString localName(QXmlAttributes* theWrappedObject, int index) const;
QString qName(QXmlAttributes* theWrappedObject, int index) const;
QString type(QXmlAttributes* theWrappedObject, const QString& qName) const;
QString type(QXmlAttributes* theWrappedObject, const QString& uri, const QString& localName) const;
QString type(QXmlAttributes* theWrappedObject, int index) const;
QString uri(QXmlAttributes* theWrappedObject, int index) const;
QString value(QXmlAttributes* theWrappedObject, const QString& qName) const;
QString value(QXmlAttributes* theWrappedObject, const QString& uri, const QString& localName) const;
QString value(QXmlAttributes* theWrappedObject, int index) const;
};
class PythonQtShell_QXmlContentHandler : public QXmlContentHandler
{
public:
PythonQtShell_QXmlContentHandler():QXmlContentHandler(),_wrapper(NULL) {};
~PythonQtShell_QXmlContentHandler();
virtual bool characters(const QString& ch);
virtual bool endDocument();
virtual bool endElement(const QString& namespaceURI, const QString& localName, const QString& qName);
virtual bool endPrefixMapping(const QString& prefix);
virtual QString errorString() const;
virtual bool ignorableWhitespace(const QString& ch);
virtual bool processingInstruction(const QString& target, const QString& data);
virtual void setDocumentLocator(QXmlLocator* locator);
virtual bool skippedEntity(const QString& name);
virtual bool startDocument();
virtual bool startElement(const QString& namespaceURI, const QString& localName, const QString& qName, const QXmlAttributes& atts);
virtual bool startPrefixMapping(const QString& prefix, const QString& uri);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QXmlContentHandler : public QObject
{ Q_OBJECT
public:
public slots:
QXmlContentHandler* new_QXmlContentHandler();
void delete_QXmlContentHandler(QXmlContentHandler* obj) { delete obj; }
};
class PythonQtShell_QXmlDTDHandler : public QXmlDTDHandler
{
public:
PythonQtShell_QXmlDTDHandler():QXmlDTDHandler(),_wrapper(NULL) {};
~PythonQtShell_QXmlDTDHandler();
virtual QString errorString() const;
virtual bool notationDecl(const QString& name, const QString& publicId, const QString& systemId);
virtual bool unparsedEntityDecl(const QString& name, const QString& publicId, const QString& systemId, const QString& notationName);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QXmlDTDHandler : public QObject
{ Q_OBJECT
public:
public slots:
QXmlDTDHandler* new_QXmlDTDHandler();
void delete_QXmlDTDHandler(QXmlDTDHandler* obj) { delete obj; }
};
class PythonQtShell_QXmlDeclHandler : public QXmlDeclHandler
{
public:
PythonQtShell_QXmlDeclHandler():QXmlDeclHandler(),_wrapper(NULL) {};
~PythonQtShell_QXmlDeclHandler();
virtual bool attributeDecl(const QString& eName, const QString& aName, const QString& type, const QString& valueDefault, const QString& value);
virtual QString errorString() const;
virtual bool externalEntityDecl(const QString& name, const QString& publicId, const QString& systemId);
virtual bool internalEntityDecl(const QString& name, const QString& value);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QXmlDeclHandler : public QObject
{ Q_OBJECT
public:
public slots:
QXmlDeclHandler* new_QXmlDeclHandler();
void delete_QXmlDeclHandler(QXmlDeclHandler* obj) { delete obj; }
};
class PythonQtShell_QXmlDefaultHandler : public QXmlDefaultHandler
{
public:
PythonQtShell_QXmlDefaultHandler():QXmlDefaultHandler(),_wrapper(NULL) {};
~PythonQtShell_QXmlDefaultHandler();
virtual bool attributeDecl(const QString& eName, const QString& aName, const QString& type, const QString& valueDefault, const QString& value);
virtual bool characters(const QString& ch);
virtual bool comment(const QString& ch);
virtual bool endCDATA();
virtual bool endDTD();
virtual bool endDocument();
virtual bool endElement(const QString& namespaceURI, const QString& localName, const QString& qName);
virtual bool endEntity(const QString& name);
virtual bool endPrefixMapping(const QString& prefix);
virtual bool error(const QXmlParseException& exception);
virtual QString errorString() const;
virtual bool externalEntityDecl(const QString& name, const QString& publicId, const QString& systemId);
virtual bool fatalError(const QXmlParseException& exception);
virtual bool ignorableWhitespace(const QString& ch);
virtual bool internalEntityDecl(const QString& name, const QString& value);
virtual bool notationDecl(const QString& name, const QString& publicId, const QString& systemId);
virtual bool processingInstruction(const QString& target, const QString& data);
virtual bool resolveEntity(const QString& publicId, const QString& systemId, QXmlInputSource*& ret);
virtual void setDocumentLocator(QXmlLocator* locator);
virtual bool skippedEntity(const QString& name);
virtual bool startCDATA();
virtual bool startDTD(const QString& name, const QString& publicId, const QString& systemId);
virtual bool startDocument();
virtual bool startElement(const QString& namespaceURI, const QString& localName, const QString& qName, const QXmlAttributes& atts);
virtual bool startEntity(const QString& name);
virtual bool startPrefixMapping(const QString& prefix, const QString& uri);
virtual bool unparsedEntityDecl(const QString& name, const QString& publicId, const QString& systemId, const QString& notationName);
virtual bool warning(const QXmlParseException& exception);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QXmlDefaultHandler : public QXmlDefaultHandler
{ public:
inline bool promoted_attributeDecl(const QString& eName, const QString& aName, const QString& type, const QString& valueDefault, const QString& value) { return QXmlDefaultHandler::attributeDecl(eName, aName, type, valueDefault, value); }
inline bool promoted_characters(const QString& ch) { return QXmlDefaultHandler::characters(ch); }
inline bool promoted_comment(const QString& ch) { return QXmlDefaultHandler::comment(ch); }
inline bool promoted_endCDATA() { return QXmlDefaultHandler::endCDATA(); }
inline bool promoted_endDTD() { return QXmlDefaultHandler::endDTD(); }
inline bool promoted_endDocument() { return QXmlDefaultHandler::endDocument(); }
inline bool promoted_endElement(const QString& namespaceURI, const QString& localName, const QString& qName) { return QXmlDefaultHandler::endElement(namespaceURI, localName, qName); }
inline bool promoted_endEntity(const QString& name) { return QXmlDefaultHandler::endEntity(name); }
inline bool promoted_endPrefixMapping(const QString& prefix) { return QXmlDefaultHandler::endPrefixMapping(prefix); }
inline bool promoted_error(const QXmlParseException& exception) { return QXmlDefaultHandler::error(exception); }
inline QString promoted_errorString() const { return QXmlDefaultHandler::errorString(); }
inline bool promoted_externalEntityDecl(const QString& name, const QString& publicId, const QString& systemId) { return QXmlDefaultHandler::externalEntityDecl(name, publicId, systemId); }
inline bool promoted_fatalError(const QXmlParseException& exception) { return QXmlDefaultHandler::fatalError(exception); }
inline bool promoted_ignorableWhitespace(const QString& ch) { return QXmlDefaultHandler::ignorableWhitespace(ch); }
inline bool promoted_internalEntityDecl(const QString& name, const QString& value) { return QXmlDefaultHandler::internalEntityDecl(name, value); }
inline bool promoted_notationDecl(const QString& name, const QString& publicId, const QString& systemId) { return QXmlDefaultHandler::notationDecl(name, publicId, systemId); }
inline bool promoted_processingInstruction(const QString& target, const QString& data) { return QXmlDefaultHandler::processingInstruction(target, data); }
inline bool promoted_resolveEntity(const QString& publicId, const QString& systemId, QXmlInputSource*& ret) { return QXmlDefaultHandler::resolveEntity(publicId, systemId, ret); }
inline void promoted_setDocumentLocator(QXmlLocator* locator) { QXmlDefaultHandler::setDocumentLocator(locator); }
inline bool promoted_skippedEntity(const QString& name) { return QXmlDefaultHandler::skippedEntity(name); }
inline bool promoted_startCDATA() { return QXmlDefaultHandler::startCDATA(); }
inline bool promoted_startDTD(const QString& name, const QString& publicId, const QString& systemId) { return QXmlDefaultHandler::startDTD(name, publicId, systemId); }
inline bool promoted_startDocument() { return QXmlDefaultHandler::startDocument(); }
inline bool promoted_startElement(const QString& namespaceURI, const QString& localName, const QString& qName, const QXmlAttributes& atts) { return QXmlDefaultHandler::startElement(namespaceURI, localName, qName, atts); }
inline bool promoted_startEntity(const QString& name) { return QXmlDefaultHandler::startEntity(name); }
inline bool promoted_startPrefixMapping(const QString& prefix, const QString& uri) { return QXmlDefaultHandler::startPrefixMapping(prefix, uri); }
inline bool promoted_unparsedEntityDecl(const QString& name, const QString& publicId, const QString& systemId, const QString& notationName) { return QXmlDefaultHandler::unparsedEntityDecl(name, publicId, systemId, notationName); }
inline bool promoted_warning(const QXmlParseException& exception) { return QXmlDefaultHandler::warning(exception); }
};
class PythonQtWrapper_QXmlDefaultHandler : public QObject
{ Q_OBJECT
public:
public slots:
QXmlDefaultHandler* new_QXmlDefaultHandler();
void delete_QXmlDefaultHandler(QXmlDefaultHandler* obj) { delete obj; }
bool attributeDecl(QXmlDefaultHandler* theWrappedObject, const QString& eName, const QString& aName, const QString& type, const QString& valueDefault, const QString& value);
bool characters(QXmlDefaultHandler* theWrappedObject, const QString& ch);
bool comment(QXmlDefaultHandler* theWrappedObject, const QString& ch);
bool endCDATA(QXmlDefaultHandler* theWrappedObject);
bool endDTD(QXmlDefaultHandler* theWrappedObject);
bool endDocument(QXmlDefaultHandler* theWrappedObject);
bool endElement(QXmlDefaultHandler* theWrappedObject, const QString& namespaceURI, const QString& localName, const QString& qName);
bool endEntity(QXmlDefaultHandler* theWrappedObject, const QString& name);
bool endPrefixMapping(QXmlDefaultHandler* theWrappedObject, const QString& prefix);
bool error(QXmlDefaultHandler* theWrappedObject, const QXmlParseException& exception);
QString errorString(QXmlDefaultHandler* theWrappedObject) const;
bool externalEntityDecl(QXmlDefaultHandler* theWrappedObject, const QString& name, const QString& publicId, const QString& systemId);
bool fatalError(QXmlDefaultHandler* theWrappedObject, const QXmlParseException& exception);
bool ignorableWhitespace(QXmlDefaultHandler* theWrappedObject, const QString& ch);
bool internalEntityDecl(QXmlDefaultHandler* theWrappedObject, const QString& name, const QString& value);
bool notationDecl(QXmlDefaultHandler* theWrappedObject, const QString& name, const QString& publicId, const QString& systemId);
bool processingInstruction(QXmlDefaultHandler* theWrappedObject, const QString& target, const QString& data);
bool resolveEntity(QXmlDefaultHandler* theWrappedObject, const QString& publicId, const QString& systemId, QXmlInputSource*& ret);
void setDocumentLocator(QXmlDefaultHandler* theWrappedObject, QXmlLocator* locator);
bool skippedEntity(QXmlDefaultHandler* theWrappedObject, const QString& name);
bool startCDATA(QXmlDefaultHandler* theWrappedObject);
bool startDTD(QXmlDefaultHandler* theWrappedObject, const QString& name, const QString& publicId, const QString& systemId);
bool startDocument(QXmlDefaultHandler* theWrappedObject);
bool startElement(QXmlDefaultHandler* theWrappedObject, const QString& namespaceURI, const QString& localName, const QString& qName, const QXmlAttributes& atts);
bool startEntity(QXmlDefaultHandler* theWrappedObject, const QString& name);
bool startPrefixMapping(QXmlDefaultHandler* theWrappedObject, const QString& prefix, const QString& uri);
bool unparsedEntityDecl(QXmlDefaultHandler* theWrappedObject, const QString& name, const QString& publicId, const QString& systemId, const QString& notationName);
bool warning(QXmlDefaultHandler* theWrappedObject, const QXmlParseException& exception);
};
class PythonQtShell_QXmlEntityResolver : public QXmlEntityResolver
{
public:
PythonQtShell_QXmlEntityResolver():QXmlEntityResolver(),_wrapper(NULL) {};
~PythonQtShell_QXmlEntityResolver();
virtual QString errorString() const;
virtual bool resolveEntity(const QString& publicId, const QString& systemId, QXmlInputSource*& ret);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QXmlEntityResolver : public QObject
{ Q_OBJECT
public:
public slots:
QXmlEntityResolver* new_QXmlEntityResolver();
void delete_QXmlEntityResolver(QXmlEntityResolver* obj) { delete obj; }
};
class PythonQtShell_QXmlErrorHandler : public QXmlErrorHandler
{
public:
PythonQtShell_QXmlErrorHandler():QXmlErrorHandler(),_wrapper(NULL) {};
~PythonQtShell_QXmlErrorHandler();
virtual bool error(const QXmlParseException& exception);
virtual QString errorString() const;
virtual bool fatalError(const QXmlParseException& exception);
virtual bool warning(const QXmlParseException& exception);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QXmlErrorHandler : public QObject
{ Q_OBJECT
public:
public slots:
QXmlErrorHandler* new_QXmlErrorHandler();
void delete_QXmlErrorHandler(QXmlErrorHandler* obj) { delete obj; }
};
class PythonQtShell_QXmlInputSource : public QXmlInputSource
{
public:
PythonQtShell_QXmlInputSource():QXmlInputSource(),_wrapper(NULL) {};
PythonQtShell_QXmlInputSource(QIODevice* dev):QXmlInputSource(dev),_wrapper(NULL) {};
~PythonQtShell_QXmlInputSource();
virtual QString data() const;
virtual void fetchData();
virtual QString fromRawData(const QByteArray& data, bool beginning = false);
virtual QChar next();
virtual void reset();
virtual void setData(const QByteArray& dat);
virtual void setData(const QString& dat);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QXmlInputSource : public QXmlInputSource
{ public:
inline QString promoted_data() const { return QXmlInputSource::data(); }
inline void promoted_fetchData() { QXmlInputSource::fetchData(); }
inline QString promoted_fromRawData(const QByteArray& data, bool beginning = false) { return QXmlInputSource::fromRawData(data, beginning); }
inline QChar promoted_next() { return QXmlInputSource::next(); }
inline void promoted_reset() { QXmlInputSource::reset(); }
inline void promoted_setData(const QByteArray& dat) { QXmlInputSource::setData(dat); }
inline void promoted_setData(const QString& dat) { QXmlInputSource::setData(dat); }
};
class PythonQtWrapper_QXmlInputSource : public QObject
{ Q_OBJECT
public:
public slots:
QXmlInputSource* new_QXmlInputSource();
QXmlInputSource* new_QXmlInputSource(QIODevice* dev);
void delete_QXmlInputSource(QXmlInputSource* obj) { delete obj; }
QString data(QXmlInputSource* theWrappedObject) const;
void fetchData(QXmlInputSource* theWrappedObject);
QString fromRawData(QXmlInputSource* theWrappedObject, const QByteArray& data, bool beginning = false);
QChar next(QXmlInputSource* theWrappedObject);
void reset(QXmlInputSource* theWrappedObject);
void setData(QXmlInputSource* theWrappedObject, const QByteArray& dat);
void setData(QXmlInputSource* theWrappedObject, const QString& dat);
};
class PythonQtShell_QXmlLexicalHandler : public QXmlLexicalHandler
{
public:
PythonQtShell_QXmlLexicalHandler():QXmlLexicalHandler(),_wrapper(NULL) {};
~PythonQtShell_QXmlLexicalHandler();
virtual bool comment(const QString& ch);
virtual bool endCDATA();
virtual bool endDTD();
virtual bool endEntity(const QString& name);
virtual QString errorString() const;
virtual bool startCDATA();
virtual bool startDTD(const QString& name, const QString& publicId, const QString& systemId);
virtual bool startEntity(const QString& name);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QXmlLexicalHandler : public QObject
{ Q_OBJECT
public:
public slots:
QXmlLexicalHandler* new_QXmlLexicalHandler();
void delete_QXmlLexicalHandler(QXmlLexicalHandler* obj) { delete obj; }
};
class PythonQtShell_QXmlLocator : public QXmlLocator
{
public:
PythonQtShell_QXmlLocator():QXmlLocator(),_wrapper(NULL) {};
~PythonQtShell_QXmlLocator();
virtual int columnNumber() const;
virtual int lineNumber() const;
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QXmlLocator : public QObject
{ Q_OBJECT
public:
public slots:
QXmlLocator* new_QXmlLocator();
void delete_QXmlLocator(QXmlLocator* obj) { delete obj; }
};
class PythonQtWrapper_QXmlParseException : public QObject
{ Q_OBJECT
public:
public slots:
QXmlParseException* new_QXmlParseException(const QString& name = QString(), int c = -1, int l = -1, const QString& p = QString(), const QString& s = QString());
QXmlParseException* new_QXmlParseException(const QXmlParseException& other);
void delete_QXmlParseException(QXmlParseException* obj) { delete obj; }
int columnNumber(QXmlParseException* theWrappedObject) const;
int lineNumber(QXmlParseException* theWrappedObject) const;
QString message(QXmlParseException* theWrappedObject) const;
QString publicId(QXmlParseException* theWrappedObject) const;
QString systemId(QXmlParseException* theWrappedObject) const;
};
class PythonQtShell_QXmlReader : public QXmlReader
{
public:
PythonQtShell_QXmlReader():QXmlReader(),_wrapper(NULL) {};
~PythonQtShell_QXmlReader();
virtual QXmlDTDHandler* DTDHandler() const;
virtual QXmlContentHandler* contentHandler() const;
virtual QXmlDeclHandler* declHandler() const;
virtual QXmlEntityResolver* entityResolver() const;
virtual QXmlErrorHandler* errorHandler() const;
virtual bool feature(const QString& name, bool* ok = 0) const;
virtual bool hasFeature(const QString& name) const;
virtual bool hasProperty(const QString& name) const;
virtual QXmlLexicalHandler* lexicalHandler() const;
virtual bool parse(const QXmlInputSource& input);
virtual bool parse(const QXmlInputSource* input);
virtual void* property(const QString& name, bool* ok = 0) const;
virtual void setContentHandler(QXmlContentHandler* handler);
virtual void setDTDHandler(QXmlDTDHandler* handler);
virtual void setDeclHandler(QXmlDeclHandler* handler);
virtual void setEntityResolver(QXmlEntityResolver* handler);
virtual void setErrorHandler(QXmlErrorHandler* handler);
virtual void setFeature(const QString& name, bool value);
virtual void setLexicalHandler(QXmlLexicalHandler* handler);
virtual void setProperty(const QString& name, void* value);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QXmlReader : public QObject
{ Q_OBJECT
public:
public slots:
QXmlReader* new_QXmlReader();
void delete_QXmlReader(QXmlReader* obj) { delete obj; }
};
class PythonQtShell_QXmlSimpleReader : public QXmlSimpleReader
{
public:
PythonQtShell_QXmlSimpleReader():QXmlSimpleReader(),_wrapper(NULL) {};
~PythonQtShell_QXmlSimpleReader();
virtual QXmlDTDHandler* DTDHandler() const;
virtual QXmlContentHandler* contentHandler() const;
virtual QXmlDeclHandler* declHandler() const;
virtual QXmlEntityResolver* entityResolver() const;
virtual QXmlErrorHandler* errorHandler() const;
virtual bool feature(const QString& name, bool* ok = 0) const;
virtual bool hasFeature(const QString& name) const;
virtual bool hasProperty(const QString& name) const;
virtual QXmlLexicalHandler* lexicalHandler() const;
virtual bool parse(const QXmlInputSource& input);
virtual bool parse(const QXmlInputSource* input);
virtual bool parse(const QXmlInputSource* input, bool incremental);
virtual bool parseContinue();
virtual void* property(const QString& name, bool* ok = 0) const;
virtual void setContentHandler(QXmlContentHandler* handler);
virtual void setDTDHandler(QXmlDTDHandler* handler);
virtual void setDeclHandler(QXmlDeclHandler* handler);
virtual void setEntityResolver(QXmlEntityResolver* handler);
virtual void setErrorHandler(QXmlErrorHandler* handler);
virtual void setFeature(const QString& name, bool value);
virtual void setLexicalHandler(QXmlLexicalHandler* handler);
virtual void setProperty(const QString& name, void* value);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QXmlSimpleReader : public QXmlSimpleReader
{ public:
inline QXmlDTDHandler* promoted_DTDHandler() const { return QXmlSimpleReader::DTDHandler(); }
inline QXmlContentHandler* promoted_contentHandler() const { return QXmlSimpleReader::contentHandler(); }
inline QXmlDeclHandler* promoted_declHandler() const { return QXmlSimpleReader::declHandler(); }
inline QXmlEntityResolver* promoted_entityResolver() const { return QXmlSimpleReader::entityResolver(); }
inline QXmlErrorHandler* promoted_errorHandler() const { return QXmlSimpleReader::errorHandler(); }
inline bool promoted_feature(const QString& name, bool* ok = 0) const { return QXmlSimpleReader::feature(name, ok); }
inline bool promoted_hasFeature(const QString& name) const { return QXmlSimpleReader::hasFeature(name); }
inline bool promoted_hasProperty(const QString& name) const { return QXmlSimpleReader::hasProperty(name); }
inline QXmlLexicalHandler* promoted_lexicalHandler() const { return QXmlSimpleReader::lexicalHandler(); }
inline bool promoted_parse(const QXmlInputSource& input) { return QXmlSimpleReader::parse(input); }
inline bool promoted_parse(const QXmlInputSource* input) { return QXmlSimpleReader::parse(input); }
inline bool promoted_parse(const QXmlInputSource* input, bool incremental) { return QXmlSimpleReader::parse(input, incremental); }
inline bool promoted_parseContinue() { return QXmlSimpleReader::parseContinue(); }
inline void* promoted_property(const QString& name, bool* ok = 0) const { return QXmlSimpleReader::property(name, ok); }
inline void promoted_setContentHandler(QXmlContentHandler* handler) { QXmlSimpleReader::setContentHandler(handler); }
inline void promoted_setDTDHandler(QXmlDTDHandler* handler) { QXmlSimpleReader::setDTDHandler(handler); }
inline void promoted_setDeclHandler(QXmlDeclHandler* handler) { QXmlSimpleReader::setDeclHandler(handler); }
inline void promoted_setEntityResolver(QXmlEntityResolver* handler) { QXmlSimpleReader::setEntityResolver(handler); }
inline void promoted_setErrorHandler(QXmlErrorHandler* handler) { QXmlSimpleReader::setErrorHandler(handler); }
inline void promoted_setFeature(const QString& name, bool value) { QXmlSimpleReader::setFeature(name, value); }
inline void promoted_setLexicalHandler(QXmlLexicalHandler* handler) { QXmlSimpleReader::setLexicalHandler(handler); }
inline void promoted_setProperty(const QString& name, void* value) { QXmlSimpleReader::setProperty(name, value); }
};
class PythonQtWrapper_QXmlSimpleReader : public QObject
{ Q_OBJECT
public:
public slots:
QXmlSimpleReader* new_QXmlSimpleReader();
void delete_QXmlSimpleReader(QXmlSimpleReader* obj) { delete obj; }
QXmlDTDHandler* DTDHandler(QXmlSimpleReader* theWrappedObject) const;
QXmlContentHandler* contentHandler(QXmlSimpleReader* theWrappedObject) const;
QXmlDeclHandler* declHandler(QXmlSimpleReader* theWrappedObject) const;
QXmlEntityResolver* entityResolver(QXmlSimpleReader* theWrappedObject) const;
QXmlErrorHandler* errorHandler(QXmlSimpleReader* theWrappedObject) const;
bool feature(QXmlSimpleReader* theWrappedObject, const QString& name, bool* ok = 0) const;
bool hasFeature(QXmlSimpleReader* theWrappedObject, const QString& name) const;
bool hasProperty(QXmlSimpleReader* theWrappedObject, const QString& name) const;
QXmlLexicalHandler* lexicalHandler(QXmlSimpleReader* theWrappedObject) const;
bool parse(QXmlSimpleReader* theWrappedObject, const QXmlInputSource& input);
bool parse(QXmlSimpleReader* theWrappedObject, const QXmlInputSource* input);
bool parse(QXmlSimpleReader* theWrappedObject, const QXmlInputSource* input, bool incremental);
bool parseContinue(QXmlSimpleReader* theWrappedObject);
void* property(QXmlSimpleReader* theWrappedObject, const QString& name, bool* ok = 0) const;
void setContentHandler(QXmlSimpleReader* theWrappedObject, QXmlContentHandler* handler);
void setDTDHandler(QXmlSimpleReader* theWrappedObject, QXmlDTDHandler* handler);
void setDeclHandler(QXmlSimpleReader* theWrappedObject, QXmlDeclHandler* handler);
void setEntityResolver(QXmlSimpleReader* theWrappedObject, QXmlEntityResolver* handler);
void setErrorHandler(QXmlSimpleReader* theWrappedObject, QXmlErrorHandler* handler);
void setFeature(QXmlSimpleReader* theWrappedObject, const QString& name, bool value);
void setLexicalHandler(QXmlSimpleReader* theWrappedObject, QXmlLexicalHandler* handler);
void setProperty(QXmlSimpleReader* theWrappedObject, const QString& name, void* value);
};
|