/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Nokia Corporation (info@qt.nokia.com) ** ** ** GNU Lesser General Public License Usage ** ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this file. ** Please review the following information to ensure the GNU Lesser General ** Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** Other Usage ** ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** **************************************************************************/ #ifndef CUSTOMWIDGETS_H #define CUSTOMWIDGETS_H #include "customwidget.h" #include #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 FilterLineEdit_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit FilterLineEdit_CW(QObject *parent = 0); }; 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 WelcomePageWidget_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit WelcomePageWidget_CW(QObject *parent = 0); virtual QWidget *createWidget(QWidget *parent); }; class WelcomeModeLabel_CW : public QObject, public CustomWidget { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetInterface) public: explicit WelcomeModeLabel_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; }; #endif // CUSTOMWIDGETS_H