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
|
class pyqtSignal():
def connect(self, targetSignal): pass
def emit(self, *args): pass
from QtCore import *
class QDesignerActionEditorInterface(QWidget):
""""""
def __init__(self, parent, flags = 0):
'''void QDesignerActionEditorInterface.__init__(QWidget parent, Qt.WindowFlags flags = 0)'''
def setFormWindow(self, formWindow):
'''abstract void QDesignerActionEditorInterface.setFormWindow(QDesignerFormWindowInterface formWindow)'''
def unmanageAction(self, action):
'''abstract void QDesignerActionEditorInterface.unmanageAction(QAction action)'''
def manageAction(self, action):
'''abstract void QDesignerActionEditorInterface.manageAction(QAction action)'''
def core(self):
'''QDesignerFormEditorInterface QDesignerActionEditorInterface.core()'''
return QDesignerFormEditorInterface()
class QAbstractFormBuilder():
""""""
def __init__(self):
'''void QAbstractFormBuilder.__init__()'''
def workingDirectory(self):
'''QDir QAbstractFormBuilder.workingDirectory()'''
return QDir()
def setWorkingDirectory(self, directory):
'''void QAbstractFormBuilder.setWorkingDirectory(QDir directory)'''
def save(self, dev, widget):
'''void QAbstractFormBuilder.save(QIODevice dev, QWidget widget)'''
def load(self, device, parent = None):
'''QWidget QAbstractFormBuilder.load(QIODevice device, QWidget parent = None)'''
return QWidget()
class QDesignerFormEditorInterface(QObject):
""""""
def __init__(self, parent = None):
'''void QDesignerFormEditorInterface.__init__(QObject parent = None)'''
def setActionEditor(self, actionEditor):
'''void QDesignerFormEditorInterface.setActionEditor(QDesignerActionEditorInterface actionEditor)'''
def setObjectInspector(self, objectInspector):
'''void QDesignerFormEditorInterface.setObjectInspector(QDesignerObjectInspectorInterface objectInspector)'''
def setPropertyEditor(self, propertyEditor):
'''void QDesignerFormEditorInterface.setPropertyEditor(QDesignerPropertyEditorInterface propertyEditor)'''
def setWidgetBox(self, widgetBox):
'''void QDesignerFormEditorInterface.setWidgetBox(QDesignerWidgetBoxInterface widgetBox)'''
def actionEditor(self):
'''QDesignerActionEditorInterface QDesignerFormEditorInterface.actionEditor()'''
return QDesignerActionEditorInterface()
def formWindowManager(self):
'''QDesignerFormWindowManagerInterface QDesignerFormEditorInterface.formWindowManager()'''
return QDesignerFormWindowManagerInterface()
def objectInspector(self):
'''QDesignerObjectInspectorInterface QDesignerFormEditorInterface.objectInspector()'''
return QDesignerObjectInspectorInterface()
def propertyEditor(self):
'''QDesignerPropertyEditorInterface QDesignerFormEditorInterface.propertyEditor()'''
return QDesignerPropertyEditorInterface()
def widgetBox(self):
'''QDesignerWidgetBoxInterface QDesignerFormEditorInterface.widgetBox()'''
return QDesignerWidgetBoxInterface()
def topLevel(self):
'''QWidget QDesignerFormEditorInterface.topLevel()'''
return QWidget()
def extensionManager(self):
'''QExtensionManager QDesignerFormEditorInterface.extensionManager()'''
return QExtensionManager()
class QDesignerFormWindowInterface(QWidget):
""""""
# Enum QDesignerFormWindowInterface.FeatureFlag
EditFeature = 0
GridFeature = 0
TabOrderFeature = 0
DefaultFeature = 0
def __init__(self, parent = None, flags = 0):
'''void QDesignerFormWindowInterface.__init__(QWidget parent = None, Qt.WindowFlags flags = 0)'''
objectRemoved = pyqtSignal() # void objectRemoved(QObject *) - signal
widgetRemoved = pyqtSignal() # void widgetRemoved(QWidget *) - signal
changed = pyqtSignal() # void changed() - signal
activated = pyqtSignal() # void activated(QWidget *) - signal
aboutToUnmanageWidget = pyqtSignal() # void aboutToUnmanageWidget(QWidget *) - signal
widgetUnmanaged = pyqtSignal() # void widgetUnmanaged(QWidget *) - signal
widgetManaged = pyqtSignal() # void widgetManaged(QWidget *) - signal
resourceFilesChanged = pyqtSignal() # void resourceFilesChanged() - signal
geometryChanged = pyqtSignal() # void geometryChanged() - signal
selectionChanged = pyqtSignal() # void selectionChanged() - signal
featureChanged = pyqtSignal() # void featureChanged(QDesignerFormWindowInterface::Feature) - signal
fileNameChanged = pyqtSignal() # void fileNameChanged(const QStringamp;) - signal
mainContainerChanged = pyqtSignal() # void mainContainerChanged(QWidget *) - signal
def setFileName(self, fileName):
'''abstract void QDesignerFormWindowInterface.setFileName(QString fileName)'''
def setGrid(self, grid):
'''abstract void QDesignerFormWindowInterface.setGrid(QPoint grid)'''
def selectWidget(self, widget, select = True):
'''abstract void QDesignerFormWindowInterface.selectWidget(QWidget widget, bool select = True)'''
def clearSelection(self, update = True):
'''abstract void QDesignerFormWindowInterface.clearSelection(bool update = True)'''
def setDirty(self, dirty):
'''abstract void QDesignerFormWindowInterface.setDirty(bool dirty)'''
def setFeatures(self, f):
'''abstract void QDesignerFormWindowInterface.setFeatures(QDesignerFormWindowInterface.Feature f)'''
def unmanageWidget(self, widget):
'''abstract void QDesignerFormWindowInterface.unmanageWidget(QWidget widget)'''
def manageWidget(self, widget):
'''abstract void QDesignerFormWindowInterface.manageWidget(QWidget widget)'''
def removeResourceFile(self, path):
'''abstract void QDesignerFormWindowInterface.removeResourceFile(QString path)'''
def addResourceFile(self, path):
'''abstract void QDesignerFormWindowInterface.addResourceFile(QString path)'''
def resourceFiles(self):
'''abstract QStringList QDesignerFormWindowInterface.resourceFiles()'''
return QStringList()
def emitSelectionChanged(self):
'''abstract void QDesignerFormWindowInterface.emitSelectionChanged()'''
def findFormWindow(self, w):
'''static QDesignerFormWindowInterface QDesignerFormWindowInterface.findFormWindow(QWidget w)'''
return QDesignerFormWindowInterface()
def findFormWindow(self, obj):
'''static QDesignerFormWindowInterface QDesignerFormWindowInterface.findFormWindow(QObject obj)'''
return QDesignerFormWindowInterface()
def isDirty(self):
'''abstract bool QDesignerFormWindowInterface.isDirty()'''
return bool()
def isManaged(self, widget):
'''abstract bool QDesignerFormWindowInterface.isManaged(QWidget widget)'''
return bool()
def setMainContainer(self, mainContainer):
'''abstract void QDesignerFormWindowInterface.setMainContainer(QWidget mainContainer)'''
def mainContainer(self):
'''abstract QWidget QDesignerFormWindowInterface.mainContainer()'''
return QWidget()
def grid(self):
'''abstract QPoint QDesignerFormWindowInterface.grid()'''
return QPoint()
def cursor(self):
'''abstract QDesignerFormWindowCursorInterface QDesignerFormWindowInterface.cursor()'''
return QDesignerFormWindowCursorInterface()
def core(self):
'''QDesignerFormEditorInterface QDesignerFormWindowInterface.core()'''
return QDesignerFormEditorInterface()
def setIncludeHints(self, includeHints):
'''abstract void QDesignerFormWindowInterface.setIncludeHints(QStringList includeHints)'''
def includeHints(self):
'''abstract QStringList QDesignerFormWindowInterface.includeHints()'''
return QStringList()
def setExportMacro(self, exportMacro):
'''abstract void QDesignerFormWindowInterface.setExportMacro(QString exportMacro)'''
def exportMacro(self):
'''abstract QString QDesignerFormWindowInterface.exportMacro()'''
return QString()
def setPixmapFunction(self, pixmapFunction):
'''abstract void QDesignerFormWindowInterface.setPixmapFunction(QString pixmapFunction)'''
def pixmapFunction(self):
'''abstract QString QDesignerFormWindowInterface.pixmapFunction()'''
return QString()
def setLayoutFunction(self, margin, spacing):
'''abstract void QDesignerFormWindowInterface.setLayoutFunction(QString margin, QString spacing)'''
def layoutFunction(self, margin, spacing):
'''abstract void QDesignerFormWindowInterface.layoutFunction(QString margin, QString spacing)'''
def setLayoutDefault(self, margin, spacing):
'''abstract void QDesignerFormWindowInterface.setLayoutDefault(int margin, int spacing)'''
def layoutDefault(self, margin, spacing):
'''abstract void QDesignerFormWindowInterface.layoutDefault(int margin, int spacing)'''
def setComment(self, comment):
'''abstract void QDesignerFormWindowInterface.setComment(QString comment)'''
def comment(self):
'''abstract QString QDesignerFormWindowInterface.comment()'''
return QString()
def setAuthor(self, author):
'''abstract void QDesignerFormWindowInterface.setAuthor(QString author)'''
def author(self):
'''abstract QString QDesignerFormWindowInterface.author()'''
return QString()
def hasFeature(self, f):
'''abstract bool QDesignerFormWindowInterface.hasFeature(QDesignerFormWindowInterface.Feature f)'''
return bool()
def features(self):
'''abstract QDesignerFormWindowInterface.Feature QDesignerFormWindowInterface.features()'''
return QDesignerFormWindowInterface.Feature()
def setContents(self, dev):
'''abstract void QDesignerFormWindowInterface.setContents(QIODevice dev)'''
def setContents(self, contents):
'''abstract void QDesignerFormWindowInterface.setContents(QString contents)'''
def contents(self):
'''abstract QString QDesignerFormWindowInterface.contents()'''
return QString()
def absoluteDir(self):
'''abstract QDir QDesignerFormWindowInterface.absoluteDir()'''
return QDir()
def fileName(self):
'''abstract QString QDesignerFormWindowInterface.fileName()'''
return QString()
class Feature():
""""""
def __init__(self):
'''QDesignerFormWindowInterface.Feature QDesignerFormWindowInterface.Feature.__init__()'''
return QDesignerFormWindowInterface.Feature()
def __init__(self):
'''int QDesignerFormWindowInterface.Feature.__init__()'''
return int()
def __init__(self):
'''void QDesignerFormWindowInterface.Feature.__init__()'''
def __bool__(self):
'''int QDesignerFormWindowInterface.Feature.__bool__()'''
return int()
def __ne__(self, f):
'''bool QDesignerFormWindowInterface.Feature.__ne__(QDesignerFormWindowInterface.Feature f)'''
return bool()
def __eq__(self, f):
'''bool QDesignerFormWindowInterface.Feature.__eq__(QDesignerFormWindowInterface.Feature f)'''
return bool()
def __invert__(self):
'''QDesignerFormWindowInterface.Feature QDesignerFormWindowInterface.Feature.__invert__()'''
return QDesignerFormWindowInterface.Feature()
def __and__(self, mask):
'''QDesignerFormWindowInterface.Feature QDesignerFormWindowInterface.Feature.__and__(int mask)'''
return QDesignerFormWindowInterface.Feature()
def __xor__(self, f):
'''QDesignerFormWindowInterface.Feature QDesignerFormWindowInterface.Feature.__xor__(QDesignerFormWindowInterface.Feature f)'''
return QDesignerFormWindowInterface.Feature()
def __xor__(self, f):
'''QDesignerFormWindowInterface.Feature QDesignerFormWindowInterface.Feature.__xor__(int f)'''
return QDesignerFormWindowInterface.Feature()
def __or__(self, f):
'''QDesignerFormWindowInterface.Feature QDesignerFormWindowInterface.Feature.__or__(QDesignerFormWindowInterface.Feature f)'''
return QDesignerFormWindowInterface.Feature()
def __or__(self, f):
'''QDesignerFormWindowInterface.Feature QDesignerFormWindowInterface.Feature.__or__(int f)'''
return QDesignerFormWindowInterface.Feature()
def __int__(self):
'''int QDesignerFormWindowInterface.Feature.__int__()'''
return int()
def __ixor__(self, f):
'''QDesignerFormWindowInterface.Feature QDesignerFormWindowInterface.Feature.__ixor__(QDesignerFormWindowInterface.Feature f)'''
return QDesignerFormWindowInterface.Feature()
def __ior__(self, f):
'''QDesignerFormWindowInterface.Feature QDesignerFormWindowInterface.Feature.__ior__(QDesignerFormWindowInterface.Feature f)'''
return QDesignerFormWindowInterface.Feature()
def __iand__(self, mask):
'''QDesignerFormWindowInterface.Feature QDesignerFormWindowInterface.Feature.__iand__(int mask)'''
return QDesignerFormWindowInterface.Feature()
class QDesignerFormWindowCursorInterface():
""""""
# Enum QDesignerFormWindowCursorInterface.MoveMode
MoveAnchor = 0
KeepAnchor = 0
# Enum QDesignerFormWindowCursorInterface.MoveOperation
NoMove = 0
Start = 0
End = 0
Next = 0
Prev = 0
Left = 0
Right = 0
Up = 0
Down = 0
def __init__(self):
'''void QDesignerFormWindowCursorInterface.__init__()'''
def __init__(self):
'''QDesignerFormWindowCursorInterface QDesignerFormWindowCursorInterface.__init__()'''
return QDesignerFormWindowCursorInterface()
def isWidgetSelected(self, widget):
'''bool QDesignerFormWindowCursorInterface.isWidgetSelected(QWidget widget)'''
return bool()
def resetWidgetProperty(self, widget, name):
'''abstract void QDesignerFormWindowCursorInterface.resetWidgetProperty(QWidget widget, QString name)'''
def setWidgetProperty(self, widget, name, value):
'''abstract void QDesignerFormWindowCursorInterface.setWidgetProperty(QWidget widget, QString name, QVariant value)'''
def setProperty(self, name, value):
'''abstract void QDesignerFormWindowCursorInterface.setProperty(QString name, QVariant value)'''
def selectedWidget(self, index):
'''abstract QWidget QDesignerFormWindowCursorInterface.selectedWidget(int index)'''
return QWidget()
def selectedWidgetCount(self):
'''abstract int QDesignerFormWindowCursorInterface.selectedWidgetCount()'''
return int()
def hasSelection(self):
'''abstract bool QDesignerFormWindowCursorInterface.hasSelection()'''
return bool()
def widget(self, index):
'''abstract QWidget QDesignerFormWindowCursorInterface.widget(int index)'''
return QWidget()
def widgetCount(self):
'''abstract int QDesignerFormWindowCursorInterface.widgetCount()'''
return int()
def current(self):
'''abstract QWidget QDesignerFormWindowCursorInterface.current()'''
return QWidget()
def setPosition(self, pos, mode = None):
'''abstract void QDesignerFormWindowCursorInterface.setPosition(int pos, QDesignerFormWindowCursorInterface.MoveMode mode = QDesignerFormWindowCursorInterface.MoveAnchor)'''
def position(self):
'''abstract int QDesignerFormWindowCursorInterface.position()'''
return int()
def movePosition(self, op, mode = None):
'''abstract bool QDesignerFormWindowCursorInterface.movePosition(QDesignerFormWindowCursorInterface.MoveOperation op, QDesignerFormWindowCursorInterface.MoveMode mode = QDesignerFormWindowCursorInterface.MoveAnchor)'''
return bool()
def formWindow(self):
'''abstract QDesignerFormWindowInterface QDesignerFormWindowCursorInterface.formWindow()'''
return QDesignerFormWindowInterface()
class QDesignerFormWindowManagerInterface(QObject):
""""""
def __init__(self, parent = None):
'''void QDesignerFormWindowManagerInterface.__init__(QObject parent = None)'''
def setActiveFormWindow(self, formWindow):
'''void QDesignerFormWindowManagerInterface.setActiveFormWindow(QDesignerFormWindowInterface formWindow)'''
def removeFormWindow(self, formWindow):
'''void QDesignerFormWindowManagerInterface.removeFormWindow(QDesignerFormWindowInterface formWindow)'''
def addFormWindow(self, formWindow):
'''void QDesignerFormWindowManagerInterface.addFormWindow(QDesignerFormWindowInterface formWindow)'''
activeFormWindowChanged = pyqtSignal() # void activeFormWindowChanged(QDesignerFormWindowInterface *) - signal
formWindowRemoved = pyqtSignal() # void formWindowRemoved(QDesignerFormWindowInterface *) - signal
formWindowAdded = pyqtSignal() # void formWindowAdded(QDesignerFormWindowInterface *) - signal
def core(self):
'''QDesignerFormEditorInterface QDesignerFormWindowManagerInterface.core()'''
return QDesignerFormEditorInterface()
def createFormWindow(self, parent = None, flags = 0):
'''QDesignerFormWindowInterface QDesignerFormWindowManagerInterface.createFormWindow(QWidget parent = None, Qt.WindowFlags flags = 0)'''
return QDesignerFormWindowInterface()
def formWindow(self, index):
'''QDesignerFormWindowInterface QDesignerFormWindowManagerInterface.formWindow(int index)'''
return QDesignerFormWindowInterface()
def formWindowCount(self):
'''int QDesignerFormWindowManagerInterface.formWindowCount()'''
return int()
def activeFormWindow(self):
'''QDesignerFormWindowInterface QDesignerFormWindowManagerInterface.activeFormWindow()'''
return QDesignerFormWindowInterface()
def actionSimplifyLayout(self):
'''QAction QDesignerFormWindowManagerInterface.actionSimplifyLayout()'''
return QAction()
def actionFormLayout(self):
'''QAction QDesignerFormWindowManagerInterface.actionFormLayout()'''
return QAction()
def actionAdjustSize(self):
'''QAction QDesignerFormWindowManagerInterface.actionAdjustSize()'''
return QAction()
def actionBreakLayout(self):
'''QAction QDesignerFormWindowManagerInterface.actionBreakLayout()'''
return QAction()
def actionGridLayout(self):
'''QAction QDesignerFormWindowManagerInterface.actionGridLayout()'''
return QAction()
def actionSplitVertical(self):
'''QAction QDesignerFormWindowManagerInterface.actionSplitVertical()'''
return QAction()
def actionSplitHorizontal(self):
'''QAction QDesignerFormWindowManagerInterface.actionSplitHorizontal()'''
return QAction()
def actionVerticalLayout(self):
'''QAction QDesignerFormWindowManagerInterface.actionVerticalLayout()'''
return QAction()
def actionHorizontalLayout(self):
'''QAction QDesignerFormWindowManagerInterface.actionHorizontalLayout()'''
return QAction()
def actionRedo(self):
'''QAction QDesignerFormWindowManagerInterface.actionRedo()'''
return QAction()
def actionUndo(self):
'''QAction QDesignerFormWindowManagerInterface.actionUndo()'''
return QAction()
def actionRaise(self):
'''QAction QDesignerFormWindowManagerInterface.actionRaise()'''
return QAction()
def actionLower(self):
'''QAction QDesignerFormWindowManagerInterface.actionLower()'''
return QAction()
def actionSelectAll(self):
'''QAction QDesignerFormWindowManagerInterface.actionSelectAll()'''
return QAction()
def actionDelete(self):
'''QAction QDesignerFormWindowManagerInterface.actionDelete()'''
return QAction()
def actionPaste(self):
'''QAction QDesignerFormWindowManagerInterface.actionPaste()'''
return QAction()
def actionCopy(self):
'''QAction QDesignerFormWindowManagerInterface.actionCopy()'''
return QAction()
def actionCut(self):
'''QAction QDesignerFormWindowManagerInterface.actionCut()'''
return QAction()
class QDesignerObjectInspectorInterface(QWidget):
""""""
def __init__(self, parent, flags = 0):
'''void QDesignerObjectInspectorInterface.__init__(QWidget parent, Qt.WindowFlags flags = 0)'''
def setFormWindow(self, formWindow):
'''abstract void QDesignerObjectInspectorInterface.setFormWindow(QDesignerFormWindowInterface formWindow)'''
def core(self):
'''QDesignerFormEditorInterface QDesignerObjectInspectorInterface.core()'''
return QDesignerFormEditorInterface()
class QDesignerPropertyEditorInterface(QWidget):
""""""
def __init__(self, parent, flags = 0):
'''void QDesignerPropertyEditorInterface.__init__(QWidget parent, Qt.WindowFlags flags = 0)'''
def setReadOnly(self, readOnly):
'''abstract void QDesignerPropertyEditorInterface.setReadOnly(bool readOnly)'''
def setPropertyValue(self, name, value, changed = True):
'''abstract void QDesignerPropertyEditorInterface.setPropertyValue(QString name, QVariant value, bool changed = True)'''
def setObject(self, object):
'''abstract void QDesignerPropertyEditorInterface.setObject(QObject object)'''
propertyChanged = pyqtSignal() # void propertyChanged(const QStringamp;,const QVariantamp;) - signal
def currentPropertyName(self):
'''abstract QString QDesignerPropertyEditorInterface.currentPropertyName()'''
return QString()
def object(self):
'''abstract QObject QDesignerPropertyEditorInterface.object()'''
return QObject()
def isReadOnly(self):
'''abstract bool QDesignerPropertyEditorInterface.isReadOnly()'''
return bool()
def core(self):
'''QDesignerFormEditorInterface QDesignerPropertyEditorInterface.core()'''
return QDesignerFormEditorInterface()
class QDesignerWidgetBoxInterface(QWidget):
""""""
def __init__(self, parent = None, flags = 0):
'''void QDesignerWidgetBoxInterface.__init__(QWidget parent = None, Qt.WindowFlags flags = 0)'''
def save(self):
'''abstract bool QDesignerWidgetBoxInterface.save()'''
return bool()
def load(self):
'''abstract bool QDesignerWidgetBoxInterface.load()'''
return bool()
def fileName(self):
'''abstract QString QDesignerWidgetBoxInterface.fileName()'''
return QString()
def setFileName(self, file_name):
'''abstract void QDesignerWidgetBoxInterface.setFileName(QString file_name)'''
class QDesignerContainerExtension():
""""""
def __init__(self):
'''void QDesignerContainerExtension.__init__()'''
def __init__(self):
'''QDesignerContainerExtension QDesignerContainerExtension.__init__()'''
return QDesignerContainerExtension()
def remove(self, index):
'''abstract void QDesignerContainerExtension.remove(int index)'''
def insertWidget(self, index, widget):
'''abstract void QDesignerContainerExtension.insertWidget(int index, QWidget widget)'''
def addWidget(self, widget):
'''abstract void QDesignerContainerExtension.addWidget(QWidget widget)'''
def setCurrentIndex(self, index):
'''abstract void QDesignerContainerExtension.setCurrentIndex(int index)'''
def currentIndex(self):
'''abstract int QDesignerContainerExtension.currentIndex()'''
return int()
def widget(self, index):
'''abstract QWidget QDesignerContainerExtension.widget(int index)'''
return QWidget()
def __len__(self):
'''None QDesignerContainerExtension.__len__()'''
return None()
def count(self):
'''abstract int QDesignerContainerExtension.count()'''
return int()
class QDesignerCustomWidgetInterface():
""""""
def __init__(self):
'''void QDesignerCustomWidgetInterface.__init__()'''
def __init__(self):
'''QDesignerCustomWidgetInterface QDesignerCustomWidgetInterface.__init__()'''
return QDesignerCustomWidgetInterface()
def codeTemplate(self):
'''QString QDesignerCustomWidgetInterface.codeTemplate()'''
return QString()
def domXml(self):
'''QString QDesignerCustomWidgetInterface.domXml()'''
return QString()
def initialize(self, core):
'''void QDesignerCustomWidgetInterface.initialize(QDesignerFormEditorInterface core)'''
def isInitialized(self):
'''bool QDesignerCustomWidgetInterface.isInitialized()'''
return bool()
def createWidget(self, parent):
'''abstract QWidget QDesignerCustomWidgetInterface.createWidget(QWidget parent)'''
return QWidget()
def isContainer(self):
'''abstract bool QDesignerCustomWidgetInterface.isContainer()'''
return bool()
def icon(self):
'''abstract QIcon QDesignerCustomWidgetInterface.icon()'''
return QIcon()
def includeFile(self):
'''abstract QString QDesignerCustomWidgetInterface.includeFile()'''
return QString()
def whatsThis(self):
'''abstract QString QDesignerCustomWidgetInterface.whatsThis()'''
return QString()
def toolTip(self):
'''abstract QString QDesignerCustomWidgetInterface.toolTip()'''
return QString()
def group(self):
'''abstract QString QDesignerCustomWidgetInterface.group()'''
return QString()
def name(self):
'''abstract QString QDesignerCustomWidgetInterface.name()'''
return QString()
class QDesignerCustomWidgetCollectionInterface():
""""""
def __init__(self):
'''void QDesignerCustomWidgetCollectionInterface.__init__()'''
def __init__(self):
'''QDesignerCustomWidgetCollectionInterface QDesignerCustomWidgetCollectionInterface.__init__()'''
return QDesignerCustomWidgetCollectionInterface()
def customWidgets(self):
'''abstract list-of-QDesignerCustomWidgetInterface QDesignerCustomWidgetCollectionInterface.customWidgets()'''
return [QDesignerCustomWidgetInterface()]
class QAbstractExtensionFactory():
""""""
def __init__(self):
'''void QAbstractExtensionFactory.__init__()'''
def __init__(self):
'''QAbstractExtensionFactory QAbstractExtensionFactory.__init__()'''
return QAbstractExtensionFactory()
def extension(self, object, iid):
'''abstract QObject QAbstractExtensionFactory.extension(QObject object, QString iid)'''
return QObject()
class QExtensionFactory(QObject, QAbstractExtensionFactory):
""""""
def __init__(self, parent = None):
'''void QExtensionFactory.__init__(QExtensionManager parent = None)'''
def createExtension(self, object, iid, parent):
'''QObject QExtensionFactory.createExtension(QObject object, QString iid, QObject parent)'''
return QObject()
def extensionManager(self):
'''QExtensionManager QExtensionFactory.extensionManager()'''
return QExtensionManager()
def extension(self, object, iid):
'''QObject QExtensionFactory.extension(QObject object, QString iid)'''
return QObject()
class QAbstractExtensionManager():
""""""
def __init__(self):
'''void QAbstractExtensionManager.__init__()'''
def __init__(self):
'''QAbstractExtensionManager QAbstractExtensionManager.__init__()'''
return QAbstractExtensionManager()
def extension(self, object, iid):
'''abstract QObject QAbstractExtensionManager.extension(QObject object, QString iid)'''
return QObject()
def unregisterExtensions(self, factory, iid):
'''abstract void QAbstractExtensionManager.unregisterExtensions(QAbstractExtensionFactory factory, QString iid)'''
def registerExtensions(self, factory, iid):
'''abstract void QAbstractExtensionManager.registerExtensions(QAbstractExtensionFactory factory, QString iid)'''
class QFormBuilder(QAbstractFormBuilder):
""""""
def __init__(self):
'''void QFormBuilder.__init__()'''
def customWidgets(self):
'''list-of-QDesignerCustomWidgetInterface QFormBuilder.customWidgets()'''
return [QDesignerCustomWidgetInterface()]
def setPluginPath(self, pluginPaths):
'''void QFormBuilder.setPluginPath(QStringList pluginPaths)'''
def addPluginPath(self, pluginPath):
'''void QFormBuilder.addPluginPath(QString pluginPath)'''
def clearPluginPaths(self):
'''void QFormBuilder.clearPluginPaths()'''
def pluginPaths(self):
'''QStringList QFormBuilder.pluginPaths()'''
return QStringList()
class QDesignerMemberSheetExtension():
""""""
def __init__(self):
'''void QDesignerMemberSheetExtension.__init__()'''
def __init__(self):
'''QDesignerMemberSheetExtension QDesignerMemberSheetExtension.__init__()'''
return QDesignerMemberSheetExtension()
def parameterNames(self, index):
'''abstract list-of-QByteArray QDesignerMemberSheetExtension.parameterNames(int index)'''
return [QByteArray()]
def parameterTypes(self, index):
'''abstract list-of-QByteArray QDesignerMemberSheetExtension.parameterTypes(int index)'''
return [QByteArray()]
def signature(self, index):
'''abstract QString QDesignerMemberSheetExtension.signature(int index)'''
return QString()
def declaredInClass(self, index):
'''abstract QString QDesignerMemberSheetExtension.declaredInClass(int index)'''
return QString()
def inheritedFromWidget(self, index):
'''abstract bool QDesignerMemberSheetExtension.inheritedFromWidget(int index)'''
return bool()
def isSlot(self, index):
'''abstract bool QDesignerMemberSheetExtension.isSlot(int index)'''
return bool()
def isSignal(self, index):
'''abstract bool QDesignerMemberSheetExtension.isSignal(int index)'''
return bool()
def setVisible(self, index, b):
'''abstract void QDesignerMemberSheetExtension.setVisible(int index, bool b)'''
def isVisible(self, index):
'''abstract bool QDesignerMemberSheetExtension.isVisible(int index)'''
return bool()
def setMemberGroup(self, index, group):
'''abstract void QDesignerMemberSheetExtension.setMemberGroup(int index, QString group)'''
def memberGroup(self, index):
'''abstract QString QDesignerMemberSheetExtension.memberGroup(int index)'''
return QString()
def memberName(self, index):
'''abstract QString QDesignerMemberSheetExtension.memberName(int index)'''
return QString()
def indexOf(self, name):
'''abstract int QDesignerMemberSheetExtension.indexOf(QString name)'''
return int()
def __len__(self):
'''None QDesignerMemberSheetExtension.__len__()'''
return None()
def count(self):
'''abstract int QDesignerMemberSheetExtension.count()'''
return int()
class QDesignerPropertySheetExtension():
""""""
def __init__(self):
'''void QDesignerPropertySheetExtension.__init__()'''
def __init__(self):
'''QDesignerPropertySheetExtension QDesignerPropertySheetExtension.__init__()'''
return QDesignerPropertySheetExtension()
def setChanged(self, index, changed):
'''abstract void QDesignerPropertySheetExtension.setChanged(int index, bool changed)'''
def isChanged(self, index):
'''abstract bool QDesignerPropertySheetExtension.isChanged(int index)'''
return bool()
def setProperty(self, index, value):
'''abstract void QDesignerPropertySheetExtension.setProperty(int index, QVariant value)'''
def property(self, index):
'''abstract QVariant QDesignerPropertySheetExtension.property(int index)'''
return QVariant()
def setAttribute(self, index, b):
'''abstract void QDesignerPropertySheetExtension.setAttribute(int index, bool b)'''
def isAttribute(self, index):
'''abstract bool QDesignerPropertySheetExtension.isAttribute(int index)'''
return bool()
def setVisible(self, index, b):
'''abstract void QDesignerPropertySheetExtension.setVisible(int index, bool b)'''
def isVisible(self, index):
'''abstract bool QDesignerPropertySheetExtension.isVisible(int index)'''
return bool()
def reset(self, index):
'''abstract bool QDesignerPropertySheetExtension.reset(int index)'''
return bool()
def hasReset(self, index):
'''abstract bool QDesignerPropertySheetExtension.hasReset(int index)'''
return bool()
def setPropertyGroup(self, index, group):
'''abstract void QDesignerPropertySheetExtension.setPropertyGroup(int index, QString group)'''
def propertyGroup(self, index):
'''abstract QString QDesignerPropertySheetExtension.propertyGroup(int index)'''
return QString()
def propertyName(self, index):
'''abstract QString QDesignerPropertySheetExtension.propertyName(int index)'''
return QString()
def indexOf(self, name):
'''abstract int QDesignerPropertySheetExtension.indexOf(QString name)'''
return int()
def __len__(self):
'''None QDesignerPropertySheetExtension.__len__()'''
return None()
def count(self):
'''abstract int QDesignerPropertySheetExtension.count()'''
return int()
class QExtensionManager(QObject, QAbstractExtensionManager):
""""""
def __init__(self, parent = None):
'''void QExtensionManager.__init__(QObject parent = None)'''
def extension(self, object, iid):
'''QObject QExtensionManager.extension(QObject object, QString iid)'''
return QObject()
def unregisterExtensions(self, factory, iid = QString()):
'''void QExtensionManager.unregisterExtensions(QAbstractExtensionFactory factory, QString iid = QString())'''
def registerExtensions(self, factory, iid = QString()):
'''void QExtensionManager.registerExtensions(QAbstractExtensionFactory factory, QString iid = QString())'''
class QDesignerTaskMenuExtension():
""""""
def __init__(self):
'''void QDesignerTaskMenuExtension.__init__()'''
def __init__(self):
'''QDesignerTaskMenuExtension QDesignerTaskMenuExtension.__init__()'''
return QDesignerTaskMenuExtension()
def preferredEditAction(self):
'''QAction QDesignerTaskMenuExtension.preferredEditAction()'''
return QAction()
def taskActions(self):
'''abstract list-of-QAction QDesignerTaskMenuExtension.taskActions()'''
return [QAction()]
class QPyDesignerContainerExtension(QObject, QDesignerContainerExtension):
""""""
def __init__(self, parent):
'''void QPyDesignerContainerExtension.__init__(QObject parent)'''
class QPyDesignerCustomWidgetCollectionPlugin(QObject, QDesignerCustomWidgetCollectionInterface):
""""""
def __init__(self, parent = None):
'''void QPyDesignerCustomWidgetCollectionPlugin.__init__(QObject parent = None)'''
class QPyDesignerCustomWidgetPlugin(QObject, QDesignerCustomWidgetInterface):
""""""
def __init__(self, parent = None):
'''void QPyDesignerCustomWidgetPlugin.__init__(QObject parent = None)'''
class QPyDesignerMemberSheetExtension(QObject, QDesignerMemberSheetExtension):
""""""
def __init__(self, parent):
'''void QPyDesignerMemberSheetExtension.__init__(QObject parent)'''
class QPyDesignerPropertySheetExtension(QObject, QDesignerPropertySheetExtension):
""""""
def __init__(self, parent):
'''void QPyDesignerPropertySheetExtension.__init__(QObject parent)'''
class QPyDesignerTaskMenuExtension(QObject, QDesignerTaskMenuExtension):
""""""
def __init__(self, parent):
'''void QPyDesignerTaskMenuExtension.__init__(QObject parent)'''
|