aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/android/androidextralibrarylistmodel.h
diff options
context:
space:
mode:
authorBogDan Vatra <bogdan@kde.org>2014-06-25 15:42:11 +0200
committerDaniel Teske <daniel.teske@digia.com>2014-07-21 12:41:28 +0200
commit64e5a543a845d8d800504206a42c58d4e28ac89c (patch)
tree205faff83b9fb890c65309fe4c7cc7878826f515 /src/plugins/android/androidextralibrarylistmodel.h
parent4657ac7452662d19823412e82d599bf4079a3c4d (diff)
Move qmake specific part to qmake plugin, generalize android support
- Split up androiddeployqt into two steps: One building the apk, and one deploying it to the device. - The build apk step base class AndroidBuildApkStep is ihneritaged by the qmake specific class QmakeAndroidBuildApkStep. - The deployment step is still called androiddeployqt - Move all qmake specific code to the qmakeprojectmanager plguin - Flip the depencency between the android and qmake plugin, now the qmake plugin depends on the android plugin, implementing a interface the android plugin provides. - Note: This removes the debug deployment for now. Change-Id: I1c386640159ed14b637668abde8eb3b9009ab803 Reviewed-by: BogDan Vatra <bogdan@kde.org>
Diffstat (limited to 'src/plugins/android/androidextralibrarylistmodel.h')
-rw-r--r--src/plugins/android/androidextralibrarylistmodel.h77
1 files changed, 0 insertions, 77 deletions
diff --git a/src/plugins/android/androidextralibrarylistmodel.h b/src/plugins/android/androidextralibrarylistmodel.h
deleted file mode 100644
index 86e82672ea..0000000000
--- a/src/plugins/android/androidextralibrarylistmodel.h
+++ /dev/null
@@ -1,77 +0,0 @@
-/**************************************************************************
-**
-** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com>
-** Copyright (C) 2014 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 ANDROIDEXTRALIBRARYLISTMODEL_H
-#define ANDROIDEXTRALIBRARYLISTMODEL_H
-
-#include <QAbstractItemModel>
-#include <QStringList>
-
-namespace QmakeProjectManager {
-class QmakeProject;
-class QmakeProFileNode;
-}
-
-namespace Android {
-namespace Internal {
-class AndroidExtraLibraryListModel : public QAbstractItemModel
-{
- Q_OBJECT
-public:
- explicit AndroidExtraLibraryListModel(QmakeProjectManager::QmakeProject *project,
- QObject *parent = 0);
-
- QModelIndex index(int row, int column, const QModelIndex &parent) const;
- QModelIndex parent(const QModelIndex &child) const;
- int rowCount(const QModelIndex &parent) const;
- int columnCount(const QModelIndex &parent) const;
- QVariant data(const QModelIndex &index, int role) const;
-
- void removeEntries(QModelIndexList list);
- void addEntries(const QStringList &list);
-
- bool isEnabled() const;
-
-signals:
- void enabledChanged(bool);
-
-private slots:
- void proFileUpdated(QmakeProjectManager::QmakeProFileNode *node, bool success, bool parseInProgress);
-
-private:
- QmakeProjectManager::QmakeProject *m_project;
- QStringList m_entries;
- QString m_scope;
-};
-
-} // namespace Internal
-} // namespace Android
-
-#endif // ANDROIDEXTRALIBRARYLISTMODEL_H