Qt:Документация 4.3.2/qdesignerformwindowmanagerinterface

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QDesignerFormWindowManagerInterface Class Reference
[ QtDesigner module]

The QDesignerFormWindowManagerInterface class allows you to manipulate the collection of form windows in Qt Designer, and control Qt Designer's form editing actions. Далее...

 #include <QDesignerFormWindowManagerInterface>

Inherits QObject.

[править] Открытые функции

  • 29 открытых функций, унаследованных от QObject

[править] Открытые слоты

  • 1 открытый слот, унаследованный от QObject

[править] Сигналы

  • 1 сигнал, унаследованный от QObject

[править] Дополнительные унаследованные члены

  • 1 свойство, унаследованное от QObject
  • 5 статических открытых членов, унаследованных от QObject
  • 7 защищенных функций, унаследованных от QObject

[править] Подробное описание

The QDesignerFormWindowManagerInterface 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 to Qt Designer's form window manager using the QDesignerFormEditorInterface::formWindowManager() function. Пример:

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

When implementing a custom widget plugin, a pointer to Qt Designer's current QDesignerFormEditorInterface object (formEditor in the example above) is provided by the QDesignerCustomWidgetInterface::initialize() function's parameter. You must subclass the QDesignerCustomWidgetInterface to expose your plugin to Qt Designer.

The form window manager interface provides the createFormWindow() 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 the addFormWindow() slot. It also provides the formWindowCount() function returning the number of form windows currently under the manager's control, the formWindow() function returning the form window associated with a given index, and the activeFormWindow() function returning the currently selected form window. The removeFormWindow() slot allows you to reduce the number of form windows the manager must maintain, and the setActiveFormWindow() slot allows you to change the form window focus in Qt Designer's workspace.

In addition, QDesignerFormWindowManagerInterface contains a collection of functions that enables you to intervene and control Qt 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 also QDesignerFormEditorInterface and QDesignerFormWindowInterface.


[править] Описание функций-членов

[править]
QDesignerFormWindowManagerInterface::QDesignerFormWindowManagerInterface ( QObject * parent = 0 )

Constructs an interface with the given parent for the form window manager.

[править]
QDesignerFormWindowManagerInterface::~QDesignerFormWindowManagerInterface () [virtual]

Destroys the interface for the form window manager.

[править]
QAction * QDesignerFormWindowManagerInterface::actionAdjustSize () const [virtual]

Allows you to intervene and control Qt Designer's "adjust size" action. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionBreakLayout () const [virtual]

Allows you to intervene and control Qt Designer's "break layout" action. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionCopy () const [virtual]

Allows you to intervene and control Qt Designer's "copy" action. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionCut () const [virtual]

Allows you to intervene and control Qt Designer's "cut" action. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionDelete () const [virtual]

Allows you to intervene and control Qt Designer's "delete" action. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionGridLayout () const [virtual]

Allows you to intervene and control a request for grid layout for a form window in Qt Designer's workspace. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionHorizontalLayout () const [virtual]

Allows you to intervene and control a request for horizontal layout for a form window in Qt Designer's workspace. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionLower () const [virtual]

Allows you to intervene and control the action of lowering a form window in Qt Designer's workspace. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionPaste () const [virtual]

Allows you to intervene and control Qt Designer's "paste" action. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionRaise () const [virtual]

Allows you to intervene and control the action of raising of a form window in Qt Designer's workspace. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionRedo () const [virtual]

Allows you to intervene and control Qt Designer's "redo" action. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionSelectAll () const [virtual]

Allows you to intervene and control Qt Designer's "select all" action. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionSplitHorizontal () const [virtual]

Allows you to intervene and control Qt Designer's "split horizontal" action. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionSplitVertical () const [virtual]

Allows you to intervene and control Qt Designer's "split vertical" action. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionUndo () const [virtual]

Allows you to intervene and control Qt Designer's "undo" action. The function returns the original action.

See also QAction.

[править]
QAction * QDesignerFormWindowManagerInterface::actionVerticalLayout () const [virtual]

Allows you to intervene and control a request for vertical layout for a form window in Qt Designer's workspace. The function returns the original action.

See also QAction.

[править]
QDesignerFormWindowInterface * QDesignerFormWindowManagerInterface::activeFormWindow () const [virtual]

Returns the currently active form window in Qt Designer's workspace.

See also setActiveFormWindow() and removeFormWindow().

[править]
void QDesignerFormWindowManagerInterface::activeFormWindowChanged ( QDesignerFormWindowInterface * formWindow ) [signal]

This signal is emitted when the contents of the currently active form window in Qt Designer's workspace changed. A pointer to the currently active formWindow is passed as an argument.

See also activeFormWindow().

[править]
void QDesignerFormWindowManagerInterface::addFormWindow ( QDesignerFormWindowInterface * formWindow ) [virtual slot]

Adds the given formWindow to the collection of windows that Qt Designer's form window manager maintains.

See also formWindowAdded().

[править]
QDesignerFormEditorInterface * QDesignerFormWindowManagerInterface::core () const [virtual]

Returns a pointer to Qt Designer's current QDesignerFormEditorInterface object.

[править]
QDesignerFormWindowInterface * QDesignerFormWindowManagerInterface::createFormWindow ( QWidget * parent = 0, Qt::WindowFlags flags = 0 ) [virtual]

Creates a form window with the given parent and the given window flags.

See also addFormWindow().

[править]
QDesignerFormWindowInterface * QDesignerFormWindowManagerInterface::formWindow ( int index ) const [virtual]

Returns the form window at the given index.

See also setActiveFormWindow() and removeFormWindow().

[править]
void QDesignerFormWindowManagerInterface::formWindowAdded ( QDesignerFormWindowInterface * formWindow ) [signal]

This signal is emitted when a new form window is added to the collection of windows that Qt Designer's form window manager maintains. A pointer to the new formWindow is passed as an argument.

See also addFormWindow() and setActiveFormWindow().

[править]
int QDesignerFormWindowManagerInterface::formWindowCount () const [virtual]

Returns the number of form windows maintained by Qt Designer's form window manager.

[править]
void QDesignerFormWindowManagerInterface::formWindowRemoved ( QDesignerFormWindowInterface * formWindow ) [signal]

This signal is emitted when a form window is removed from the collection of windows that Qt Designer's form window manager maintains. A pointer to the removed formWindow is passed as an argument.

See also removeFormWindow().

[править]
void QDesignerFormWindowManagerInterface::removeFormWindow ( QDesignerFormWindowInterface * formWindow ) [virtual slot]

Removes the given formWindow from the collection of windows that Qt Designer's form window manager maintains.

See also formWindow() and formWindowRemoved().

[править]
void QDesignerFormWindowManagerInterface::setActiveFormWindow ( QDesignerFormWindowInterface * formWindow ) [virtual slot]

Sets the given formWindow to be the currently active form window in Qt Designer's workspace.

See also activeFormWindow() and activeFormWindowChanged().



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2