2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#ifndef SESSION_H
|
|
|
|
|
#define SESSION_H
|
|
|
|
|
|
|
|
|
|
#include "projectexplorer_export.h"
|
|
|
|
|
|
2012-02-13 13:29:58 +01:00
|
|
|
#include <utils/persistentsettings.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QHash>
|
|
|
|
|
#include <QString>
|
|
|
|
|
#include <QStringList>
|
|
|
|
|
#include <QMap>
|
|
|
|
|
#include <QFutureInterface>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-09-29 11:39:55 +02:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QAbstractItemModel;
|
2010-11-01 11:18:27 +01:00
|
|
|
class QTimer;
|
2009-09-29 11:39:55 +02:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
namespace Core {
|
|
|
|
|
class IMode;
|
|
|
|
|
class IEditor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace ProjectExplorer {
|
|
|
|
|
|
|
|
|
|
class Project;
|
|
|
|
|
class Node;
|
|
|
|
|
class SessionNode;
|
|
|
|
|
|
2009-01-20 17:14:00 +01:00
|
|
|
class PROJECTEXPLORER_EXPORT SessionManager : public QObject
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2009-01-20 17:14:00 +01:00
|
|
|
explicit SessionManager(QObject *parent = 0);
|
2008-12-02 12:01:29 +01:00
|
|
|
~SessionManager();
|
|
|
|
|
|
2014-10-09 16:46:13 +02:00
|
|
|
static SessionManager *instance();
|
2013-09-05 11:46:07 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
// higher level session management
|
2013-09-05 11:46:07 +02:00
|
|
|
static QString activeSession();
|
|
|
|
|
static QString lastSession();
|
|
|
|
|
static QStringList sessions();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static bool createSession(const QString &session);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static bool confirmSessionDelete(const QString &session);
|
|
|
|
|
static bool deleteSession(const QString &session);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static bool cloneSession(const QString &original, const QString &clone);
|
|
|
|
|
static bool renameSession(const QString &original, const QString &newName);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static bool loadSession(const QString &session);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static bool save();
|
|
|
|
|
static void closeAllProjects();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static void addProject(Project *project);
|
|
|
|
|
static void addProjects(const QList<Project*> &projects);
|
|
|
|
|
static void removeProject(Project *project);
|
|
|
|
|
static void removeProjects(QList<Project *> remove);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static void setStartupProject(Project *startupProject);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static QList<Project *> dependencies(const Project *project);
|
|
|
|
|
static bool hasDependency(const Project *project, const Project *depProject);
|
|
|
|
|
static bool canAddDependency(const Project *project, const Project *depProject);
|
|
|
|
|
static bool addDependency(Project *project, Project *depProject);
|
|
|
|
|
static void removeDependency(Project *project, Project *depProject);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static Utils::FileName sessionNameToFileName(const QString &session);
|
|
|
|
|
static Project *startupProject();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static const QList<Project *> &projects();
|
|
|
|
|
static bool hasProjects();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static bool isDefaultVirgin();
|
|
|
|
|
static bool isDefaultSession(const QString &session);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
// Let other plugins store persistent values within the session file
|
2013-09-05 11:46:07 +02:00
|
|
|
static void setValue(const QString &name, const QVariant &value);
|
|
|
|
|
static QVariant value(const QString &name);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
// NBS rewrite projectOrder (dependency management)
|
2013-09-05 11:46:07 +02:00
|
|
|
static QList<Project *> projectOrder(Project *project = 0);
|
|
|
|
|
|
|
|
|
|
static SessionNode *sessionNode();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2014-10-13 22:37:28 +03:00
|
|
|
static Project *projectForNode(Node *node);
|
2015-02-02 00:37:38 +02:00
|
|
|
static QList<Node *> nodesForFile(const Utils::FileName &fileName);
|
|
|
|
|
static Node *nodeForFile(const Utils::FileName &fileName);
|
|
|
|
|
static Project *projectForFile(const Utils::FileName &fileName);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static QStringList projectsForSessionName(const QString &session);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static void reportProjectLoadingProgress();
|
|
|
|
|
static bool loadingSession();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
void projectAdded(ProjectExplorer::Project *project);
|
|
|
|
|
void singleProjectAdded(ProjectExplorer::Project *project);
|
|
|
|
|
void aboutToRemoveProject(ProjectExplorer::Project *project);
|
2012-04-16 19:18:26 +04:00
|
|
|
void projectDisplayNameChanged(ProjectExplorer::Project *project);
|
2008-12-02 12:01:29 +01:00
|
|
|
void projectRemoved(ProjectExplorer::Project *project);
|
|
|
|
|
|
|
|
|
|
void startupProjectChanged(ProjectExplorer::Project *project);
|
|
|
|
|
|
2012-02-10 12:46:33 +01:00
|
|
|
void aboutToUnloadSession(QString sessionName);
|
2011-11-09 17:03:00 +01:00
|
|
|
void aboutToLoadSession(QString sessionName);
|
2012-02-10 12:46:33 +01:00
|
|
|
void sessionLoaded(QString sessionName);
|
2008-12-02 12:01:29 +01:00
|
|
|
void aboutToSaveSession();
|
2009-08-06 15:31:32 +02:00
|
|
|
void dependencyChanged(ProjectExplorer::Project *a, ProjectExplorer::Project *b);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
private slots:
|
2013-09-05 11:46:07 +02:00
|
|
|
static void saveActiveMode(Core::IMode *mode);
|
2015-02-23 14:06:58 +01:00
|
|
|
void clearProjectFileCache();
|
2013-09-05 11:46:07 +02:00
|
|
|
static void configureEditor(Core::IEditor *editor, const QString &fileName);
|
|
|
|
|
static void markSessionFileDirty(bool makeDefaultVirginDirty = true);
|
2015-02-23 14:06:58 +01:00
|
|
|
static void handleProjectDisplayNameChanged();
|
2014-11-04 17:40:29 +01:00
|
|
|
private:
|
|
|
|
|
static void configureEditors(Project *project);
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace ProjectExplorer
|
|
|
|
|
|
|
|
|
|
#endif // SESSION_H
|