
We bake cookies in your browser for a better experience. Using this site means that you consent.Read More
TheQDesignerFormWindowManagerInterface class allows you to manipulate the collection of form windows in Qt Designer, and control Qt Designer's form editing actions.More...
| Header: | #include <QDesignerFormWindowManagerInterface> |
| Inherits: | QObject |
| QDesignerFormWindowManagerInterface(QObject * parent = 0) | |
| virtual | ~QDesignerFormWindowManagerInterface() |
| virtual QAction * | actionAdjustSize() const |
| virtual QAction * | actionBreakLayout() const |
| virtual QAction * | actionCopy() const |
| virtual QAction * | actionCut() const |
| virtual QAction * | actionDelete() const |
| QAction * | actionFormLayout() const |
| virtual QAction * | actionGridLayout() const |
| virtual QAction * | actionHorizontalLayout() const |
| virtual QAction * | actionLower() const |
| virtual QAction * | actionPaste() const |
| virtual QAction * | actionRaise() const |
| virtual QAction * | actionRedo() const |
| virtual QAction * | actionSelectAll() const |
| QAction * | actionSimplifyLayout() const |
| virtual QAction * | actionSplitHorizontal() const |
| virtual QAction * | actionSplitVertical() const |
| virtual QAction * | actionUndo() const |
| virtual QAction * | actionVerticalLayout() const |
| virtual QDesignerFormWindowInterface * | activeFormWindow() const |
| virtual QDesignerFormEditorInterface * | core() const |
| virtual QDesignerFormWindowInterface * | createFormWindow(QWidget * parent = 0, Qt::WindowFlags flags = 0) |
| virtual QDesignerFormWindowInterface * | formWindow(int index) const |
| virtual int | formWindowCount() const |
| virtual void | addFormWindow(QDesignerFormWindowInterface * formWindow) |
| virtual void | removeFormWindow(QDesignerFormWindowInterface * formWindow) |
| virtual void | setActiveFormWindow(QDesignerFormWindowInterface * formWindow) |
| void | activeFormWindowChanged(QDesignerFormWindowInterface * formWindow) |
| void | formWindowAdded(QDesignerFormWindowInterface * formWindow) |
| void | formWindowRemoved(QDesignerFormWindowInterface * formWindow) |
TheQDesignerFormWindowManagerInterface class allows you to manipulate the collection of form windows in Qt Designer, and control Qt Designer's form editing actions.
QDesignerFormWindowManagerInterface is not intended to be instantiated directly.Qt Designer uses the form window manager to control the various form windows in its workspace. You can retrieve an interface toQt Designer's form window manager using theQDesignerFormEditorInterface::formWindowManager() function. For example:
QDesignerFormWindowManagerInterface*manager=0;QDesignerFormWindowInterface*formWindow=0; manager= formEditor->formWindowManager(); formWindow= manager->formWindow(0); manager->setActiveFormWindow(formWindow);
When implementing a custom widget plugin, a pointer toQt Designer's currentQDesignerFormEditorInterface object (formEditor in the example above) is provided by theQDesignerCustomWidgetInterface::initialize() function's parameter. You must subclass theQDesignerCustomWidgetInterface to expose your plugin to Qt Designer.
The form window manager interface provides thecreateFormWindow() function that enables you to create a new form window which you can add to the collection of form windows that the manager maintains, using theaddFormWindow() slot. It also provides theformWindowCount() function returning the number of form windows currently under the manager's control, theformWindow() function returning the form window associated with a given index, and theactiveFormWindow() function returning the currently selected form window. TheremoveFormWindow() slot allows you to reduce the number of form windows the manager must maintain, and thesetActiveFormWindow() slot allows you to change the form window focus inQt Designer's workspace.
In addition,QDesignerFormWindowManagerInterface contains a collection of functions that enables you to intervene and controlQt Designer's form editing actions. All these functions return the original action, making it possible to propagate the function further after intervention.
Finally, the interface provides three signals which are emitted when a form window is added, when the currently selected form window changes, or when a form window is removed, respectively. All the signals carry the form window in question as their parameter.
See alsoQDesignerFormEditorInterface andQDesignerFormWindowInterface.
Constructs an interface with the givenparent for the form window manager.
[virtual]QDesignerFormWindowManagerInterface::~QDesignerFormWindowManagerInterface()Destroys the interface for the form window manager.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionAdjustSize() constAllows you to intervene and controlQt Designer's "adjust size" action. The function returns the original action.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionBreakLayout() constAllows you to intervene and controlQt Designer's "break layout" action. The function returns the original action.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionCopy() constAllows you to intervene and controlQt Designer's "copy" action. The function returns the original action.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionCut() constAllows you to intervene and controlQt Designer's "cut" action. The function returns the original action.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionDelete() constAllows you to intervene and controlQt Designer's "delete" action. The function returns the original action.
See alsoQAction.
Allows you to intervene and controlQt Designer's "form layout" action. The function returns the original action.
FormWindowManagerPrivateMap *fwmpm = g_FormWindowManagerPrivateMap();
This function was introduced in Qt 4.4.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionGridLayout() constAllows you to intervene and control a request for grid layout for a form window inQt Designer's workspace. The function returns the original action.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionHorizontalLayout() constAllows you to intervene and control a request for horizontal layout for a form window inQt Designer's workspace. The function returns the original action.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionLower() constAllows you to intervene and control the action of lowering a form window inQt Designer's workspace. The function returns the original action.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionPaste() constAllows you to intervene and controlQt Designer's "paste" action. The function returns the original action.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionRaise() constAllows you to intervene and control the action of raising of a form window inQt Designer's workspace. The function returns the original action.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionRedo() constAllows you to intervene and controlQt Designer's "redo" action. The function returns the original action.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionSelectAll() constAllows you to intervene and controlQt Designer's "select all" action. The function returns the original action.
See alsoQAction.
Allows you to intervene and controlQt Designer's "simplify layout" action. The function returns the original action.
This function was introduced in Qt 4.4.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionSplitHorizontal() constAllows you to intervene and controlQt Designer's "split horizontal" action. The function returns the original action.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionSplitVertical() constAllows you to intervene and controlQt Designer's "split vertical" action. The function returns the original action.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionUndo() constAllows you to intervene and controlQt Designer's "undo" action. The function returns the original action.
See alsoQAction.
[virtual]QAction * QDesignerFormWindowManagerInterface::actionVerticalLayout() constAllows you to intervene and control a request for vertical layout for a form window inQt Designer's workspace. The function returns the original action.
See alsoQAction.
[virtual]QDesignerFormWindowInterface * QDesignerFormWindowManagerInterface::activeFormWindow() constReturns the currently active form window inQt Designer's workspace.
See alsosetActiveFormWindow() andremoveFormWindow().
[signal]void QDesignerFormWindowManagerInterface::activeFormWindowChanged(QDesignerFormWindowInterface * formWindow)This signal is emitted when the contents of the currently active form window inQt Designer's workspace changed. A pointer to the currently activeformWindow is passed as an argument.
See alsoactiveFormWindow().
[virtual slot]void QDesignerFormWindowManagerInterface::addFormWindow(QDesignerFormWindowInterface * formWindow)Adds the givenformWindow to the collection of windows thatQt Designer's form window manager maintains.
See alsoformWindowAdded().
[virtual]QDesignerFormEditorInterface * QDesignerFormWindowManagerInterface::core() constReturns a pointer toQt Designer's currentQDesignerFormEditorInterface object.
[virtual]QDesignerFormWindowInterface * QDesignerFormWindowManagerInterface::createFormWindow(QWidget * parent = 0,Qt::WindowFlags flags = 0)Creates a form window with the givenparent and the given windowflags.
See alsoaddFormWindow().
[virtual]QDesignerFormWindowInterface * QDesignerFormWindowManagerInterface::formWindow(int index) constReturns the form window at the givenindex.
See alsosetActiveFormWindow() andremoveFormWindow().
[signal]void QDesignerFormWindowManagerInterface::formWindowAdded(QDesignerFormWindowInterface * formWindow)This signal is emitted when a new form window is added to the collection of windows thatQt Designer's form window manager maintains. A pointer to the newformWindow is passed as an argument.
See alsoaddFormWindow() andsetActiveFormWindow().
[virtual]int QDesignerFormWindowManagerInterface::formWindowCount() constReturns the number of form windows maintained byQt Designer's form window manager.
[signal]void QDesignerFormWindowManagerInterface::formWindowRemoved(QDesignerFormWindowInterface * formWindow)This signal is emitted when a form window is removed from the collection of windows thatQt Designer's form window manager maintains. A pointer to the removedformWindow is passed as an argument.
See alsoremoveFormWindow().
[virtual slot]void QDesignerFormWindowManagerInterface::removeFormWindow(QDesignerFormWindowInterface * formWindow)Removes the givenformWindow from the collection of windows thatQt Designer's form window manager maintains.
See alsoformWindow() andformWindowRemoved().
[virtual slot]void QDesignerFormWindowManagerInterface::setActiveFormWindow(QDesignerFormWindowInterface * formWindow)Sets the givenformWindow to be the currently active form window inQt Designer's workspace.
See alsoactiveFormWindow() andactiveFormWindowChanged().
© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of theGNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.