abstractformeditor.h
来自「奇趣公司比较新的qt/emd版本」· C头文件 代码 · 共 135 行
H
135 行
/******************************************************************************** Copyright (C) 1992-2007 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://trolltech.com/products/qt/licenses/licensing/opensource/**** If you are unsure which license is appropriate for your use, please** review the following information:** http://trolltech.com/products/qt/licenses/licensing/licensingoverview** or contact the sales department at sales@trolltech.com.**** In addition, as a special exception, Trolltech gives you certain** additional rights. These rights are described in the Trolltech GPL** Exception version 1.0, which can be found at** http://www.trolltech.com/products/qt/gplexception/ and in the file** GPL_EXCEPTION.txt in this package.**** In addition, as a special exception, Trolltech, as the sole copyright** holder for Qt Designer, grants users of the Qt/Eclipse Integration** plug-in the right for the Qt/Eclipse Integration to link to** functionality provided by Qt Designer and its related libraries.**** Trolltech reserves all rights not expressly granted herein.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef ABSTRACTFORMEDITOR_H#define ABSTRACTFORMEDITOR_H#include <QtDesigner/sdk_global.h>#include <QtCore/QObject>#include <QtCore/QPointer>QT_BEGIN_HEADERclass QDesignerWidgetBoxInterface;class QDesignerPropertyEditorInterface;class QDesignerFormWindowManagerInterface;class QDesignerWidgetDataBaseInterface;class QDesignerMetaDataBaseInterface;class QDesignerWidgetFactoryInterface;class QDesignerObjectInspectorInterface;class QDesignerPromotionInterface;class QDesignerBrushManagerInterface;class QDesignerIconCacheInterface;class QDesignerActionEditorInterface;class QDesignerIntegrationInterface;class QDesignerPluginManager;class QWidget;class QExtensionManager;class QDesignerFormEditorInterfacePrivate;class QDESIGNER_SDK_EXPORT QDesignerFormEditorInterface: public QObject{ Q_OBJECTpublic: QDesignerFormEditorInterface(QObject *parent = 0); virtual ~QDesignerFormEditorInterface(); QExtensionManager *extensionManager() const; QWidget *topLevel() const; QDesignerWidgetBoxInterface *widgetBox() const; QDesignerPropertyEditorInterface *propertyEditor() const; QDesignerObjectInspectorInterface *objectInspector() const; QDesignerFormWindowManagerInterface *formWindowManager() const; QDesignerWidgetDataBaseInterface *widgetDataBase() const; QDesignerMetaDataBaseInterface *metaDataBase() const; QDesignerPromotionInterface *promotion() const; QDesignerWidgetFactoryInterface *widgetFactory() const; QDesignerBrushManagerInterface *brushManager() const; QDesignerIconCacheInterface *iconCache() const; QDesignerActionEditorInterface *actionEditor() const; QDesignerIntegrationInterface *integration() const; QDesignerPluginManager *pluginManager() const; QString resourceLocation() const; void setTopLevel(QWidget *topLevel); void setWidgetBox(QDesignerWidgetBoxInterface *widgetBox); void setPropertyEditor(QDesignerPropertyEditorInterface *propertyEditor); void setObjectInspector(QDesignerObjectInspectorInterface *objectInspector); void setPluginManager(QDesignerPluginManager *pluginManager); void setActionEditor(QDesignerActionEditorInterface *actionEditor); void setIntegration(QDesignerIntegrationInterface *integration);protected: void setFormManager(QDesignerFormWindowManagerInterface *formWindowManager); void setMetaDataBase(QDesignerMetaDataBaseInterface *metaDataBase); void setWidgetDataBase(QDesignerWidgetDataBaseInterface *widgetDataBase); void setPromotion(QDesignerPromotionInterface *promotion); void setWidgetFactory(QDesignerWidgetFactoryInterface *widgetFactory); void setExtensionManager(QExtensionManager *extensionManager); void setBrushManager(QDesignerBrushManagerInterface *brushManager); void setIconCache(QDesignerIconCacheInterface *cache);private: QPointer<QWidget> m_pad1; QPointer<QDesignerWidgetBoxInterface> m_pad2; QPointer<QDesignerPropertyEditorInterface> m_pad3; QPointer<QDesignerFormWindowManagerInterface> m_pad4; QPointer<QExtensionManager> m_pad5; QPointer<QDesignerMetaDataBaseInterface> m_pad6; QPointer<QDesignerWidgetDataBaseInterface> m_pad7; QPointer<QDesignerWidgetFactoryInterface> m_pad8; QPointer<QDesignerObjectInspectorInterface> m_pad9; QPointer<QDesignerBrushManagerInterface> m_pad10; QPointer<QDesignerIconCacheInterface> m_pad11; QPointer<QDesignerActionEditorInterface> m_pad12; QDesignerPluginManager *m_pad13;private: Q_DECLARE_PRIVATE(QDesignerFormEditorInterface) QDesignerFormEditorInterface(const QDesignerFormEditorInterface &other); void operator = (const QDesignerFormEditorInterface &other);};QT_END_HEADER#endif // ABSTRACTFORMEDITOR_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?