summaryrefslogtreecommitdiffstats
path: root/tools/designer/src/plugins/qdeclarativeview/qdeclarativeview_plugin.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-05-18 09:27:49 +0200
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-05-18 08:37:55 +0000
commit79aff17bc604f126c507ca329dcdc42b34609886 (patch)
tree3e27336424356ba323d0896132de5e3eb91e575d /tools/designer/src/plugins/qdeclarativeview/qdeclarativeview_plugin.h
parent7bf5bb1a7f54f775534a3d940c44d3bf78725306 (diff)
Remove duplicated Qt Designer plugin from tools.
This code was never compiled, the Qt Designer plugin is under src/plugins. Change-Id: Ic25dc965bcca458322c089a3b5dfe4765fec0556 Reviewed-by: Alan Alpert (Personal) <416365416c@gmail.com>
Diffstat (limited to 'tools/designer/src/plugins/qdeclarativeview/qdeclarativeview_plugin.h')
-rw-r--r--tools/designer/src/plugins/qdeclarativeview/qdeclarativeview_plugin.h67
1 files changed, 0 insertions, 67 deletions
diff --git a/tools/designer/src/plugins/qdeclarativeview/qdeclarativeview_plugin.h b/tools/designer/src/plugins/qdeclarativeview/qdeclarativeview_plugin.h
deleted file mode 100644
index 2d5d2d89..00000000
--- a/tools/designer/src/plugins/qdeclarativeview/qdeclarativeview_plugin.h
+++ /dev/null
@@ -1,67 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2015 The Qt Company Ltd.
-** Contact: http://www.qt.io/licensing/
-**
-** This file is part of the Qt Designer of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL21$
-** 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 http://www.qt.io/terms-conditions. For further
-** information use the contact form at http://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 or version 3 as published by the Free
-** Software Foundation and appearing in the file LICENSE.LGPLv21 and
-** LICENSE.LGPLv3 included in the packaging of this file. Please review the
-** following information to ensure the GNU Lesser General Public License
-** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
-** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** As a special exception, The Qt Company gives you certain additional
-** rights. These rights are described in The Qt Company LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#ifndef QDECLARATIVEVIEW_PLUGIN_H
-#define QDECLARATIVEVIEW_PLUGIN_H
-
-#include <QtDesigner/QDesignerCustomWidgetInterface>
-
-QT_BEGIN_NAMESPACE
-
-class QDeclarativeViewPlugin: public QObject, public QDesignerCustomWidgetInterface
-{
- Q_OBJECT
- Q_PLUGIN_METADATA(IID "org.qt-project.QDesignerCustomWidgetInterface")
- Q_INTERFACES(QDesignerCustomWidgetInterface)
-public:
- QDeclarativeViewPlugin(QObject *parent = 0);
-
- virtual QString name() const;
- virtual QString group() const;
- virtual QString toolTip() const;
- virtual QString whatsThis() const;
- virtual QString includeFile() const;
- virtual QIcon icon() const;
- virtual bool isContainer() const;
- virtual QWidget *createWidget(QWidget *parent);
- virtual bool isInitialized() const;
- virtual void initialize(QDesignerFormEditorInterface *core);
- virtual QString domXml() const;
-
-private:
- bool m_initialized;
-};
-
-QT_END_NAMESPACE
-
-#endif // QDECLARATIVEVIEW_PLUGIN_H