/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ****************************************************************************/ #pragma once #include "customwidget.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include QT_BEGIN_NAMESPACE class QExtensionManager; QT_END_NAMESPACE // Custom Widgets class NewClassCustomWidget : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit NewClassCustomWidget(QObject *parent = 0); }; class ClassNameValidatingLineEdit_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit ClassNameValidatingLineEdit_CW(QObject *parent = 0); }; class FileNameValidatingLineEdit_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit FileNameValidatingLineEdit_CW(QObject *parent = 0); }; class ProjectNameValidatingLineEdit_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit ProjectNameValidatingLineEdit_CW(QObject *parent = 0); }; class LineColumnLabel_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit LineColumnLabel_CW(QObject *parent = 0); }; class PathChooser_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit PathChooser_CW(QObject *parent = 0); }; class IconButton_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit IconButton_CW(QObject *parent = 0); }; class FancyLineEdit_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit FancyLineEdit_CW(QObject *parent = 0); virtual QWidget *createWidget(QWidget *parent); }; class QtColorButton_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit QtColorButton_CW(QObject *parent = 0); }; class SubmitEditorWidget_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit SubmitEditorWidget_CW(QObject *parent = 0); }; class SubmitFieldWidget_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit SubmitFieldWidget_CW(QObject *parent = 0); }; class PathListEditor_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit PathListEditor_CW(QObject *parent = 0); }; class DetailsButton_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit DetailsButton_CW(QObject *parent = 0); }; class StyledBar_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit StyledBar_CW(QObject *parent = 0); }; class StyledSeparator_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit StyledSeparator_CW(QObject *parent = 0); }; class Wizard_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit Wizard_CW(QObject *parent = 0); }; class CrumblePath_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit CrumblePath_CW(QObject *parent = 0); }; // Details Widget: plugin + simple, hacky container extension that // accepts only one page. class DetailsWidget_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit DetailsWidget_CW(QObject *parent = 0); QString domXml() const; void initialize(QDesignerFormEditorInterface *core); }; class DetailsWidgetContainerExtension: public QObject, public QDesignerContainerExtension { Q_OBJECT Q_INTERFACES(QDesignerContainerExtension) public: explicit DetailsWidgetContainerExtension(Utils::DetailsWidget *widget, QObject *parent); void addWidget(QWidget *widget); int count() const; int currentIndex() const; void insertWidget(int index, QWidget *widget); void remove(int index); void setCurrentIndex(int index); QWidget *widget(int index) const; private: Utils::DetailsWidget *m_detailsWidget; }; class DetailsWidgetExtensionFactory: public QExtensionFactory { Q_OBJECT public: explicit DetailsWidgetExtensionFactory(QExtensionManager *parent = 0); protected: QObject *createExtension(QObject *object, const QString &iid, QObject *parent) const; }; // ------------ Collection class WidgetCollection : public QObject, public QDesignerCustomWidgetCollectionInterface { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetCollectionInterface) public: explicit WidgetCollection(QObject *parent = 0); virtual QList customWidgets() const; private: QList m_plugins; };