2013-09-26 18:38:44 +02:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
|
|
|
** 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 "createandroidmanifestwizard.h"
|
|
|
|
|
|
|
|
#include <projectexplorer/target.h>
|
2013-10-29 16:19:24 +01:00
|
|
|
#include <qmakeprojectmanager/qmakeproject.h>
|
|
|
|
#include <qmakeprojectmanager/qmakenodes.h>
|
2013-09-26 18:38:44 +02:00
|
|
|
#include <proparser/prowriter.h>
|
|
|
|
#include <QComboBox>
|
|
|
|
#include <QFormLayout>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <qtsupport/qtkitinformation.h>
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
|
|
|
using namespace Android;
|
|
|
|
using namespace Android::Internal;
|
2013-10-29 14:22:31 +01:00
|
|
|
using QmakeProjectManager::QmakeProject;
|
|
|
|
using QmakeProjectManager::QmakeProFileNode;
|
2013-09-26 18:38:44 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// NoApplicationProFilePage
|
|
|
|
//
|
|
|
|
NoApplicationProFilePage::NoApplicationProFilePage(CreateAndroidManifestWizard *wizard)
|
|
|
|
: m_wizard(wizard)
|
|
|
|
{
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout(this);
|
|
|
|
QLabel *label = new QLabel(this);
|
|
|
|
label->setWordWrap(true);
|
|
|
|
label->setText(tr("No application .pro file found in this project."));
|
|
|
|
layout->addWidget(label);
|
|
|
|
setTitle(tr("No Application .pro File"));
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// ChooseProFilePage
|
|
|
|
//
|
2013-10-29 14:22:31 +01:00
|
|
|
ChooseProFilePage::ChooseProFilePage(CreateAndroidManifestWizard *wizard, const QList<QmakeProFileNode *> &nodes)
|
2013-09-26 18:38:44 +02:00
|
|
|
: m_wizard(wizard)
|
|
|
|
{
|
|
|
|
QFormLayout *fl = new QFormLayout(this);
|
|
|
|
QLabel *label = new QLabel(this);
|
|
|
|
label->setWordWrap(true);
|
2013-10-09 16:37:42 +02:00
|
|
|
label->setText(tr("Select the .pro file for which you want to create an AndroidManifest.xml file."));
|
2013-09-26 18:38:44 +02:00
|
|
|
fl->addRow(label);
|
|
|
|
|
|
|
|
m_comboBox = new QComboBox(this);
|
2013-10-29 14:22:31 +01:00
|
|
|
foreach (QmakeProFileNode *node, nodes)
|
2013-09-26 18:38:44 +02:00
|
|
|
m_comboBox->addItem(node->displayName(), QVariant::fromValue(static_cast<void *>(node))); // TODO something more?
|
|
|
|
|
2013-11-19 18:34:26 +01:00
|
|
|
nodeSelected(0);
|
2013-09-26 18:38:44 +02:00
|
|
|
connect(m_comboBox, SIGNAL(currentIndexChanged(int)),
|
|
|
|
this, SLOT(nodeSelected(int)));
|
|
|
|
|
|
|
|
fl->addRow(tr(".pro file:"), m_comboBox);
|
|
|
|
setTitle(tr("Select a .pro File"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChooseProFilePage::nodeSelected(int index)
|
|
|
|
{
|
|
|
|
Q_UNUSED(index)
|
2013-10-29 14:22:31 +01:00
|
|
|
m_wizard->setNode(static_cast<QmakeProFileNode *>(m_comboBox->itemData(m_comboBox->currentIndex()).value<void *>()));
|
2013-09-26 18:38:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// ChooseDirectoryPage
|
|
|
|
//
|
|
|
|
ChooseDirectoryPage::ChooseDirectoryPage(CreateAndroidManifestWizard *wizard)
|
|
|
|
: m_wizard(wizard), m_androidPackageSourceDir(0)
|
|
|
|
{
|
2013-10-16 11:02:37 +02:00
|
|
|
QString androidPackageDir = m_wizard->node()->singleVariableValue(QmakeProjectManager::AndroidPackageSourceDir);
|
2013-09-26 18:38:44 +02:00
|
|
|
|
|
|
|
QFormLayout *fl = new QFormLayout(this);
|
|
|
|
QLabel *label = new QLabel(this);
|
|
|
|
label->setWordWrap(true);
|
|
|
|
fl->addRow(label);
|
|
|
|
|
|
|
|
m_androidPackageSourceDir = new Utils::PathChooser(this);
|
|
|
|
m_androidPackageSourceDir->setExpectedKind(Utils::PathChooser::Directory);
|
|
|
|
fl->addRow(tr("Android package source directory:"), m_androidPackageSourceDir);
|
|
|
|
|
|
|
|
if (androidPackageDir.isEmpty()) {
|
2013-10-09 16:37:42 +02:00
|
|
|
label->setText(tr("Select the Android package source directory. "
|
|
|
|
"The files in the Android package source directory are copied to the build directory's "
|
|
|
|
"Android directory and the default files are overwritten."));
|
2013-09-26 18:38:44 +02:00
|
|
|
|
|
|
|
m_androidPackageSourceDir->setPath(QFileInfo(m_wizard->node()->path()).absolutePath().append(QLatin1String("/android")));
|
|
|
|
} else {
|
2013-10-09 16:37:42 +02:00
|
|
|
label->setText(tr("The Android manifest file will be created in the ANDROID_PACKAGE_SOURCE_DIR set in the .pro file."));
|
2013-09-26 18:38:44 +02:00
|
|
|
m_androidPackageSourceDir->setPath(androidPackageDir);
|
|
|
|
m_androidPackageSourceDir->setReadOnly(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_wizard->setDirectory(m_androidPackageSourceDir->path());
|
|
|
|
|
|
|
|
connect(m_androidPackageSourceDir, SIGNAL(pathChanged(QString)),
|
|
|
|
m_wizard, SLOT(setDirectory(QString)));
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// CreateAndroidManifestWizard
|
|
|
|
//
|
|
|
|
CreateAndroidManifestWizard::CreateAndroidManifestWizard(ProjectExplorer::Target *target)
|
|
|
|
: m_target(target), m_node(0)
|
|
|
|
{
|
|
|
|
setWindowTitle(tr("Create Android Manifest Wizard"));
|
|
|
|
|
2013-10-29 14:22:31 +01:00
|
|
|
QmakeProject *project = static_cast<QmakeProject *>(target->project());
|
|
|
|
QList<QmakeProFileNode *> nodes = project->applicationProFiles();
|
2013-09-26 18:38:44 +02:00
|
|
|
if (nodes.isEmpty()) {
|
|
|
|
// oh uhm can't create anything
|
|
|
|
addPage(new NoApplicationProFilePage(this));
|
|
|
|
} else if (nodes.size() == 1) {
|
|
|
|
setNode(nodes.first());
|
|
|
|
addPage(new ChooseDirectoryPage(this));
|
|
|
|
} else {
|
|
|
|
addPage(new ChooseProFilePage(this, nodes));
|
|
|
|
addPage(new ChooseDirectoryPage(this));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-29 14:22:31 +01:00
|
|
|
QmakeProjectManager::QmakeProFileNode *CreateAndroidManifestWizard::node() const
|
2013-09-26 18:38:44 +02:00
|
|
|
{
|
|
|
|
return m_node;
|
|
|
|
}
|
|
|
|
|
2013-10-29 14:22:31 +01:00
|
|
|
void CreateAndroidManifestWizard::setNode(QmakeProjectManager::QmakeProFileNode *node)
|
2013-09-26 18:38:44 +02:00
|
|
|
{
|
|
|
|
m_node = node;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CreateAndroidManifestWizard::setDirectory(const QString &directory)
|
|
|
|
{
|
|
|
|
m_directory = directory;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString CreateAndroidManifestWizard::sourceFileName() const
|
|
|
|
{
|
|
|
|
QString result;
|
|
|
|
QtSupport::BaseQtVersion *version = QtSupport::QtKitInformation::qtVersion(m_target->kit());
|
|
|
|
if (!version)
|
|
|
|
return result;
|
|
|
|
Utils::FileName srcPath
|
|
|
|
= Utils::FileName::fromString(version->qmakeProperty("QT_INSTALL_PREFIX"))
|
|
|
|
.appendPath(QLatin1String("src/android/java"));
|
|
|
|
srcPath.appendPath(QLatin1String("AndroidManifest.xml"));
|
|
|
|
return srcPath.toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CreateAndroidManifestWizard::createAndroidManifestFile()
|
|
|
|
{
|
|
|
|
if (m_directory.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
QDir dir;
|
|
|
|
if (!QFileInfo(m_directory).exists())
|
|
|
|
dir.mkpath(m_directory);
|
|
|
|
QString fileName = m_directory + QLatin1String("/AndroidManifest.xml");
|
|
|
|
if (QFileInfo(fileName).exists()) {
|
|
|
|
if (QMessageBox::question(this, tr("Overwrite AndroidManifest.xml"),
|
|
|
|
tr("Overwrite existing AndroidManifest.xml?"),
|
|
|
|
QMessageBox::Yes, QMessageBox::No)
|
|
|
|
== QMessageBox::Yes) {
|
|
|
|
if (!QFile(m_directory + QLatin1String("/AndroidManifest.xml")).remove()) {
|
|
|
|
QMessageBox::warning(this, tr("File Removal Error"),
|
|
|
|
tr("Could not remove file %1.").arg(fileName));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!QFile::copy(sourceFileName(), fileName)) {
|
|
|
|
QMessageBox::warning(this, tr("File Creation Error"),
|
|
|
|
tr("Could not create file %1.").arg(fileName));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-16 11:02:37 +02:00
|
|
|
if (m_node->singleVariableValue(QmakeProjectManager::AndroidPackageSourceDir).isEmpty()) {
|
2013-09-26 18:38:44 +02:00
|
|
|
// and now time for some magic
|
|
|
|
QString dir = QFileInfo(fileName).absolutePath();
|
|
|
|
QString value = QLatin1String("$$PWD/")
|
|
|
|
+ QDir(m_target->project()->projectDirectory()).relativeFilePath(dir);
|
|
|
|
bool result =
|
|
|
|
m_node->setProVariable(QLatin1String("ANDROID_PACKAGE_SOURCE_DIR"), value);
|
|
|
|
QStringList unChanged;
|
|
|
|
m_node->addFiles(QStringList(fileName), &unChanged);
|
|
|
|
|
|
|
|
if (result == false
|
|
|
|
|| !unChanged.isEmpty()) {
|
|
|
|
QMessageBox::warning(this, tr("Project File not Updated"),
|
|
|
|
tr("Could not update the .pro file %1.").arg(m_node->path()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Core::EditorManager::openEditor(fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CreateAndroidManifestWizard::accept()
|
|
|
|
{
|
|
|
|
createAndroidManifestFile();
|
|
|
|
Utils::Wizard::accept();
|
|
|
|
}
|