From 0119dade1a6cd4807b64b66f629553054b874ed0 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Mon, 27 Jun 2011 10:11:17 +0200 Subject: RemoteLinux: Rename some classes and the associated files. Also make them external. Change-Id: I21a74c1f7124646b5507ffd2ee0e24c7c60eca97 Reviewed-on: http://codereview.qt.nokia.com/749 Reviewed-by: Qt Sanity Bot Reviewed-by: Christian Kandeler --- .../remotelinux/deployablefilesperprofile.h | 131 +++++++++++++++++++++ 1 file changed, 131 insertions(+) create mode 100644 src/plugins/remotelinux/deployablefilesperprofile.h (limited to 'src/plugins/remotelinux/deployablefilesperprofile.h') diff --git a/src/plugins/remotelinux/deployablefilesperprofile.h b/src/plugins/remotelinux/deployablefilesperprofile.h new file mode 100644 index 0000000000..4c96e72e08 --- /dev/null +++ b/src/plugins/remotelinux/deployablefilesperprofile.h @@ -0,0 +1,131 @@ +/************************************************************************** +** +** This file is part of Qt Creator +** +** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies). +** +** Contact: Nokia Corporation (info@qt.nokia.com) +** +** +** GNU Lesser General Public License Usage +** +** 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, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** Other Usage +** +** Alternatively, this file may be used in accordance with the terms and +** conditions contained in a signed written agreement between you and Nokia. +** +** If you have questions regarding the use of this file, please contact +** Nokia at info@qt.nokia.com. +** +**************************************************************************/ + +#ifndef DEPLOYABLEFILESPERPROFILE_H +#define DEPLOYABLEFILESPERPROFILE_H + +#include "deployablefile.h" + +#include "remotelinux_export.h" + +#include + +#include +#include +#include +#include +#include + +namespace QtSupport { +class BaseQtVersion; +} +namespace Qt4ProjectManager { +class Qt4BaseTarget; +} + +namespace RemoteLinux { + +class REMOTELINUX_EXPORT DeployableFilesPerProFile : public QAbstractTableModel +{ + Q_OBJECT +public: + enum ProFileUpdateSetting { + UpdateProFile, DontUpdateProFile, AskToUpdateProFile + }; + + DeployableFilesPerProFile(const Qt4ProjectManager::Qt4BaseTarget *target, + const Qt4ProjectManager::Qt4ProFileNode *proFileNode, ProFileUpdateSetting updateSetting, + QObject *parent); + ~DeployableFilesPerProFile(); + + virtual int rowCount(const QModelIndex &parent = QModelIndex()) const; + + DeployableFile deployableAt(int row) const; + bool isModified() const { return m_modified; } + void setUnModified() { m_modified = false; } + const QtSupport::BaseQtVersion *qtVersion() const; + QString localExecutableFilePath() const; + QString remoteExecutableFilePath() const; + QString projectName() const { return m_projectName; } + QString projectDir() const; + QString proFilePath() const { return m_proFilePath; } + Qt4ProjectManager::Qt4ProjectType projectType() const { return m_projectType; } + bool isApplicationProject() const { return m_projectType == Qt4ProjectManager::ApplicationTemplate; } + QString applicationName() const { return m_targetInfo.target; } + bool hasTargetPath() const { return m_hasTargetPath; } + bool canAddDesktopFile() const { return isApplicationProject() && !hasDesktopFile(); } + QString localDesktopFilePath() const; + bool hasDesktopFile() const { return !localDesktopFilePath().isEmpty(); } + bool addDesktopFile(); + bool canAddIcon() const { return isApplicationProject() && remoteIconFilePath().isEmpty(); } + bool addIcon(const QString &fileName); + QString remoteIconFilePath() const; + ProFileUpdateSetting proFileUpdateSetting() const { + return m_proFileUpdateSetting; + } + void setProFileUpdateSetting(ProFileUpdateSetting updateSetting); + +private: + virtual int columnCount(const QModelIndex &parent = QModelIndex()) const; + virtual QVariant data(const QModelIndex &index, + int role = Qt::DisplayRole) const; + virtual QVariant headerData(int section, Qt::Orientation orientation, + int role = Qt::DisplayRole) const; + virtual Qt::ItemFlags flags(const QModelIndex &index) const; + virtual bool setData(const QModelIndex &index, const QVariant &value, + int role = Qt::EditRole); + + bool isEditable(const QModelIndex &index) const; + bool buildModel(); + bool addLinesToProFile(const QStringList &lines); + QString proFileScope() const; + QString installPrefix() const; + QString remoteIconDir() const; + QStringList localLibraryFilePaths() const; + + const Qt4ProjectManager::Qt4BaseTarget * const m_target; + const Qt4ProjectManager::Qt4ProjectType m_projectType; + const QString m_proFilePath; + const QString m_projectName; + const Qt4ProjectManager::TargetInformation m_targetInfo; + const Qt4ProjectManager::InstallsList m_installsList; + const Qt4ProjectManager::ProjectVersion m_projectVersion; + const QStringList m_config; + QList m_deployables; + mutable bool m_modified; + ProFileUpdateSetting m_proFileUpdateSetting; + bool m_hasTargetPath; +}; + +} // namespace RemoteLinux + +#endif // DEPLOYABLEFILESPERPROFILE_H -- cgit v1.2.1