Home · All Classes · Modules

QDesignerFormEditorInterface Class Reference
[QtDesigner module]

The QDesignerFormEditorInterface class allows you to access Qt Designer's various components. More...

Inherits QObject.

Methods


Detailed Description

The QDesignerFormEditorInterface class allows you to access Qt Designer's various components.

Qt Designer's current QDesignerFormEditorInterface object holds information about all Qt Designer's components: The action editor, the object inspector, the property editor, the widget box, and the extension and form window managers. QDesignerFormEditorInterface contains a collection of functions that provides interfaces to all these components. They are typically used to query (and manipulate) the respective component. For example:

         QDesignerObjectInspectorInterface *objectInspector = 0;
         objectInspector = formEditor->objectInspector();

         QDesignerFormWindowManagerInterface *manager = 0;
         manager = formEditor->formWindowManager();

         objectInspector->setFormWindow(manager->formWindow(0));

QDesignerFormEditorInterface is not intended to be instantiated directly. A pointer to Qt Designer's current QDesignerFormEditorInterface object (formEditor in the example above) is provided by the QDesignerCustomWidgetInterface.initialize() function's parameter. When implementing a custom widget plugin, you must subclass the QDesignerCustomWidgetInterface to expose your plugin to Qt Designer.

QDesignerFormEditorInterface also provides functions that can set the action editor, property editor, object inspector and widget box. These are only useful if you want to provide your own custom components.

If designer is embedded in another program, one could to provide its own settings manager. The manager is used by the components of Qt Designer to store/retrieve persistent configuration settings. The default manager uses QSettings as the backend.

Finally, QDesignerFormEditorInterface provides the topLevel() function that returns Qt Designer's top-level widget.


Method Documentation

QDesignerFormEditorInterface.__init__ (self, QObject parent = None)

The parent argument, if not None, causes self to be owned by Qt instead of PyQt.

Constructs a QDesignerFormEditorInterface object with the given parent.

QDesignerActionEditorInterface QDesignerFormEditorInterface.actionEditor (self)

Returns an interface to Qt Designer's action editor.

See also setActionEditor().

QExtensionManager QDesignerFormEditorInterface.extensionManager (self)

Returns an interface to Qt Designer's extension manager.

QDesignerFormWindowManagerInterface QDesignerFormEditorInterface.formWindowManager (self)

Returns an interface to Qt Designer's form window manager.

QDesignerObjectInspectorInterface QDesignerFormEditorInterface.objectInspector (self)

Returns an interface to Qt Designer's object inspector.

See also setObjectInspector().

QDesignerPropertyEditorInterface QDesignerFormEditorInterface.propertyEditor (self)

Returns an interface to Qt Designer's property editor.

See also setPropertyEditor().

QDesignerFormEditorInterface.setActionEditor (self, QDesignerActionEditorInterface actionEditor)

Sets Qt Designer's action editor to be the specified actionEditor.

See also actionEditor().

QDesignerFormEditorInterface.setObjectInspector (self, QDesignerObjectInspectorInterface objectInspector)

Sets Qt Designer's object inspector to be the specified objectInspector.

See also objectInspector().

QDesignerFormEditorInterface.setPropertyEditor (self, QDesignerPropertyEditorInterface propertyEditor)

Sets Qt Designer's property editor to be the specified propertyEditor.

See also propertyEditor().

QDesignerFormEditorInterface.setWidgetBox (self, QDesignerWidgetBoxInterface widgetBox)

Sets Qt Designer's widget box to be the specified widgetBox.

See also widgetBox().

QWidget QDesignerFormEditorInterface.topLevel (self)

Returns Qt Designer's top-level widget.

QDesignerWidgetBoxInterface QDesignerFormEditorInterface.widgetBox (self)

Returns an interface to Qt Designer's widget box.

See also setWidgetBox().


PyQt 4.11.4 for X11Copyright © Riverbank Computing Ltd and The Qt Company 2015Qt 4.8.7