⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qdesigner_components.cpp

📁 qt-x11-opensource-src-4.1.4.tar.gz源码
💻 CPP
字号:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the Qt Designer of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include <QtDesigner/QDesignerComponents>#include <actioneditor_p.h>#include <widgetdatabase_p.h>#include <widgetfactory_p.h>#include <formeditor/formeditor.h>#include <widgetbox/widgetbox.h>#include <propertyeditor/propertyeditor.h>#include <objectinspector/objectinspector.h>#include <taskmenu/taskmenu_component.h>#include <resourceeditor_p.h>#include <signalsloteditor/signalsloteditorwindow.h>#include <buddyeditor/buddyeditor_plugin.h>#include <signalsloteditor/signalsloteditor_plugin.h>#include <tabordereditor/tabordereditor_plugin.h>#include <QtCore/qplugin.h>// ### keep it in sync with Q_IMPORT_PLUGIN in qplugin.h#define DECLARE_PLUGIN_INSTANCE(PLUGIN) \        class Static##PLUGIN##PluginInstance{ \        public: \                Static##PLUGIN##PluginInstance() {                      \                extern void qRegisterStaticPluginInstanceFunction(QtPluginInstanceFunction); \                extern QObject *qt_plugin_instance_##PLUGIN(); \                qRegisterStaticPluginInstanceFunction(qt_plugin_instance_##PLUGIN); \                } \        };#define INIT_PLUGIN_INSTANCE(PLUGIN) \        do { \            Static##PLUGIN##PluginInstance instance; Q_UNUSED(instance); \        } while (0)DECLARE_PLUGIN_INSTANCE(SignalSlotEditorPlugin)DECLARE_PLUGIN_INSTANCE(BuddyEditorPlugin)DECLARE_PLUGIN_INSTANCE(TabOrderEditorPlugin)/*!    \class QDesignerComponents    \brief The QDesignerComponents class provides a central resource for the various components    used in the \QD user interface.    \inmodule QtDesigner    \internal    The QDesignerComponents class is a factory for each of the standard components present    in the \QD user interface. It is mostly useful for developers who want to implement    a standalone form editing environment using \QD's components, or who need to integrate    \QD's components into an existing integrated development environment (IDE).    \sa QDesignerFormEditorInterface, QDesignerObjectInspectorInterface,        QDesignerPropertyEditorInterface, QDesignerWidgetBoxInterface*//*!    Initializes the resources used by the components.*/void QDesignerComponents::initializeResources(){    Q_INIT_RESOURCE(formeditor);    Q_INIT_RESOURCE(widgetbox);}/*!    Initializes the plugins used by the components.*/void QDesignerComponents::initializePlugins(QDesignerFormEditorInterface *core){    using namespace qdesigner_internal;    // load the plugins    if (WidgetDataBase *widgetDatabase = qobject_cast<WidgetDataBase*>(core->widgetDataBase())) {        widgetDatabase->loadPlugins();        widgetDatabase->grabDefaultPropertyValues();    }    if (WidgetFactory *widgetFactory = qobject_cast<WidgetFactory*>(core->widgetFactory())) {        widgetFactory->loadPlugins();    }}/*!    Constructs a form editor interface with the given \a parent.*/QDesignerFormEditorInterface *QDesignerComponents::createFormEditor(QObject *parent){    static bool plugins_initialized = false;    if (!plugins_initialized) {        INIT_PLUGIN_INSTANCE(SignalSlotEditorPlugin);        INIT_PLUGIN_INSTANCE(BuddyEditorPlugin);        INIT_PLUGIN_INSTANCE(TabOrderEditorPlugin);        plugins_initialized = true;    }    return new qdesigner_internal::FormEditor(parent);}/*!    Returns a new task menu with the given \a parent for the \a core interface.*/QObject *QDesignerComponents::createTaskMenu(QDesignerFormEditorInterface *core, QObject *parent){    return new qdesigner_internal::TaskMenuComponent(core, parent);}/*!    Returns a new widget box interface with the given \a parent for the \a core interface.*/QDesignerWidgetBoxInterface *QDesignerComponents::createWidgetBox(QDesignerFormEditorInterface *core, QWidget *parent){    return new qdesigner_internal::WidgetBox(core, parent);}/*!    Returns a new property editor interface with the given \a parent for the \a core interface.*/QDesignerPropertyEditorInterface *QDesignerComponents::createPropertyEditor(QDesignerFormEditorInterface *core, QWidget *parent){    return new qdesigner_internal::PropertyEditor(core, parent);}/*!    Returns a new object inspector interface with the given \a parent for the \a core interface.*/QDesignerObjectInspectorInterface *QDesignerComponents::createObjectInspector(QDesignerFormEditorInterface *core, QWidget *parent){    return new qdesigner_internal::ObjectInspector(core, parent);}/*!    Returns a new action editor interface with the given \a parent for the \a core interface.*/QDesignerActionEditorInterface *QDesignerComponents::createActionEditor(QDesignerFormEditorInterface *core, QWidget *parent){    return new qdesigner_internal::ActionEditor(core, parent);}/*!    Returns a new resource editor with the given \a parent for the \a core interface.*/QWidget *QDesignerComponents::createResourceEditor(QDesignerFormEditorInterface *core, QWidget *parent){    return new qdesigner_internal::ResourceEditor(core, parent);}/*!    Returns a new signal-slot editor with the given \a parent for the \a core interface.*/QWidget *QDesignerComponents::createSignalSlotEditor(QDesignerFormEditorInterface *core, QWidget *parent){    return new qdesigner_internal::SignalSlotEditorWindow(core, parent);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -