2012-06-29 07:23:13 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
2013-10-11 17:44:13 +02:00
|
|
|
** Copyright (C) 2012, 2013 BlackBerry Limited. All rights reserved.
|
2012-06-29 07:23:13 +02:00
|
|
|
**
|
2013-10-11 17:44:13 +02:00
|
|
|
** Contact: BlackBerry (qt@blackberry.com)
|
2012-06-29 07:23:13 +02:00
|
|
|
** Contact: KDAB (info@kdab.com)
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-06-29 07:23:13 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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 Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2012-06-29 07:23:13 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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 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
|
2012-06-29 07:23:13 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-06-29 07:23:13 +02:00
|
|
|
|
|
|
|
|
#include "qnxplugin.h"
|
|
|
|
|
|
|
|
|
|
#include "blackberrydeviceconfigurationfactory.h"
|
|
|
|
|
#include "qnxconstants.h"
|
|
|
|
|
#include "blackberryqtversionfactory.h"
|
|
|
|
|
#include "blackberrydeployconfigurationfactory.h"
|
|
|
|
|
#include "blackberrycreatepackagestepfactory.h"
|
|
|
|
|
#include "blackberrydeploystepfactory.h"
|
|
|
|
|
#include "blackberryrunconfigurationfactory.h"
|
|
|
|
|
#include "blackberryruncontrolfactory.h"
|
|
|
|
|
#include "qnxdeviceconfigurationfactory.h"
|
|
|
|
|
#include "qnxruncontrolfactory.h"
|
|
|
|
|
#include "qnxdeploystepfactory.h"
|
|
|
|
|
#include "qnxdeployconfigurationfactory.h"
|
|
|
|
|
#include "qnxrunconfigurationfactory.h"
|
|
|
|
|
#include "qnxqtversionfactory.h"
|
2013-01-17 15:27:02 -02:00
|
|
|
#include "blackberryndksettingspage.h"
|
2013-01-11 14:24:43 +01:00
|
|
|
#include "bardescriptoreditorfactory.h"
|
|
|
|
|
#include "bardescriptormagicmatcher.h"
|
2013-01-17 16:06:13 -02:00
|
|
|
#include "blackberrykeyspage.h"
|
2013-03-12 09:23:08 +01:00
|
|
|
#include "blackberrycheckdevmodestepfactory.h"
|
2013-03-14 12:39:17 +01:00
|
|
|
#include "blackberrydeviceconnectionmanager.h"
|
2013-07-04 16:21:33 +02:00
|
|
|
#include "blackberryconfigurationmanager.h"
|
2013-10-02 10:49:01 +02:00
|
|
|
#include "cascadesimport/cascadesimportwizard.h"
|
2013-01-11 14:24:43 +01:00
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <coreplugin/mimedatabase.h>
|
2013-04-30 12:59:17 +02:00
|
|
|
#include <projectexplorer/projectexplorer.h>
|
|
|
|
|
#include <projectexplorer/taskhub.h>
|
2013-07-04 16:21:33 +02:00
|
|
|
#include <projectexplorer/kitmanager.h>
|
2012-06-29 07:23:13 +02:00
|
|
|
|
|
|
|
|
#include <QtPlugin>
|
|
|
|
|
|
|
|
|
|
using namespace Qnx::Internal;
|
|
|
|
|
|
|
|
|
|
QNXPlugin::QNXPlugin()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QNXPlugin::~QNXPlugin()
|
|
|
|
|
{
|
2013-03-14 12:39:17 +01:00
|
|
|
delete BlackBerryDeviceConnectionManager::instance();
|
2013-07-04 16:21:33 +02:00
|
|
|
delete &BlackBerryConfigurationManager::instance();
|
2012-06-29 07:23:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QNXPlugin::initialize(const QStringList &arguments, QString *errorString)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(arguments)
|
|
|
|
|
Q_UNUSED(errorString)
|
|
|
|
|
|
|
|
|
|
// Handles BlackBerry
|
|
|
|
|
addAutoReleasedObject(new BlackBerryQtVersionFactory);
|
|
|
|
|
addAutoReleasedObject(new BlackBerryDeployConfigurationFactory);
|
|
|
|
|
addAutoReleasedObject(new BlackBerryDeviceConfigurationFactory);
|
|
|
|
|
addAutoReleasedObject(new BlackBerryCreatePackageStepFactory);
|
|
|
|
|
addAutoReleasedObject(new BlackBerryDeployStepFactory);
|
|
|
|
|
addAutoReleasedObject(new BlackBerryRunConfigurationFactory);
|
|
|
|
|
addAutoReleasedObject(new BlackBerryRunControlFactory);
|
2013-01-17 15:27:02 -02:00
|
|
|
addAutoReleasedObject(new BlackBerryNDKSettingsPage);
|
2013-01-17 16:06:13 -02:00
|
|
|
addAutoReleasedObject(new BlackBerryKeysPage);
|
2013-03-12 09:23:08 +01:00
|
|
|
addAutoReleasedObject(new BlackBerryCheckDevModeStepFactory);
|
2013-10-02 10:49:01 +02:00
|
|
|
addAutoReleasedObject(new CascadesImportWizard);
|
2013-03-14 12:39:17 +01:00
|
|
|
BlackBerryDeviceConnectionManager::instance()->initialize();
|
2012-06-29 07:23:13 +02:00
|
|
|
|
|
|
|
|
// Handles QNX
|
|
|
|
|
addAutoReleasedObject(new QnxQtVersionFactory);
|
|
|
|
|
addAutoReleasedObject(new QnxDeviceConfigurationFactory);
|
|
|
|
|
addAutoReleasedObject(new QnxRunControlFactory);
|
|
|
|
|
addAutoReleasedObject(new QnxDeployStepFactory);
|
|
|
|
|
addAutoReleasedObject(new QnxDeployConfigurationFactory);
|
|
|
|
|
addAutoReleasedObject(new QnxRunConfigurationFactory);
|
|
|
|
|
|
2013-01-11 14:24:43 +01:00
|
|
|
// bar-descriptor.xml editor
|
2013-04-16 16:54:21 +02:00
|
|
|
Core::MimeGlobPattern barDescriptorGlobPattern(QLatin1String("*.xml"), Core::MimeGlobPattern::MinWeight + 1);
|
2013-01-11 14:24:43 +01:00
|
|
|
Core::MimeType barDescriptorMimeType;
|
|
|
|
|
barDescriptorMimeType.setType(QLatin1String(Constants::QNX_BAR_DESCRIPTOR_MIME_TYPE));
|
2013-01-29 14:59:37 +01:00
|
|
|
barDescriptorMimeType.setComment(tr("Bar descriptor file (BlackBerry)"));
|
2013-01-11 14:24:43 +01:00
|
|
|
barDescriptorMimeType.setGlobPatterns(QList<Core::MimeGlobPattern>() << barDescriptorGlobPattern);
|
|
|
|
|
barDescriptorMimeType.addMagicMatcher(QSharedPointer<Core::IMagicMatcher>(new BarDescriptorMagicMatcher));
|
|
|
|
|
barDescriptorMimeType.setSubClassesOf(QStringList() << QLatin1String("application/xml"));
|
|
|
|
|
|
2013-08-30 16:38:57 +02:00
|
|
|
if (!Core::MimeDatabase::addMimeType(barDescriptorMimeType)) {
|
2013-05-16 16:11:36 +02:00
|
|
|
*errorString = tr("Could not add mime-type for bar-descriptor.xml editor.");
|
2013-01-11 14:24:43 +01:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
addAutoReleasedObject(new BarDescriptorEditorFactory);
|
|
|
|
|
|
2013-07-04 16:21:33 +02:00
|
|
|
connect(ProjectExplorer::KitManager::instance(), SIGNAL(kitsLoaded()), &BlackBerryConfigurationManager::instance(), SLOT(loadSettings()));
|
|
|
|
|
|
2012-06-29 07:23:13 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QNXPlugin::extensionsInitialized()
|
|
|
|
|
{
|
2013-08-15 12:14:46 +02:00
|
|
|
ProjectExplorer::TaskHub::addCategory(Constants::QNX_TASK_CATEGORY_BARDESCRIPTOR,
|
|
|
|
|
tr("Bar Descriptor"));
|
2012-06-29 07:23:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExtensionSystem::IPlugin::ShutdownFlag QNXPlugin::aboutToShutdown()
|
|
|
|
|
{
|
|
|
|
|
return SynchronousShutdown;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Q_EXPORT_PLUGIN2(QNX, QNXPlugin)
|