summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/deployablefilesperprofile.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2011-06-27 10:11:17 +0200
committerChristian Kandeler <christian.kandeler@nokia.com>2011-06-27 10:45:30 +0200
commit0119dade1a6cd4807b64b66f629553054b874ed0 (patch)
treedfbb0a71f4fd9ce02ba5a4079fcc001cac9aba62 /src/plugins/remotelinux/deployablefilesperprofile.h
parent90ee1cc1c92e066678bdef5386a3c3bb856e0e71 (diff)
downloadqt-creator-0119dade1a6cd4807b64b66f629553054b874ed0.tar.gz
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 <qt_sanity_bot@ovi.com> Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/deployablefilesperprofile.h')
-rw-r--r--src/plugins/remotelinux/deployablefilesperprofile.h131
1 files changed, 131 insertions, 0 deletions
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 <qt4projectmanager/qt4nodes.h>
+
+#include <QtCore/QAbstractTableModel>
+#include <QtCore/QHash>
+#include <QtCore/QList>
+#include <QtCore/QScopedPointer>
+#include <QtCore/QString>
+
+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<DeployableFile> m_deployables;
+ mutable bool m_modified;
+ ProFileUpdateSetting m_proFileUpdateSetting;
+ bool m_hasTargetPath;
+};
+
+} // namespace RemoteLinux
+
+#endif // DEPLOYABLEFILESPERPROFILE_H