2012-06-29 07:23:13 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2011 - 2013 Research In Motion
|
2012-06-29 07:23:13 +02:00
|
|
|
**
|
|
|
|
|
** Contact: Research In Motion (blackberry-qt@qnx.com)
|
|
|
|
|
** 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-01-11 14:24:43 +01:00
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <coreplugin/mimedatabase.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();
|
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-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
|
|
|
|
|
Core::MimeGlobPattern barDescriptorGlobPattern(QRegExp(QLatin1String("*.xml"), Qt::CaseInsensitive, QRegExp::Wildcard), Core::MimeGlobPattern::MinWeight + 1);
|
|
|
|
|
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-03-17 16:32:29 +02:00
|
|
|
if (!Core::ICore::mimeDatabase()->addMimeType(barDescriptorMimeType)) {
|
2013-01-11 14:24:43 +01:00
|
|
|
*errorString = tr("Could not add mime-type for bar-descriptor.xml editor");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
addAutoReleasedObject(new BarDescriptorEditorFactory);
|
|
|
|
|
|
2012-06-29 07:23:13 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QNXPlugin::extensionsInitialized()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExtensionSystem::IPlugin::ShutdownFlag QNXPlugin::aboutToShutdown()
|
|
|
|
|
{
|
|
|
|
|
return SynchronousShutdown;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Q_EXPORT_PLUGIN2(QNX, QNXPlugin)
|