forked from qt-creator/qt-creator
Show potential kits in the targetsetuppage
Change-Id: I6569e3d53b78cdcdf8607a289b5be37447e0a03c Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
@@ -46,7 +46,8 @@ HEADERS += \
|
|||||||
androiddeployqtstep.h \
|
androiddeployqtstep.h \
|
||||||
certificatesmodel.h \
|
certificatesmodel.h \
|
||||||
androiddeployqtwidget.h \
|
androiddeployqtwidget.h \
|
||||||
createandroidmanifestwizard.h
|
createandroidmanifestwizard.h \
|
||||||
|
androidpotentialkit.h
|
||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
androidconfigurations.cpp \
|
androidconfigurations.cpp \
|
||||||
@@ -87,7 +88,8 @@ SOURCES += \
|
|||||||
androiddeployqtstep.cpp \
|
androiddeployqtstep.cpp \
|
||||||
certificatesmodel.cpp \
|
certificatesmodel.cpp \
|
||||||
androiddeployqtwidget.cpp \
|
androiddeployqtwidget.cpp \
|
||||||
createandroidmanifestwizard.cpp
|
createandroidmanifestwizard.cpp \
|
||||||
|
androidpotentialkit.cpp
|
||||||
|
|
||||||
FORMS += \
|
FORMS += \
|
||||||
androidsettingswidget.ui \
|
androidsettingswidget.ui \
|
||||||
|
|||||||
@@ -45,6 +45,7 @@
|
|||||||
#include "androiddeployconfiguration.h"
|
#include "androiddeployconfiguration.h"
|
||||||
#include "androidgdbserverkitinformation.h"
|
#include "androidgdbserverkitinformation.h"
|
||||||
#include "androidmanifesteditorfactory.h"
|
#include "androidmanifesteditorfactory.h"
|
||||||
|
#include "androidpotentialkit.h"
|
||||||
#ifdef HAVE_QBS
|
#ifdef HAVE_QBS
|
||||||
# include "androidqbspropertyprovider.h"
|
# include "androidqbspropertyprovider.h"
|
||||||
#endif
|
#endif
|
||||||
@@ -81,6 +82,7 @@ bool AndroidPlugin::initialize(const QStringList &arguments, QString *errorMessa
|
|||||||
addAutoReleasedObject(new Internal::AndroidToolChainFactory);
|
addAutoReleasedObject(new Internal::AndroidToolChainFactory);
|
||||||
addAutoReleasedObject(new Internal::AndroidDeployConfigurationFactory);
|
addAutoReleasedObject(new Internal::AndroidDeployConfigurationFactory);
|
||||||
addAutoReleasedObject(new Internal::AndroidDeviceFactory);
|
addAutoReleasedObject(new Internal::AndroidDeviceFactory);
|
||||||
|
addAutoReleasedObject(new Internal::AndroidPotentialKit);
|
||||||
ProjectExplorer::KitManager::registerKitInformation(new Internal::AndroidGdbServerKitInformation);
|
ProjectExplorer::KitManager::registerKitInformation(new Internal::AndroidGdbServerKitInformation);
|
||||||
|
|
||||||
// AndroidManifest.xml editor
|
// AndroidManifest.xml editor
|
||||||
|
|||||||
@@ -0,0 +1,121 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||||
|
** Contact: http://www.qt-project.org/legal
|
||||||
|
**
|
||||||
|
** This file is part of Qt Creator.
|
||||||
|
**
|
||||||
|
** 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.
|
||||||
|
**
|
||||||
|
** 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
|
||||||
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
||||||
|
**
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include "androidpotentialkit.h"
|
||||||
|
#include "androidconstants.h"
|
||||||
|
#include "androidconfigurations.h"
|
||||||
|
|
||||||
|
#include <utils/detailswidget.h>
|
||||||
|
#include <coreplugin/icore.h>
|
||||||
|
#include <projectexplorer/kitmanager.h>
|
||||||
|
#include <projectexplorer/kit.h>
|
||||||
|
#include <projectexplorer/kitinformation.h>
|
||||||
|
#include <qtsupport/qtversionmanager.h>
|
||||||
|
#include <qtsupport/baseqtversion.h>
|
||||||
|
|
||||||
|
#include <QGridLayout>
|
||||||
|
#include <QLabel>
|
||||||
|
#include <QPushButton>
|
||||||
|
|
||||||
|
using namespace Android;
|
||||||
|
using namespace Android::Internal;
|
||||||
|
|
||||||
|
QWidget *AndroidPotentialKit::createWidget(QWidget *parent) const
|
||||||
|
{
|
||||||
|
QList<ProjectExplorer::Kit *> kits = ProjectExplorer::KitManager::kits();
|
||||||
|
foreach (ProjectExplorer::Kit *kit, kits) {
|
||||||
|
Core::Id deviceId = ProjectExplorer::DeviceKitInformation::deviceId(kit);
|
||||||
|
if (kit->isAutoDetected()
|
||||||
|
&& deviceId == Core::Id(Constants::ANDROID_DEVICE_ID)
|
||||||
|
&& !kit->isSdkProvided()) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool found = false;
|
||||||
|
foreach (QtSupport::BaseQtVersion *version, QtSupport::QtVersionManager::validVersions()) {
|
||||||
|
if (version->type() == QLatin1String(Constants::ANDROIDQT)) {
|
||||||
|
found = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!found) // no android qt
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
return new AndroidPotentialKitWidget(parent);
|
||||||
|
}
|
||||||
|
|
||||||
|
AndroidPotentialKitWidget::AndroidPotentialKitWidget(QWidget *parent)
|
||||||
|
: Utils::DetailsWidget(parent)
|
||||||
|
{
|
||||||
|
setSummaryText(QLatin1String("<b>Create Android Kits</b>"));
|
||||||
|
//detailsWidget->setState(Utils::DetailsWidget::NoSummary);
|
||||||
|
QWidget *mainWidget = new QWidget(this);
|
||||||
|
setWidget(mainWidget);
|
||||||
|
|
||||||
|
QGridLayout *layout = new QGridLayout(mainWidget);
|
||||||
|
layout->setMargin(0);
|
||||||
|
QLabel *label = new QLabel;
|
||||||
|
label->setText(tr("Creator needs additional settings to enable Android support."
|
||||||
|
"You can configure those settings in the Options dialog."));
|
||||||
|
label->setWordWrap(true);
|
||||||
|
layout->addWidget(label, 0, 0, 1, 2);
|
||||||
|
|
||||||
|
QPushButton *openOptions = new QPushButton;
|
||||||
|
openOptions->setText(tr("Open Settings"));
|
||||||
|
openOptions->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
|
||||||
|
layout->addWidget(openOptions, 1, 1);
|
||||||
|
|
||||||
|
connect(openOptions, SIGNAL(clicked()),
|
||||||
|
this, SLOT(openOptions()));
|
||||||
|
|
||||||
|
connect(&AndroidConfigurations::instance(), SIGNAL(updated()),
|
||||||
|
this, SLOT(recheck()));
|
||||||
|
}
|
||||||
|
|
||||||
|
void AndroidPotentialKitWidget::openOptions()
|
||||||
|
{
|
||||||
|
Core::ICore::showOptionsDialog(Constants::ANDROID_SETTINGS_CATEGORY,
|
||||||
|
Constants::ANDROID_SETTINGS_ID);
|
||||||
|
}
|
||||||
|
|
||||||
|
void AndroidPotentialKitWidget::recheck()
|
||||||
|
{
|
||||||
|
QList<ProjectExplorer::Kit *> kits = ProjectExplorer::KitManager::kits();
|
||||||
|
foreach (ProjectExplorer::Kit *kit, kits) {
|
||||||
|
Core::Id deviceId = ProjectExplorer::DeviceKitInformation::deviceId(kit);
|
||||||
|
if (kit->isAutoDetected()
|
||||||
|
&& deviceId == Core::Id(Constants::ANDROID_DEVICE_ID)
|
||||||
|
&& !kit->isSdkProvided()) {
|
||||||
|
setVisible(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||||
|
** Contact: http://www.qt-project.org/legal
|
||||||
|
**
|
||||||
|
** This file is part of Qt Creator.
|
||||||
|
**
|
||||||
|
** 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.
|
||||||
|
**
|
||||||
|
** 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
|
||||||
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
||||||
|
**
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#ifndef ANDROIDPOTENTIALKIT_H
|
||||||
|
#define ANDROIDPOTENTIALKIT_H
|
||||||
|
|
||||||
|
#include <projectexplorer/ipotentialkit.h>
|
||||||
|
#include <utils/detailswidget.h>
|
||||||
|
|
||||||
|
namespace Android {
|
||||||
|
namespace Internal {
|
||||||
|
|
||||||
|
class AndroidPotentialKit : public ProjectExplorer::IPotentialKit
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
QWidget *createWidget(QWidget *parent) const;
|
||||||
|
};
|
||||||
|
|
||||||
|
class AndroidPotentialKitWidget : public Utils::DetailsWidget
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
AndroidPotentialKitWidget(QWidget *parent);
|
||||||
|
private slots:
|
||||||
|
void openOptions();
|
||||||
|
void recheck();
|
||||||
|
};
|
||||||
|
|
||||||
|
// TODO add "Download" links to the settings page?
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // ANDROIDPOTENTIALKIT_H
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||||
|
** Contact: http://www.qt-project.org/legal
|
||||||
|
**
|
||||||
|
** This file is part of Qt Creator.
|
||||||
|
**
|
||||||
|
** 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.
|
||||||
|
**
|
||||||
|
** 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
|
||||||
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
||||||
|
**
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include "ipotentialkit.h"
|
||||||
|
|
||||||
|
ProjectExplorer::IPotentialKit::~IPotentialKit()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||||
|
** Contact: http://www.qt-project.org/legal
|
||||||
|
**
|
||||||
|
** This file is part of Qt Creator.
|
||||||
|
**
|
||||||
|
** 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.
|
||||||
|
**
|
||||||
|
** 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
|
||||||
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
||||||
|
**
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#ifndef IPOTENTIALKIT_H
|
||||||
|
#define IPOTENTIALKIT_H
|
||||||
|
|
||||||
|
#include <QObject>
|
||||||
|
#include "projectexplorer_export.h"
|
||||||
|
|
||||||
|
namespace ProjectExplorer {
|
||||||
|
|
||||||
|
class PROJECTEXPLORER_EXPORT IPotentialKit : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
virtual ~IPotentialKit();
|
||||||
|
virtual QWidget *createWidget(QWidget *parent) const = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // IPOTENTIALKIT_H
|
||||||
@@ -142,7 +142,8 @@ HEADERS += projectexplorer.h \
|
|||||||
customtoolchain.h \
|
customtoolchain.h \
|
||||||
projectmacroexpander.h \
|
projectmacroexpander.h \
|
||||||
customparser.h \
|
customparser.h \
|
||||||
customparserconfigdialog.h
|
customparserconfigdialog.h \
|
||||||
|
ipotentialkit.h
|
||||||
|
|
||||||
SOURCES += projectexplorer.cpp \
|
SOURCES += projectexplorer.cpp \
|
||||||
abi.cpp \
|
abi.cpp \
|
||||||
@@ -270,7 +271,8 @@ SOURCES += projectexplorer.cpp \
|
|||||||
customtoolchain.cpp \
|
customtoolchain.cpp \
|
||||||
projectmacroexpander.cpp \
|
projectmacroexpander.cpp \
|
||||||
customparser.cpp \
|
customparser.cpp \
|
||||||
customparserconfigdialog.cpp
|
customparserconfigdialog.cpp \
|
||||||
|
ipotentialkit.cpp
|
||||||
|
|
||||||
FORMS += processstep.ui \
|
FORMS += processstep.ui \
|
||||||
editorsettingspropertiespage.ui \
|
editorsettingspropertiespage.ui \
|
||||||
|
|||||||
@@ -39,6 +39,8 @@
|
|||||||
#include "targetsetupwidget.h"
|
#include "targetsetupwidget.h"
|
||||||
|
|
||||||
#include <coreplugin/icore.h>
|
#include <coreplugin/icore.h>
|
||||||
|
#include <extensionsystem/pluginmanager.h>
|
||||||
|
#include <projectexplorer/ipotentialkit.h>
|
||||||
#include <utils/qtcassert.h>
|
#include <utils/qtcassert.h>
|
||||||
#include <utils/qtcprocess.h>
|
#include <utils/qtcprocess.h>
|
||||||
|
|
||||||
@@ -162,6 +164,12 @@ TargetSetupPage::TargetSetupPage(QWidget *parent) :
|
|||||||
|
|
||||||
setTitle(tr("Kit Selection"));
|
setTitle(tr("Kit Selection"));
|
||||||
|
|
||||||
|
QList<IPotentialKit *> potentialKits =
|
||||||
|
ExtensionSystem::PluginManager::instance()->getObjects<IPotentialKit>();
|
||||||
|
foreach (IPotentialKit *pk, potentialKits)
|
||||||
|
if (QWidget *w = pk->createWidget(this))
|
||||||
|
m_potentialWidgets.append(w);
|
||||||
|
|
||||||
QObject *km = KitManager::instance();
|
QObject *km = KitManager::instance();
|
||||||
connect(km, SIGNAL(kitAdded(ProjectExplorer::Kit*)),
|
connect(km, SIGNAL(kitAdded(ProjectExplorer::Kit*)),
|
||||||
this, SLOT(handleKitAddition(ProjectExplorer::Kit*)));
|
this, SLOT(handleKitAddition(ProjectExplorer::Kit*)));
|
||||||
@@ -176,6 +184,8 @@ TargetSetupPage::TargetSetupPage(QWidget *parent) :
|
|||||||
void TargetSetupPage::initializePage()
|
void TargetSetupPage::initializePage()
|
||||||
{
|
{
|
||||||
m_baseLayout->addWidget(m_importWidget);
|
m_baseLayout->addWidget(m_importWidget);
|
||||||
|
foreach (QWidget *widget, m_potentialWidgets)
|
||||||
|
m_baseLayout->addWidget(widget);
|
||||||
m_baseLayout->addItem(m_spacer);
|
m_baseLayout->addItem(m_spacer);
|
||||||
|
|
||||||
reset();
|
reset();
|
||||||
@@ -477,6 +487,8 @@ TargetSetupWidget *TargetSetupPage::addWidget(Kit *k)
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
m_baseLayout->removeWidget(m_importWidget);
|
m_baseLayout->removeWidget(m_importWidget);
|
||||||
|
foreach (QWidget *widget, m_potentialWidgets)
|
||||||
|
m_baseLayout->removeWidget(widget);
|
||||||
m_baseLayout->removeItem(m_spacer);
|
m_baseLayout->removeItem(m_spacer);
|
||||||
|
|
||||||
widget->setKitSelected(m_preferredMatcher && m_preferredMatcher->matches(k));
|
widget->setKitSelected(m_preferredMatcher && m_preferredMatcher->matches(k));
|
||||||
@@ -484,6 +496,8 @@ TargetSetupWidget *TargetSetupPage::addWidget(Kit *k)
|
|||||||
m_baseLayout->addWidget(widget);
|
m_baseLayout->addWidget(widget);
|
||||||
|
|
||||||
m_baseLayout->addWidget(m_importWidget);
|
m_baseLayout->addWidget(m_importWidget);
|
||||||
|
foreach (QWidget *widget, m_potentialWidgets)
|
||||||
|
m_baseLayout->addWidget(widget);
|
||||||
m_baseLayout->addItem(m_spacer);
|
m_baseLayout->addItem(m_spacer);
|
||||||
|
|
||||||
connect(widget, SIGNAL(selectedToggled()),
|
connect(widget, SIGNAL(selectedToggled()),
|
||||||
|
|||||||
@@ -123,6 +123,7 @@ private:
|
|||||||
|
|
||||||
Internal::ImportWidget *m_importWidget;
|
Internal::ImportWidget *m_importWidget;
|
||||||
QSpacerItem *m_spacer;
|
QSpacerItem *m_spacer;
|
||||||
|
QList<QWidget *> m_potentialWidgets;
|
||||||
|
|
||||||
bool m_forceOptionHint;
|
bool m_forceOptionHint;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user