[Previous: Qt3Support Module] [Qt's Modules] [Next: QtUiTools Module] Модуль QtDesigner
|
QAbstractExtensionFactory | Интерфейс для фабрик расширений Qt Designer |
---|---|
QAbstractExtensionManager | Интерфейс для менеджеров расширения Qt Designer |
QAbstractFormBuilder | Реализация по умолчанию для классов, которые создают пользовательский интерфейс во время выполнения |
QDesignerActionEditorInterface | Позволяет вам изменять фокус редактора действий Qt Designer'а |
QDesignerContainerExtension | Позволяет вам добавлять страницы к собственному многостраничному контейнеру в рабочей области Qt Designer'а |
QDesignerCustomWidgetCollectionInterface | Позволяет вам включать несколько пользовательских виджетов в единую библиотеку |
QDesignerCustomWidgetInterface | Позволяет Qt Designer'у получать доступ к пользовательским виджетам и конструировать их |
QDesignerDynamicPropertySheetExtension | Позволяет вам манипулировать динамическими свойствами виджета в редакторе свойств Qt Designer'а |
QDesignerFormEditorInterface | Позволяет вам получать доступ к различным компонентам Qt Designer'а |
QDesignerFormWindowCursorInterface | Позволяет вам запросить и изменить форму выделения виджета окна, а также изменить свойства всех виджетов формы |
QDesignerFormWindowInterface | Позволяет вам запрашивать и манипулировать формой поведения окон в рабочем пространстве Qt Designer'а |
QDesignerFormWindowManagerInterface | Позволяет вам манипулировать коллекцией форм окон в Qt Designer'е, а также управлять формой редактирования действий Qt Designer'а |
QDesignerMemberSheetExtension | Позволяет вам манипулировать фунциями-членами виджета, которые отображаются, когда настраиваются соединения, используя режим Qt Designer'а для редактирования сигналов и слотов |
QDesignerObjectInspectorInterface | Позволяет вам изменять фокус инспектора объектов Qt Designer'а |
QDesignerPropertyEditorInterface | Позволяет вам запрашивать и манипулировать текущим состоянием редактора свойств Qt Designer |
QDesignerPropertySheetExtension | Позволяет вам манипулировать свойствами виджета, которые отображаются в редакторе свойств Qt Designer'а |
QDesignerTaskMenuExtension | Позволяет вам добавлять собственные пункты меню в меню задач Qt Designer'а |
QDesignerWidgetBoxInterface | Позволяет вам управлять содержимым панели виджетов Qt Designer'а |
QExtensionFactory | Позволяет вам создать фабрику, которая способна создавать экземпляры пользовательских расширений в Qt Designer'е |
QExtensionManager | Средства управления расширениями для Qt Designer |
QFormBuilder | Используется для динамического создания пользовательского интерфейса из файлов .ui во время выполнения |
In addition, the QFormBuilder class provides the possibility of constructing user interfaces from .ui files at run-time.
Для включения определений классов этого модуля используйте следующую директиву:
#include <QtDesigner>
Для компоновки приложения с этим модулем добавьте в ваше qmake файл проект .pro:
CONFIG += designer
Замечание: Эти классы являются частью Версий Open Source Qt и Выпуска Qt Full Framework - для коммерческих пользователей.
When implementing a custom widget plugin for Qt Designer, you must subclass QDesignerCustomWidgetInterface to expose your custom widget to Qt Designer. A single custom widget plugin is built as a separate library. If you want to include several custom widget plugins in the same library, you must in addition subclass QDesignerCustomWidgetCollectionInterface.
To provide your custom widget plugin with the expected behavior and functionality within Qt Designer's workspace you can subclass the associated extension classes:
The QDesignerContainerExtension class allows you to add pages to a custom multi-page container. The QDesignerTaskMenuExtension class allows you to add custom menu entries to Qt Designer's task menu. The QDesignerMemberSheetExtension class allows you to manipulate a widget's member functions which is displayed when configuring connections using Qt Designer's mode for editing signals and slots. And finally, the QDesignerPropertySheetExtension class allows you to manipulate a widget's properties which is displayed in Qt Designer's property editor.
In Qt Designer the extensions are not created until they are required. For that reason, when implementing extensions, you must also subclass QExtensionFactory, i.e create a class that is able to make instances of your extensions. In addition, you must make Qt Designer's extension manager register your factory; the extension manager controls the construction of extensions as they are required, and you can access it through QDesignerFormEditorInterface and QExtensionManager.
For a complete example creating a custom widget plugin with an extension, see the Task Menu Extension or Container Extension examples.
The purpose of the classes mentioned in this section is to provide access to Qt Designer's components, managers and workspace, and they are not intended to be instantiated directly.
Qt Designer is composed by several components. It has an action editor, a property editor, widget box and object inspector which you can view in its workspace.
Qt Designer also has an object that works behind the scene; it contains the logic that integrates all of Qt Designer's components into a coherent application. You can access this object, using the QDesignerFormEditorInterface, to retrieve interfaces to Qt Designer's components:
In addition, you can use QDesignerFormEditorInterface to retrieve interfaces to Qt Designer's extension manager (QExtensionManager) and form window manager (QDesignerFormWindowManagerInterface). The extension manager controls the construction of extensions as they are required, while the form window manager controls the form windows appearing in Qt Designer's workspace.
Once you have an interface to Qt Designer's form window manager (QDesignerFormWindowManagerInterface), you also have access to all the form windows currently appearing in Qt Designer's workspace: The QDesignerFormWindowInterface class allows you to query and manipulate the form windows, and it provides an interface to the form windows' cursors. QDesignerFormWindowCursorInterface is a convenience class allowing you to query and modify a given form window's widget selection, and in addition modify the properties of all the form's widgets.
The QtDesigner module contains the QFormBuilder class that provides a mechanism for dynamically creating user interfaces at run-time, based on .ui files created with Qt Designer. This class is typically used by custom components and applications that embed Qt Designer. Standalone applications that need to dynamically generate user interfaces at run-time use the QUiLoader class, found in the QtUiTools module.
For a complete example using QUiLoader, see the Calculator Builder example.
See also Qt Designer Manual and QtUiTools Module.
[Previous: Qt3Support Module] [Qt's Modules] [Next: QtUiTools Module]
Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies) | Торговые марки | Qt 4.5.3 |
Попытка перевода Qt документации. Если есть желание присоединиться, или если есть замечания или пожелания, то заходите на форум: Перевод Qt документации на русский язык... Люди внесшие вклад в перевод: Команда переводчиков |