diff --git a/share/qtcreator/templates/wizards/bb-guiapp/bar-descriptor.xml b/share/qtcreator/templates/wizards/bb-guiapp/bar-descriptor.xml deleted file mode 100644 index 8ad05ef4562d2037e60821ecb26072703bc0ebc3..0000000000000000000000000000000000000000 --- a/share/qtcreator/templates/wizards/bb-guiapp/bar-descriptor.xml +++ /dev/null @@ -1,21 +0,0 @@ -<?xml version="1.0" encoding="utf-8" standalone="no"?> -<qnx xmlns="http://www.qnx.com/schemas/application/1.0"> - <id>com.example.%ProjectName%</id> - <name>%ProjectName%</name> - <versionNumber>1.0.0</versionNumber> - <description>DESCRIPTION</description> - - <initialWindow> - <systemChrome>none</systemChrome> - <transparent>false</transparent> - <autoOrients>true</autoOrients> - <aspectRatio>landscape</aspectRatio> - </initialWindow> - - <env var="QML_IMPORT_PATH" value="app/native/imports:/usr/lib/qt4/imports"/> - <env var="QT_PLUGIN_PATH" value="app/native/plugins:/usr/lib/qt4/plugins"/> - <env var="LD_LIBRARY_PATH" value="app/native/lib:/usr/lib/qt4/lib/"/> - - <action system="true">run_native</action> - <asset entry="true" path="%ProjectName%" type="Qnx/Elf">%ProjectName%</asset> -</qnx> diff --git a/share/qtcreator/templates/wizards/bb-guiapp/icon.png b/share/qtcreator/templates/wizards/bb-guiapp/icon.png deleted file mode 100644 index 5260eb64d91d3650fb40908e11f39d4f1bc23bcf..0000000000000000000000000000000000000000 Binary files a/share/qtcreator/templates/wizards/bb-guiapp/icon.png and /dev/null differ diff --git a/share/qtcreator/templates/wizards/bb-guiapp/main.cpp b/share/qtcreator/templates/wizards/bb-guiapp/main.cpp deleted file mode 100644 index 524ad5b6338ac73709d197436acd8542e81bd0e7..0000000000000000000000000000000000000000 --- a/share/qtcreator/templates/wizards/bb-guiapp/main.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include <QApplication> -#include "mainwidget.h" - -int main(int argc, char *argv[]) -{ - QApplication a(argc, argv); - // Set default BB10 style. You can also use bb10dark style - a.setStyle(QLatin1String("bb10bright")); - - MainWidget w; - w.showMaximized(); - - return a.exec(); -} diff --git a/share/qtcreator/templates/wizards/bb-guiapp/mainwidget.cpp b/share/qtcreator/templates/wizards/bb-guiapp/mainwidget.cpp deleted file mode 100644 index 4c353088e41c509b8f34395ba24d356118b4e882..0000000000000000000000000000000000000000 --- a/share/qtcreator/templates/wizards/bb-guiapp/mainwidget.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include "mainwidget.h" -#include "ui_mainwidget.h" - -MainWidget::MainWidget(QWidget *parent) : - QWidget(parent), - ui(new Ui::MainWidget) -{ - ui->setupUi(this); -} - -MainWidget::~MainWidget() -{ - delete ui; -} diff --git a/share/qtcreator/templates/wizards/bb-guiapp/mainwidget.h b/share/qtcreator/templates/wizards/bb-guiapp/mainwidget.h deleted file mode 100644 index bc6b7faf7750c7c38ce27d9895c7626fa663720b..0000000000000000000000000000000000000000 --- a/share/qtcreator/templates/wizards/bb-guiapp/mainwidget.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef MAINWIDGET_H -#define MAINWIDGET_H - -#include <QWidget> - -namespace Ui { -class MainWidget; -} - -class MainWidget : public QWidget -{ - Q_OBJECT - -public: - explicit MainWidget(QWidget *parent = 0); - ~MainWidget(); - -private: - Ui::MainWidget *ui; -}; - -#endif // MAINWIDGET_H diff --git a/share/qtcreator/templates/wizards/bb-guiapp/mainwidget.ui b/share/qtcreator/templates/wizards/bb-guiapp/mainwidget.ui deleted file mode 100644 index a3c38c7a8a4352bda6be9191171aed3a55266a88..0000000000000000000000000000000000000000 --- a/share/qtcreator/templates/wizards/bb-guiapp/mainwidget.ui +++ /dev/null @@ -1,31 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<ui version="4.0"> - <class>MainWidget</class> - <widget class="QWidget" name="MainWidget"> - <property name="geometry"> - <rect> - <x>0</x> - <y>0</y> - <width>400</width> - <height>300</height> - </rect> - </property> - <property name="windowTitle"> - <string>Form</string> - </property> - <layout class="QVBoxLayout" name="verticalLayout"> - <item> - <widget class="QLabel" name="label"> - <property name="text"> - <string>Hello World</string> - </property> - <property name="alignment"> - <set>Qt::AlignCenter</set> - </property> - </widget> - </item> - </layout> - </widget> - <resources/> - <connections/> -</ui> diff --git a/share/qtcreator/templates/wizards/bb-guiapp/project.pro b/share/qtcreator/templates/wizards/bb-guiapp/project.pro deleted file mode 100644 index d4b4aedb63979f63563d3e8782c9b8f3ce137ae5..0000000000000000000000000000000000000000 --- a/share/qtcreator/templates/wizards/bb-guiapp/project.pro +++ /dev/null @@ -1,7 +0,0 @@ -TEMPLATE = app - -SOURCES += main.cpp mainwidget.cpp -HEADERS += mainwidget.h -FORMS += mainwidget.ui - -OTHER_FILES += bar-descriptor.xml diff --git a/share/qtcreator/templates/wizards/bb-guiapp/wizard.xml b/share/qtcreator/templates/wizards/bb-guiapp/wizard.xml deleted file mode 100644 index 08fd91ea22bd7f0e0f9ee666eb8b11afd27d6540..0000000000000000000000000000000000000000 --- a/share/qtcreator/templates/wizards/bb-guiapp/wizard.xml +++ /dev/null @@ -1,48 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -/************************************************************************** -** -** This file is part of Qt Creator -** -** Copyright (C) 2011 - 2013 Research In Motion -** -** Contact: Research In Motion (blackberry-qt@qnx.com) -** Contact: KDAB (info@kdab.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, Digia gives you certain additional -** rights. These rights are described in the Digia 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 Digia. -** -**************************************************************************/ ---> -<wizard version="1" kind="project" - class="qt4project" firstpage="10" - id="Q.QnxBlackBerryGuiApp" category="F.QtApplications" - featuresRequired="QtSupport.Wizards.FeatureBlackBerry"> - <icon>icon.png</icon> - <displayname>BlackBerry Qt Gui Application</displayname>; - <description>Creates a Qt Gui application for BlackBerry.</description> - <files> - <file source="main.cpp" openeditor="true"/> - <file source="mainwidget.cpp" openeditor="true"/> - <file source="mainwidget.h" openeditor="true"/> - <file source="mainwidget.ui" openeditor="true"/> - <file source="bar-descriptor.xml" openeditor="true"/> - <file source="project.pro" target="%ProjectName%.pro" openproject="true"/> - </files> -</wizard> diff --git a/share/qtcreator/templates/wizards/bb-qt5-guiapp/bar-descriptor.xml b/share/qtcreator/templates/wizards/bb-qt5-guiapp/bar-descriptor.xml deleted file mode 100644 index b9825ddac99e6205ea4f690db84e00eb1d6bef36..0000000000000000000000000000000000000000 --- a/share/qtcreator/templates/wizards/bb-qt5-guiapp/bar-descriptor.xml +++ /dev/null @@ -1,42 +0,0 @@ -<?xml version="1.0" encoding="utf-8" standalone="no"?> -<qnx xmlns="http://www.qnx.com/schemas/application/1.0"> - <id>com.example.%ProjectName%</id> - <name>%ProjectName%</name> - <versionNumber>1.0.0</versionNumber> - <description>DESCRIPTION</description> - <publisher>PUBLISHER</publisher> - <copyright>COPYRIGHT</copyright> - - <initialWindow> - <systemChrome>none</systemChrome> - <transparent>false</transparent> - <autoOrients>true</autoOrients> - <aspectRatio>landscape</aspectRatio> - </initialWindow> - - <env var="QML2_IMPORT_PATH" value="app/native/imports"/> - <env var="QT_PLUGIN_PATH" value="app/native/plugins"/> - <env var="LD_LIBRARY_PATH" value="app/native/lib"/> - - <arg>-platform</arg> - <arg>qnx</arg> - - <action system="true">run_native</action> - - <asset entry="true" path="%ProjectName%" type="Qnx/Elf">%ProjectName%</asset> - - <!-- - %QT_INSTALL_LIBS%, %QT_INSTALL_PLUGINS, %QT_INSTALL_QML% and %SRC_DIR% - tags are replaced on-the-fly when deploying the app. in Qt Creator. - --> - <asset path="%QT_INSTALL_LIBS%">lib</asset> - <asset path="%QT_INSTALL_PLUGINS%">plugins</asset> - <asset path="%QT_INSTALL_QML%">imports</asset> - - <!-- - By default this bar-descriptor.xml embeds Qt5 runtime - into the application itself. See the following document - for various deployments of Qt runtime to a device: - http://qt-project.org/wiki/Qt-on-BlackBerry-devices - --> -</qnx> diff --git a/share/qtcreator/templates/wizards/bb-qt5-guiapp/icon.png b/share/qtcreator/templates/wizards/bb-qt5-guiapp/icon.png deleted file mode 100644 index 5260eb64d91d3650fb40908e11f39d4f1bc23bcf..0000000000000000000000000000000000000000 Binary files a/share/qtcreator/templates/wizards/bb-qt5-guiapp/icon.png and /dev/null differ diff --git a/share/qtcreator/templates/wizards/bb-qt5-guiapp/main.cpp b/share/qtcreator/templates/wizards/bb-qt5-guiapp/main.cpp deleted file mode 100644 index 68ab283ccfd16afac622e09b3f0648e332b15abd..0000000000000000000000000000000000000000 --- a/share/qtcreator/templates/wizards/bb-qt5-guiapp/main.cpp +++ /dev/null @@ -1,15 +0,0 @@ -#include <QtGui/QGuiApplication> -#include "mainwidget.h" - -int main(int argc, char *argv[]) -{ - QApplication a(argc, argv); - // Set default BB10 style. You can also use bb10dark style - a.setStyle(QLatin1String("bb10bright")); - - MainWidget w; - w.showFullScreen(); - - - return a.exec(); -} diff --git a/share/qtcreator/templates/wizards/bb-qt5-guiapp/mainwidget.cpp b/share/qtcreator/templates/wizards/bb-qt5-guiapp/mainwidget.cpp deleted file mode 100644 index 4c353088e41c509b8f34395ba24d356118b4e882..0000000000000000000000000000000000000000 --- a/share/qtcreator/templates/wizards/bb-qt5-guiapp/mainwidget.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include "mainwidget.h" -#include "ui_mainwidget.h" - -MainWidget::MainWidget(QWidget *parent) : - QWidget(parent), - ui(new Ui::MainWidget) -{ - ui->setupUi(this); -} - -MainWidget::~MainWidget() -{ - delete ui; -} diff --git a/share/qtcreator/templates/wizards/bb-qt5-guiapp/mainwidget.h b/share/qtcreator/templates/wizards/bb-qt5-guiapp/mainwidget.h deleted file mode 100644 index 9c17cff5fc6e08731231f42a053321c07fd502ad..0000000000000000000000000000000000000000 --- a/share/qtcreator/templates/wizards/bb-qt5-guiapp/mainwidget.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef MAINWIDGET_H -#define MAINWIDGET_H - -#include <QtWidgets> - -namespace Ui { -class MainWidget; -} - -class MainWidget : public QWidget -{ - Q_OBJECT - -public: - explicit MainWidget(QWidget *parent = 0); - ~MainWidget(); - -private: - Ui::MainWidget *ui; -}; - -#endif // MAINWIDGET_H diff --git a/share/qtcreator/templates/wizards/bb-qt5-guiapp/mainwidget.ui b/share/qtcreator/templates/wizards/bb-qt5-guiapp/mainwidget.ui deleted file mode 100644 index a3c38c7a8a4352bda6be9191171aed3a55266a88..0000000000000000000000000000000000000000 --- a/share/qtcreator/templates/wizards/bb-qt5-guiapp/mainwidget.ui +++ /dev/null @@ -1,31 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<ui version="4.0"> - <class>MainWidget</class> - <widget class="QWidget" name="MainWidget"> - <property name="geometry"> - <rect> - <x>0</x> - <y>0</y> - <width>400</width> - <height>300</height> - </rect> - </property> - <property name="windowTitle"> - <string>Form</string> - </property> - <layout class="QVBoxLayout" name="verticalLayout"> - <item> - <widget class="QLabel" name="label"> - <property name="text"> - <string>Hello World</string> - </property> - <property name="alignment"> - <set>Qt::AlignCenter</set> - </property> - </widget> - </item> - </layout> - </widget> - <resources/> - <connections/> -</ui> diff --git a/share/qtcreator/templates/wizards/bb-qt5-guiapp/project.pro b/share/qtcreator/templates/wizards/bb-qt5-guiapp/project.pro deleted file mode 100644 index 88835eca2cb396f7b23778b3cd2a2e439bc67b3f..0000000000000000000000000000000000000000 --- a/share/qtcreator/templates/wizards/bb-qt5-guiapp/project.pro +++ /dev/null @@ -1,11 +0,0 @@ -TEMPLATE = app - -QT += widgets - -SOURCES += main.cpp mainwidget.cpp -HEADERS += mainwidget.h -FORMS += mainwidget.ui - -OTHER_FILES += bar-descriptor.xml - - diff --git a/share/qtcreator/templates/wizards/bb-qt5-guiapp/wizard.xml b/share/qtcreator/templates/wizards/bb-qt5-guiapp/wizard.xml deleted file mode 100644 index 92f8d4bff5d89a0ee15aa1163b7d22637b1077b8..0000000000000000000000000000000000000000 --- a/share/qtcreator/templates/wizards/bb-qt5-guiapp/wizard.xml +++ /dev/null @@ -1,48 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -/************************************************************************** -** -** This file is part of Qt Creator -** -** Copyright (C) 2011 - 2013 Research In Motion -** -** Contact: Research In Motion (blackberry-qt@qnx.com) -** Contact: KDAB (info@kdab.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, Digia gives you certain additional -** rights. These rights are described in the Digia 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 Digia. -** -**************************************************************************/ ---> -<wizard version="1" kind="project" - class="qt4project" firstpage="10" - id="Q.QnxBlackBerryGuiApp" category="F.QtApplications" - featuresRequired="QtSupport.Wizards.FeatureBlackBerry"> - <icon>icon.png</icon> - <displayname>BlackBerry Qt 5 GUI Application</displayname>; - <description>Creates an experimental Qt 5 GUI application for BlackBerry 10. You need to provide your own build of Qt 5 for BlackBerry 10 since Qt 5 is not provided in the current BlackBerry 10 NDK and is not included in DevAlpha devices.</description> - <files> - <file source="main.cpp" openeditor="true"/> - <file source="mainwidget.cpp" openeditor="true"/> - <file source="mainwidget.h" openeditor="true"/> - <file source="mainwidget.ui" openeditor="true"/> - <file source="bar-descriptor.xml" openeditor="true"/> - <file source="project.pro" target="%ProjectName%.pro" openproject="true"/> - </files> -</wizard>