-
Notifications
You must be signed in to change notification settings - Fork 2
/
QtXmlPatterns.py
889 lines (660 loc) · 33.4 KB
/
QtXmlPatterns.py
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
# encoding: utf-8
# module PyQt4.QtXmlPatterns
# from C:\Python27\lib\site-packages\PyQt4\QtXmlPatterns.pyd
# by generator 1.145
# no doc
# imports
import PyQt4.QtCore as __PyQt4_QtCore
# no functions
# classes
class QAbstractMessageHandler(__PyQt4_QtCore.QObject):
""" QAbstractMessageHandler(QObject parent=None) """
def childEvent(self, *args, **kwargs): # real signature unknown
pass
def connectNotify(self, *args, **kwargs): # real signature unknown
pass
def customEvent(self, *args, **kwargs): # real signature unknown
pass
def disconnectNotify(self, *args, **kwargs): # real signature unknown
pass
def handleMessage(self, QtMsgType, QString, QUrl, QSourceLocation): # real signature unknown; restored from __doc__
""" QAbstractMessageHandler.handleMessage(QtMsgType, QString, QUrl, QSourceLocation) """
pass
def message(self, QtMsgType, QString, QUrl_identifier=None, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__
""" QAbstractMessageHandler.message(QtMsgType, QString, QUrl identifier=QUrl(), QSourceLocation sourceLocation=QSourceLocation()) """
pass
def receivers(self, *args, **kwargs): # real signature unknown
pass
def sender(self, *args, **kwargs): # real signature unknown
pass
def senderSignalIndex(self, *args, **kwargs): # real signature unknown
pass
def timerEvent(self, *args, **kwargs): # real signature unknown
pass
def __init__(self, QObject_parent=None): # real signature unknown; restored from __doc__
pass
class QAbstractUriResolver(__PyQt4_QtCore.QObject):
""" QAbstractUriResolver(QObject parent=None) """
def childEvent(self, *args, **kwargs): # real signature unknown
pass
def connectNotify(self, *args, **kwargs): # real signature unknown
pass
def customEvent(self, *args, **kwargs): # real signature unknown
pass
def disconnectNotify(self, *args, **kwargs): # real signature unknown
pass
def receivers(self, *args, **kwargs): # real signature unknown
pass
def resolve(self, QUrl, QUrl_1): # real signature unknown; restored from __doc__
""" QAbstractUriResolver.resolve(QUrl, QUrl) -> QUrl """
pass
def sender(self, *args, **kwargs): # real signature unknown
pass
def senderSignalIndex(self, *args, **kwargs): # real signature unknown
pass
def timerEvent(self, *args, **kwargs): # real signature unknown
pass
def __init__(self, QObject_parent=None): # real signature unknown; restored from __doc__
pass
class QAbstractXmlNodeModel(): # skipped bases: <type 'sip.simplewrapper'>
""" QAbstractXmlNodeModel() """
def attributes(self, QXmlNodeModelIndex): # real signature unknown; restored from __doc__
""" QAbstractXmlNodeModel.attributes(QXmlNodeModelIndex) -> list-of-QXmlNodeModelIndex """
pass
def baseUri(self, QXmlNodeModelIndex): # real signature unknown; restored from __doc__
""" QAbstractXmlNodeModel.baseUri(QXmlNodeModelIndex) -> QUrl """
pass
def compareOrder(self, QXmlNodeModelIndex, QXmlNodeModelIndex_1): # real signature unknown; restored from __doc__
""" QAbstractXmlNodeModel.compareOrder(QXmlNodeModelIndex, QXmlNodeModelIndex) -> QXmlNodeModelIndex.DocumentOrder """
pass
def createIndex(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
"""
QAbstractXmlNodeModel.createIndex(int) -> QXmlNodeModelIndex
QAbstractXmlNodeModel.createIndex(int, int) -> QXmlNodeModelIndex
QAbstractXmlNodeModel.createIndex(object, int additionalData=0) -> QXmlNodeModelIndex
"""
return QXmlNodeModelIndex
def documentUri(self, QXmlNodeModelIndex): # real signature unknown; restored from __doc__
""" QAbstractXmlNodeModel.documentUri(QXmlNodeModelIndex) -> QUrl """
pass
def elementById(self, QXmlName): # real signature unknown; restored from __doc__
""" QAbstractXmlNodeModel.elementById(QXmlName) -> QXmlNodeModelIndex """
return QXmlNodeModelIndex
def kind(self, QXmlNodeModelIndex): # real signature unknown; restored from __doc__
""" QAbstractXmlNodeModel.kind(QXmlNodeModelIndex) -> QXmlNodeModelIndex.NodeKind """
pass
def name(self, QXmlNodeModelIndex): # real signature unknown; restored from __doc__
""" QAbstractXmlNodeModel.name(QXmlNodeModelIndex) -> QXmlName """
return QXmlName
def namespaceBindings(self, QXmlNodeModelIndex): # real signature unknown; restored from __doc__
""" QAbstractXmlNodeModel.namespaceBindings(QXmlNodeModelIndex) -> list-of-QXmlName """
pass
def nextFromSimpleAxis(self, QAbstractXmlNodeModel_SimpleAxis, QXmlNodeModelIndex): # real signature unknown; restored from __doc__
""" QAbstractXmlNodeModel.nextFromSimpleAxis(QAbstractXmlNodeModel.SimpleAxis, QXmlNodeModelIndex) -> QXmlNodeModelIndex """
return QXmlNodeModelIndex
def nodesByIdref(self, QXmlName): # real signature unknown; restored from __doc__
""" QAbstractXmlNodeModel.nodesByIdref(QXmlName) -> list-of-QXmlNodeModelIndex """
pass
def root(self, QXmlNodeModelIndex): # real signature unknown; restored from __doc__
""" QAbstractXmlNodeModel.root(QXmlNodeModelIndex) -> QXmlNodeModelIndex """
return QXmlNodeModelIndex
def sourceLocation(self, QXmlNodeModelIndex): # real signature unknown; restored from __doc__
""" QAbstractXmlNodeModel.sourceLocation(QXmlNodeModelIndex) -> QSourceLocation """
return QSourceLocation
def stringValue(self, QXmlNodeModelIndex): # real signature unknown; restored from __doc__
""" QAbstractXmlNodeModel.stringValue(QXmlNodeModelIndex) -> QString """
pass
def typedValue(self, QXmlNodeModelIndex): # real signature unknown; restored from __doc__
""" QAbstractXmlNodeModel.typedValue(QXmlNodeModelIndex) -> QVariant """
pass
def __init__(self): # real signature unknown; restored from __doc__
pass
__weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None) # default
"""list of weak references to the object (if defined)"""
FirstChild = 1
NextSibling = 3
Parent = 0
PreviousSibling = 2
class QAbstractXmlReceiver(): # skipped bases: <type 'sip.simplewrapper'>
""" QAbstractXmlReceiver() """
def atomicValue(self, QVariant): # real signature unknown; restored from __doc__
""" QAbstractXmlReceiver.atomicValue(QVariant) """
pass
def attribute(self, QXmlName, QStringRef): # real signature unknown; restored from __doc__
""" QAbstractXmlReceiver.attribute(QXmlName, QStringRef) """
pass
def characters(self, QStringRef): # real signature unknown; restored from __doc__
""" QAbstractXmlReceiver.characters(QStringRef) """
pass
def comment(self, QString): # real signature unknown; restored from __doc__
""" QAbstractXmlReceiver.comment(QString) """
pass
def endDocument(self): # real signature unknown; restored from __doc__
""" QAbstractXmlReceiver.endDocument() """
pass
def endElement(self): # real signature unknown; restored from __doc__
""" QAbstractXmlReceiver.endElement() """
pass
def endOfSequence(self): # real signature unknown; restored from __doc__
""" QAbstractXmlReceiver.endOfSequence() """
pass
def namespaceBinding(self, QXmlName): # real signature unknown; restored from __doc__
""" QAbstractXmlReceiver.namespaceBinding(QXmlName) """
pass
def processingInstruction(self, QXmlName, QString): # real signature unknown; restored from __doc__
""" QAbstractXmlReceiver.processingInstruction(QXmlName, QString) """
pass
def startDocument(self): # real signature unknown; restored from __doc__
""" QAbstractXmlReceiver.startDocument() """
pass
def startElement(self, QXmlName): # real signature unknown; restored from __doc__
""" QAbstractXmlReceiver.startElement(QXmlName) """
pass
def startOfSequence(self): # real signature unknown; restored from __doc__
""" QAbstractXmlReceiver.startOfSequence() """
pass
def __init__(self): # real signature unknown; restored from __doc__
pass
__weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None) # default
"""list of weak references to the object (if defined)"""
class QSimpleXmlNodeModel(QAbstractXmlNodeModel):
""" QSimpleXmlNodeModel(QXmlNamePool) """
def attributes(self, *args, **kwargs): # real signature unknown
pass
def baseUri(self, QXmlNodeModelIndex): # real signature unknown; restored from __doc__
""" QSimpleXmlNodeModel.baseUri(QXmlNodeModelIndex) -> QUrl """
pass
def createIndex(self, *args, **kwargs): # real signature unknown
pass
def elementById(self, QXmlName): # real signature unknown; restored from __doc__
""" QSimpleXmlNodeModel.elementById(QXmlName) -> QXmlNodeModelIndex """
return QXmlNodeModelIndex
def namePool(self): # real signature unknown; restored from __doc__
""" QSimpleXmlNodeModel.namePool() -> QXmlNamePool """
return QXmlNamePool
def namespaceBindings(self, QXmlNodeModelIndex): # real signature unknown; restored from __doc__
""" QSimpleXmlNodeModel.namespaceBindings(QXmlNodeModelIndex) -> list-of-QXmlName """
pass
def nextFromSimpleAxis(self, *args, **kwargs): # real signature unknown
pass
def nodesByIdref(self, QXmlName): # real signature unknown; restored from __doc__
""" QSimpleXmlNodeModel.nodesByIdref(QXmlName) -> list-of-QXmlNodeModelIndex """
pass
def stringValue(self, QXmlNodeModelIndex): # real signature unknown; restored from __doc__
""" QSimpleXmlNodeModel.stringValue(QXmlNodeModelIndex) -> QString """
pass
def __init__(self, QXmlNamePool): # real signature unknown; restored from __doc__
pass
class QSourceLocation(): # skipped bases: <type 'sip.simplewrapper'>
"""
QSourceLocation()
QSourceLocation(QSourceLocation)
QSourceLocation(QUrl, int line=-1, int column=-1)
"""
def column(self): # real signature unknown; restored from __doc__
""" QSourceLocation.column() -> int """
return 0
def isNull(self): # real signature unknown; restored from __doc__
""" QSourceLocation.isNull() -> bool """
return False
def line(self): # real signature unknown; restored from __doc__
""" QSourceLocation.line() -> int """
return 0
def setColumn(self, p_int): # real signature unknown; restored from __doc__
""" QSourceLocation.setColumn(int) """
pass
def setLine(self, p_int): # real signature unknown; restored from __doc__
""" QSourceLocation.setLine(int) """
pass
def setUri(self, QUrl): # real signature unknown; restored from __doc__
""" QSourceLocation.setUri(QUrl) """
pass
def uri(self): # real signature unknown; restored from __doc__
""" QSourceLocation.uri() -> QUrl """
pass
def __eq__(self, y): # real signature unknown; restored from __doc__
""" x.__eq__(y) <==> x==y """
pass
def __ge__(self, y): # real signature unknown; restored from __doc__
""" x.__ge__(y) <==> x>=y """
pass
def __gt__(self, y): # real signature unknown; restored from __doc__
""" x.__gt__(y) <==> x>y """
pass
def __hash__(self): # real signature unknown; restored from __doc__
""" x.__hash__() <==> hash(x) """
pass
def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
pass
def __le__(self, y): # real signature unknown; restored from __doc__
""" x.__le__(y) <==> x<=y """
pass
def __lt__(self, y): # real signature unknown; restored from __doc__
""" x.__lt__(y) <==> x<y """
pass
def __ne__(self, y): # real signature unknown; restored from __doc__
""" x.__ne__(y) <==> x!=y """
pass
__weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None) # default
"""list of weak references to the object (if defined)"""
class QXmlSerializer(QAbstractXmlReceiver):
""" QXmlSerializer(QXmlQuery, QIODevice) """
def atomicValue(self, QVariant): # real signature unknown; restored from __doc__
""" QXmlSerializer.atomicValue(QVariant) """
pass
def attribute(self, QXmlName, QStringRef): # real signature unknown; restored from __doc__
""" QXmlSerializer.attribute(QXmlName, QStringRef) """
pass
def characters(self, QStringRef): # real signature unknown; restored from __doc__
""" QXmlSerializer.characters(QStringRef) """
pass
def codec(self): # real signature unknown; restored from __doc__
""" QXmlSerializer.codec() -> QTextCodec """
pass
def comment(self, QString): # real signature unknown; restored from __doc__
""" QXmlSerializer.comment(QString) """
pass
def endDocument(self): # real signature unknown; restored from __doc__
""" QXmlSerializer.endDocument() """
pass
def endElement(self): # real signature unknown; restored from __doc__
""" QXmlSerializer.endElement() """
pass
def endOfSequence(self): # real signature unknown; restored from __doc__
""" QXmlSerializer.endOfSequence() """
pass
def namespaceBinding(self, QXmlName): # real signature unknown; restored from __doc__
""" QXmlSerializer.namespaceBinding(QXmlName) """
pass
def outputDevice(self): # real signature unknown; restored from __doc__
""" QXmlSerializer.outputDevice() -> QIODevice """
pass
def processingInstruction(self, QXmlName, QString): # real signature unknown; restored from __doc__
""" QXmlSerializer.processingInstruction(QXmlName, QString) """
pass
def setCodec(self, QTextCodec): # real signature unknown; restored from __doc__
""" QXmlSerializer.setCodec(QTextCodec) """
pass
def startDocument(self): # real signature unknown; restored from __doc__
""" QXmlSerializer.startDocument() """
pass
def startElement(self, QXmlName): # real signature unknown; restored from __doc__
""" QXmlSerializer.startElement(QXmlName) """
pass
def startOfSequence(self): # real signature unknown; restored from __doc__
""" QXmlSerializer.startOfSequence() """
pass
def __init__(self, QXmlQuery, QIODevice): # real signature unknown; restored from __doc__
pass
class QXmlFormatter(QXmlSerializer):
""" QXmlFormatter(QXmlQuery, QIODevice) """
def atomicValue(self, QVariant): # real signature unknown; restored from __doc__
""" QXmlFormatter.atomicValue(QVariant) """
pass
def attribute(self, QXmlName, QStringRef): # real signature unknown; restored from __doc__
""" QXmlFormatter.attribute(QXmlName, QStringRef) """
pass
def characters(self, QStringRef): # real signature unknown; restored from __doc__
""" QXmlFormatter.characters(QStringRef) """
pass
def comment(self, QString): # real signature unknown; restored from __doc__
""" QXmlFormatter.comment(QString) """
pass
def endDocument(self): # real signature unknown; restored from __doc__
""" QXmlFormatter.endDocument() """
pass
def endElement(self): # real signature unknown; restored from __doc__
""" QXmlFormatter.endElement() """
pass
def endOfSequence(self): # real signature unknown; restored from __doc__
""" QXmlFormatter.endOfSequence() """
pass
def indentationDepth(self): # real signature unknown; restored from __doc__
""" QXmlFormatter.indentationDepth() -> int """
return 0
def processingInstruction(self, QXmlName, QString): # real signature unknown; restored from __doc__
""" QXmlFormatter.processingInstruction(QXmlName, QString) """
pass
def setIndentationDepth(self, p_int): # real signature unknown; restored from __doc__
""" QXmlFormatter.setIndentationDepth(int) """
pass
def startDocument(self): # real signature unknown; restored from __doc__
""" QXmlFormatter.startDocument() """
pass
def startElement(self, QXmlName): # real signature unknown; restored from __doc__
""" QXmlFormatter.startElement(QXmlName) """
pass
def startOfSequence(self): # real signature unknown; restored from __doc__
""" QXmlFormatter.startOfSequence() """
pass
def __init__(self, QXmlQuery, QIODevice): # real signature unknown; restored from __doc__
pass
class QXmlItem(): # skipped bases: <type 'sip.simplewrapper'>
"""
QXmlItem()
QXmlItem(QXmlItem)
QXmlItem(QXmlNodeModelIndex)
QXmlItem(QVariant)
"""
def isAtomicValue(self): # real signature unknown; restored from __doc__
""" QXmlItem.isAtomicValue() -> bool """
return False
def isNode(self): # real signature unknown; restored from __doc__
""" QXmlItem.isNode() -> bool """
return False
def isNull(self): # real signature unknown; restored from __doc__
""" QXmlItem.isNull() -> bool """
return False
def toAtomicValue(self): # real signature unknown; restored from __doc__
""" QXmlItem.toAtomicValue() -> QVariant """
pass
def toNodeModelIndex(self): # real signature unknown; restored from __doc__
""" QXmlItem.toNodeModelIndex() -> QXmlNodeModelIndex """
return QXmlNodeModelIndex
def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
pass
__weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None) # default
"""list of weak references to the object (if defined)"""
class QXmlName(): # skipped bases: <type 'sip.simplewrapper'>
"""
QXmlName()
QXmlName(QXmlNamePool, QString, QString namespaceUri=QString(), QString prefix=QString())
QXmlName(QXmlName)
"""
def fromClarkName(self, QString, QXmlNamePool): # real signature unknown; restored from __doc__
""" QXmlName.fromClarkName(QString, QXmlNamePool) -> QXmlName """
return QXmlName
def isNCName(self, QString): # real signature unknown; restored from __doc__
""" QXmlName.isNCName(QString) -> bool """
return False
def isNull(self): # real signature unknown; restored from __doc__
""" QXmlName.isNull() -> bool """
return False
def localName(self, QXmlNamePool): # real signature unknown; restored from __doc__
""" QXmlName.localName(QXmlNamePool) -> QString """
pass
def namespaceUri(self, QXmlNamePool): # real signature unknown; restored from __doc__
""" QXmlName.namespaceUri(QXmlNamePool) -> QString """
pass
def prefix(self, QXmlNamePool): # real signature unknown; restored from __doc__
""" QXmlName.prefix(QXmlNamePool) -> QString """
pass
def toClarkName(self, QXmlNamePool): # real signature unknown; restored from __doc__
""" QXmlName.toClarkName(QXmlNamePool) -> QString """
pass
def __eq__(self, y): # real signature unknown; restored from __doc__
""" x.__eq__(y) <==> x==y """
pass
def __ge__(self, y): # real signature unknown; restored from __doc__
""" x.__ge__(y) <==> x>=y """
pass
def __gt__(self, y): # real signature unknown; restored from __doc__
""" x.__gt__(y) <==> x>y """
pass
def __hash__(self): # real signature unknown; restored from __doc__
""" x.__hash__() <==> hash(x) """
pass
def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
pass
def __le__(self, y): # real signature unknown; restored from __doc__
""" x.__le__(y) <==> x<=y """
pass
def __lt__(self, y): # real signature unknown; restored from __doc__
""" x.__lt__(y) <==> x<y """
pass
def __ne__(self, y): # real signature unknown; restored from __doc__
""" x.__ne__(y) <==> x!=y """
pass
__weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None) # default
"""list of weak references to the object (if defined)"""
class QXmlNamePool(): # skipped bases: <type 'sip.simplewrapper'>
"""
QXmlNamePool()
QXmlNamePool(QXmlNamePool)
"""
def __init__(self, QXmlNamePool=None): # real signature unknown; restored from __doc__ with multiple overloads
pass
__weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None) # default
"""list of weak references to the object (if defined)"""
class QXmlNodeModelIndex(): # skipped bases: <type 'sip.simplewrapper'>
"""
QXmlNodeModelIndex()
QXmlNodeModelIndex(QXmlNodeModelIndex)
"""
def additionalData(self): # real signature unknown; restored from __doc__
""" QXmlNodeModelIndex.additionalData() -> int """
return 0
def data(self): # real signature unknown; restored from __doc__
""" QXmlNodeModelIndex.data() -> int """
return 0
def internalPointer(self): # real signature unknown; restored from __doc__
""" QXmlNodeModelIndex.internalPointer() -> object """
return object()
def isNull(self): # real signature unknown; restored from __doc__
""" QXmlNodeModelIndex.isNull() -> bool """
return False
def model(self): # real signature unknown; restored from __doc__
""" QXmlNodeModelIndex.model() -> QAbstractXmlNodeModel """
return QAbstractXmlNodeModel
def __eq__(self, y): # real signature unknown; restored from __doc__
""" x.__eq__(y) <==> x==y """
pass
def __ge__(self, y): # real signature unknown; restored from __doc__
""" x.__ge__(y) <==> x>=y """
pass
def __gt__(self, y): # real signature unknown; restored from __doc__
""" x.__gt__(y) <==> x>y """
pass
def __hash__(self): # real signature unknown; restored from __doc__
""" x.__hash__() <==> hash(x) """
pass
def __init__(self, QXmlNodeModelIndex=None): # real signature unknown; restored from __doc__ with multiple overloads
pass
def __le__(self, y): # real signature unknown; restored from __doc__
""" x.__le__(y) <==> x<=y """
pass
def __lt__(self, y): # real signature unknown; restored from __doc__
""" x.__lt__(y) <==> x<y """
pass
def __ne__(self, y): # real signature unknown; restored from __doc__
""" x.__ne__(y) <==> x!=y """
pass
__weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None) # default
"""list of weak references to the object (if defined)"""
Attribute = 1
Comment = 2
Document = 4
Element = 8
Follows = 1
Is = 0
Namespace = 16
Precedes = -1
ProcessingInstruction = 32
Text = 64
class QXmlQuery(): # skipped bases: <type 'sip.simplewrapper'>
"""
QXmlQuery()
QXmlQuery(QXmlQuery)
QXmlQuery(QXmlNamePool)
QXmlQuery(QXmlQuery.QueryLanguage, QXmlNamePool pool=QXmlNamePool())
"""
def bindVariable(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
"""
QXmlQuery.bindVariable(QXmlName, QXmlItem)
QXmlQuery.bindVariable(QXmlName, QIODevice)
QXmlQuery.bindVariable(QXmlName, QXmlQuery)
QXmlQuery.bindVariable(QString, QXmlItem)
QXmlQuery.bindVariable(QString, QIODevice)
QXmlQuery.bindVariable(QString, QXmlQuery)
"""
pass
def evaluateTo(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
"""
QXmlQuery.evaluateTo(QXmlResultItems)
QXmlQuery.evaluateTo(QAbstractXmlReceiver) -> bool
QXmlQuery.evaluateTo(QStringList) -> bool
QXmlQuery.evaluateTo(QIODevice) -> bool
QXmlQuery.evaluateTo(QString) -> bool
"""
return False
def evaluateToString(self): # real signature unknown; restored from __doc__
""" QXmlQuery.evaluateToString() -> QString """
pass
def evaluateToStringList(self): # real signature unknown; restored from __doc__
""" QXmlQuery.evaluateToStringList() -> QStringList """
pass
def initialTemplateName(self): # real signature unknown; restored from __doc__
""" QXmlQuery.initialTemplateName() -> QXmlName """
return QXmlName
def isValid(self): # real signature unknown; restored from __doc__
""" QXmlQuery.isValid() -> bool """
return False
def messageHandler(self): # real signature unknown; restored from __doc__
""" QXmlQuery.messageHandler() -> QAbstractMessageHandler """
return QAbstractMessageHandler
def namePool(self): # real signature unknown; restored from __doc__
""" QXmlQuery.namePool() -> QXmlNamePool """
return QXmlNamePool
def networkAccessManager(self): # real signature unknown; restored from __doc__
""" QXmlQuery.networkAccessManager() -> QNetworkAccessManager """
pass
def queryLanguage(self): # real signature unknown; restored from __doc__
""" QXmlQuery.queryLanguage() -> QXmlQuery.QueryLanguage """
pass
def setFocus(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
"""
QXmlQuery.setFocus(QXmlItem)
QXmlQuery.setFocus(QUrl) -> bool
QXmlQuery.setFocus(QIODevice) -> bool
QXmlQuery.setFocus(QString) -> bool
"""
return False
def setInitialTemplateName(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
"""
QXmlQuery.setInitialTemplateName(QXmlName)
QXmlQuery.setInitialTemplateName(QString)
"""
pass
def setMessageHandler(self, QAbstractMessageHandler): # real signature unknown; restored from __doc__
""" QXmlQuery.setMessageHandler(QAbstractMessageHandler) """
pass
def setNetworkAccessManager(self, QNetworkAccessManager): # real signature unknown; restored from __doc__
""" QXmlQuery.setNetworkAccessManager(QNetworkAccessManager) """
pass
def setQuery(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
"""
QXmlQuery.setQuery(QString, QUrl documentUri=QUrl())
QXmlQuery.setQuery(QIODevice, QUrl documentUri=QUrl())
QXmlQuery.setQuery(QUrl, QUrl baseUri=QUrl())
"""
pass
def setUriResolver(self, QAbstractUriResolver): # real signature unknown; restored from __doc__
""" QXmlQuery.setUriResolver(QAbstractUriResolver) """
pass
def uriResolver(self): # real signature unknown; restored from __doc__
""" QXmlQuery.uriResolver() -> QAbstractUriResolver """
return QAbstractUriResolver
def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
pass
__weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None) # default
"""list of weak references to the object (if defined)"""
XQuery10 = 1
XSLT20 = 2
class QXmlResultItems(): # skipped bases: <type 'sip.simplewrapper'>
""" QXmlResultItems() """
def current(self): # real signature unknown; restored from __doc__
""" QXmlResultItems.current() -> QXmlItem """
return QXmlItem
def hasError(self): # real signature unknown; restored from __doc__
""" QXmlResultItems.hasError() -> bool """
return False
def next(self): # real signature unknown; restored from __doc__
""" QXmlResultItems.next() -> QXmlItem """
return QXmlItem
def __init__(self): # real signature unknown; restored from __doc__
pass
__weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None) # default
"""list of weak references to the object (if defined)"""
class QXmlSchema(): # skipped bases: <type 'sip.simplewrapper'>
""" QXmlSchema() """
def documentUri(self): # real signature unknown; restored from __doc__
""" QXmlSchema.documentUri() -> QUrl """
pass
def isValid(self): # real signature unknown; restored from __doc__
""" QXmlSchema.isValid() -> bool """
return False
def load(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
"""
QXmlSchema.load(QUrl) -> bool
QXmlSchema.load(QIODevice, QUrl documentUri=QUrl()) -> bool
QXmlSchema.load(QByteArray, QUrl documentUri=QUrl()) -> bool
"""
return False
def messageHandler(self): # real signature unknown; restored from __doc__
""" QXmlSchema.messageHandler() -> QAbstractMessageHandler """
return QAbstractMessageHandler
def namePool(self): # real signature unknown; restored from __doc__
""" QXmlSchema.namePool() -> QXmlNamePool """
return QXmlNamePool
def networkAccessManager(self): # real signature unknown; restored from __doc__
""" QXmlSchema.networkAccessManager() -> QNetworkAccessManager """
pass
def setMessageHandler(self, QAbstractMessageHandler): # real signature unknown; restored from __doc__
""" QXmlSchema.setMessageHandler(QAbstractMessageHandler) """
pass
def setNetworkAccessManager(self, QNetworkAccessManager): # real signature unknown; restored from __doc__
""" QXmlSchema.setNetworkAccessManager(QNetworkAccessManager) """
pass
def setUriResolver(self, QAbstractUriResolver): # real signature unknown; restored from __doc__
""" QXmlSchema.setUriResolver(QAbstractUriResolver) """
pass
def uriResolver(self): # real signature unknown; restored from __doc__
""" QXmlSchema.uriResolver() -> QAbstractUriResolver """
return QAbstractUriResolver
def __init__(self): # real signature unknown; restored from __doc__
pass
__weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None) # default
"""list of weak references to the object (if defined)"""
class QXmlSchemaValidator(): # skipped bases: <type 'sip.simplewrapper'>
"""
QXmlSchemaValidator()
QXmlSchemaValidator(QXmlSchema)
"""
def messageHandler(self): # real signature unknown; restored from __doc__
""" QXmlSchemaValidator.messageHandler() -> QAbstractMessageHandler """
return QAbstractMessageHandler
def namePool(self): # real signature unknown; restored from __doc__
""" QXmlSchemaValidator.namePool() -> QXmlNamePool """
return QXmlNamePool
def networkAccessManager(self): # real signature unknown; restored from __doc__
""" QXmlSchemaValidator.networkAccessManager() -> QNetworkAccessManager """
pass
def schema(self): # real signature unknown; restored from __doc__
""" QXmlSchemaValidator.schema() -> QXmlSchema """
return QXmlSchema
def setMessageHandler(self, QAbstractMessageHandler): # real signature unknown; restored from __doc__
""" QXmlSchemaValidator.setMessageHandler(QAbstractMessageHandler) """
pass
def setNetworkAccessManager(self, QNetworkAccessManager): # real signature unknown; restored from __doc__
""" QXmlSchemaValidator.setNetworkAccessManager(QNetworkAccessManager) """
pass
def setSchema(self, QXmlSchema): # real signature unknown; restored from __doc__
""" QXmlSchemaValidator.setSchema(QXmlSchema) """
pass
def setUriResolver(self, QAbstractUriResolver): # real signature unknown; restored from __doc__
""" QXmlSchemaValidator.setUriResolver(QAbstractUriResolver) """
pass
def uriResolver(self): # real signature unknown; restored from __doc__
""" QXmlSchemaValidator.uriResolver() -> QAbstractUriResolver """
return QAbstractUriResolver
def validate(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
"""
QXmlSchemaValidator.validate(QUrl) -> bool
QXmlSchemaValidator.validate(QIODevice, QUrl documentUri=QUrl()) -> bool
QXmlSchemaValidator.validate(QByteArray, QUrl documentUri=QUrl()) -> bool
"""
return False
def __init__(self, QXmlSchema=None): # real signature unknown; restored from __doc__ with multiple overloads
pass
__weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None) # default
"""list of weak references to the object (if defined)"""