2016-08-12 13:38:53 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** 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 The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "sessionmodel.h"
|
|
|
|
|
#include "session.h"
|
|
|
|
|
|
|
|
|
|
#include "sessiondialog.h"
|
|
|
|
|
|
|
|
|
|
#include <utils/algorithm.h>
|
|
|
|
|
#include <utils/fileutils.h>
|
|
|
|
|
#include <utils/stringutils.h>
|
|
|
|
|
|
|
|
|
|
#include <QFileInfo>
|
|
|
|
|
#include <QDir>
|
|
|
|
|
|
|
|
|
|
namespace ProjectExplorer {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
SessionModel::SessionModel(QObject *parent)
|
|
|
|
|
: QAbstractListModel(parent)
|
|
|
|
|
{
|
|
|
|
|
connect(SessionManager::instance(), &SessionManager::sessionLoaded,
|
|
|
|
|
this, &SessionModel::resetSessions);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int SessionModel::rowCount(const QModelIndex &) const
|
|
|
|
|
{
|
|
|
|
|
return SessionManager::sessions().count();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList pathsToBaseNames(const QStringList &paths)
|
|
|
|
|
{
|
|
|
|
|
return Utils::transform(paths, [](const QString &path) {
|
|
|
|
|
return QFileInfo(path).completeBaseName();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList pathsWithTildeHomePath(const QStringList &paths)
|
|
|
|
|
{
|
|
|
|
|
return Utils::transform(paths, [](const QString &path) {
|
|
|
|
|
return Utils::withTildeHomePath(QDir::toNativeSeparators(path));
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariant SessionModel::data(const QModelIndex &index, int role) const
|
|
|
|
|
{
|
2016-08-12 13:41:48 +02:00
|
|
|
QVariant result;
|
|
|
|
|
if (index.isValid()) {
|
2016-08-12 13:38:53 +02:00
|
|
|
QString sessionName = SessionManager::sessions().at(index.row());
|
2016-08-12 13:41:48 +02:00
|
|
|
|
|
|
|
|
switch (role) {
|
|
|
|
|
case Qt::DisplayRole:
|
|
|
|
|
switch (index.column()) {
|
|
|
|
|
case 0: result = sessionName;
|
|
|
|
|
break;
|
|
|
|
|
} // switch (section)
|
|
|
|
|
break;
|
|
|
|
|
case DefaultSessionRole:
|
|
|
|
|
result = SessionManager::isDefaultSession(sessionName);
|
|
|
|
|
break;
|
|
|
|
|
case LastSessionRole:
|
|
|
|
|
result = SessionManager::lastSession() == sessionName;
|
|
|
|
|
break;
|
|
|
|
|
case ActiveSessionRole:
|
|
|
|
|
result = SessionManager::activeSession() == sessionName;
|
|
|
|
|
break;
|
|
|
|
|
case ProjectsPathRole:
|
|
|
|
|
result = pathsWithTildeHomePath(SessionManager::projectsForSessionName(sessionName));
|
|
|
|
|
break;
|
|
|
|
|
case ProjectsDisplayRole:
|
|
|
|
|
result = pathsToBaseNames(SessionManager::projectsForSessionName(sessionName));
|
|
|
|
|
break;
|
|
|
|
|
} // switch (role)
|
2016-08-12 13:38:53 +02:00
|
|
|
}
|
2016-08-12 13:41:48 +02:00
|
|
|
|
|
|
|
|
return result;
|
2016-08-12 13:38:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QHash<int, QByteArray> SessionModel::roleNames() const
|
|
|
|
|
{
|
|
|
|
|
static QHash<int, QByteArray> extraRoles{
|
|
|
|
|
{Qt::DisplayRole, "sessionName"},
|
|
|
|
|
{DefaultSessionRole, "defaultSession"},
|
|
|
|
|
{ActiveSessionRole, "activeSession"},
|
|
|
|
|
{LastSessionRole, "lastSession"},
|
|
|
|
|
{ProjectsPathRole, "projectsPath"},
|
|
|
|
|
{ProjectsDisplayRole, "projectsName"}
|
|
|
|
|
};
|
|
|
|
|
return QAbstractListModel::roleNames().unite(extraRoles);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionModel::isDefaultVirgin() const
|
|
|
|
|
{
|
|
|
|
|
return SessionManager::isDefaultVirgin();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionModel::resetSessions()
|
|
|
|
|
{
|
|
|
|
|
beginResetModel();
|
|
|
|
|
endResetModel();
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-01 14:57:32 +02:00
|
|
|
void SessionModel::newSession()
|
2016-08-12 13:38:53 +02:00
|
|
|
{
|
2016-09-01 14:57:32 +02:00
|
|
|
runNewSessionDialog("", &SessionManager::createSession);
|
|
|
|
|
}
|
2016-08-12 13:38:53 +02:00
|
|
|
|
2016-09-01 14:57:32 +02:00
|
|
|
void SessionModel::cloneSession(const QString &session)
|
|
|
|
|
{
|
|
|
|
|
runNewSessionDialog(session + " (2)", [session](const QString &newName) {
|
|
|
|
|
SessionManager::cloneSession(session, newName);
|
|
|
|
|
});
|
2016-08-12 13:38:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionModel::deleteSession(const QString &session)
|
|
|
|
|
{
|
|
|
|
|
if (!SessionManager::confirmSessionDelete(session))
|
|
|
|
|
return;
|
|
|
|
|
beginResetModel();
|
|
|
|
|
SessionManager::deleteSession(session);
|
|
|
|
|
endResetModel();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionModel::renameSession(const QString &session)
|
2016-09-01 14:57:32 +02:00
|
|
|
{
|
|
|
|
|
runNewSessionDialog(session, [session](const QString &newName) {
|
|
|
|
|
SessionManager::cloneSession(session, newName);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionModel::switchToSession(const QString &session)
|
|
|
|
|
{
|
|
|
|
|
SessionManager::loadSession(session);
|
|
|
|
|
emit sessionSwitched();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionModel::runNewSessionDialog(const QString &suggestedName, std::function<void(const QString &)> createSession)
|
2016-08-12 13:38:53 +02:00
|
|
|
{
|
|
|
|
|
SessionNameInputDialog newSessionInputDialog(SessionManager::sessions(), nullptr);
|
|
|
|
|
newSessionInputDialog.setWindowTitle(tr("New Session Name"));
|
2016-09-01 14:57:32 +02:00
|
|
|
newSessionInputDialog.setValue(suggestedName);
|
2016-08-12 13:38:53 +02:00
|
|
|
|
|
|
|
|
if (newSessionInputDialog.exec() == QDialog::Accepted) {
|
|
|
|
|
QString newSession = newSessionInputDialog.value();
|
|
|
|
|
if (newSession.isEmpty() || SessionManager::sessions().contains(newSession))
|
|
|
|
|
return;
|
|
|
|
|
beginResetModel();
|
2016-09-01 14:57:32 +02:00
|
|
|
createSession(newSession);
|
2016-08-12 13:38:53 +02:00
|
|
|
endResetModel();
|
|
|
|
|
|
|
|
|
|
if (newSessionInputDialog.isSwitchToRequested())
|
2016-09-01 14:57:32 +02:00
|
|
|
switchToSession(newSession);
|
2016-08-12 13:38:53 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ProjectExplorer
|