You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
159 lines
4.7 KiB
159 lines
4.7 KiB
/* |
|
This source file is part of Konsole, a terminal emulator. |
|
|
|
Copyright 2006-2008 by Robert Knight <robertknight@gmail.com> |
|
|
|
This program is free software; you can redistribute it and/or modify |
|
it under the terms of the GNU General Public License as published by |
|
the Free Software Foundation; either version 2 of the License, or |
|
(at your option) any later version. |
|
|
|
This program is distributed in the hope that it will be useful, |
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
GNU General Public License for more details. |
|
|
|
You should have received a copy of the GNU General Public License |
|
along with this program; if not, write to the Free Software |
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
02110-1301 USA. |
|
*/ |
|
|
|
#ifndef SESSIONMANAGER_H |
|
#define SESSIONMANAGER_H |
|
|
|
// Qt |
|
#include <QHash> |
|
#include <QList> |
|
|
|
// Konsole |
|
#include "Profile.h" |
|
|
|
class KConfig; |
|
|
|
namespace Konsole { |
|
class Session; |
|
|
|
/** |
|
* Manages running terminal sessions. |
|
*/ |
|
class KONSOLEPRIVATE_EXPORT SessionManager : public QObject |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
/** |
|
* Constructs a new session manager and loads information about the available |
|
* profiles. |
|
*/ |
|
SessionManager(); |
|
|
|
/** |
|
* Destroys the SessionManager. All running sessions should be closed |
|
* (via closeAllSessions()) before the SessionManager is destroyed. |
|
*/ |
|
~SessionManager() override; |
|
|
|
/** |
|
* Returns the session manager instance. |
|
*/ |
|
static SessionManager *instance(); |
|
|
|
/** Kill all running sessions. */ |
|
void closeAllSessions(); |
|
|
|
/** |
|
* Creates a new session using the settings specified by the specified |
|
* profile. |
|
* |
|
* The new session has no views associated with it. A new TerminalDisplay view |
|
* must be created in order to display the output from the terminal session and |
|
* send keyboard or mouse input to it. |
|
* |
|
* @param profile A profile containing the settings for the new session. If @p profile |
|
* is null the default profile (see ProfileManager::defaultProfile()) will be used. |
|
*/ |
|
Session *createSession(Profile::Ptr profile = Profile::Ptr()); |
|
|
|
/** Sets the profile associated with a session. */ |
|
void setSessionProfile(Session *session, Profile::Ptr profile); |
|
|
|
/** Returns the profile associated with a session. */ |
|
Profile::Ptr sessionProfile(Session *session) const; |
|
|
|
/** |
|
* Returns a list of active sessions. |
|
*/ |
|
const QList<Session *> sessions() const; |
|
|
|
// System session management |
|
void saveSessions(KConfig *config); |
|
void restoreSessions(KConfig *config); |
|
int getRestoreId(Session *session); |
|
Session *idToSession(int id); |
|
bool isClosingAllSessions() const; |
|
|
|
Q_SIGNALS: |
|
/** |
|
* Emitted when a session's settings are updated to match |
|
* its current profile. |
|
*/ |
|
void sessionUpdated(Session *session); |
|
|
|
protected Q_SLOTS: |
|
/** |
|
* Called to inform the manager that a session has finished executing. |
|
* |
|
* @param session The Session which has finished executing. |
|
*/ |
|
void sessionTerminated(Session *session); |
|
|
|
private Q_SLOTS: |
|
void sessionProfileCommandReceived(const QString &text); |
|
|
|
void profileChanged(const Profile::Ptr &profile); |
|
|
|
private: |
|
Q_DISABLE_COPY(SessionManager) |
|
|
|
// applies updates to a profile |
|
// to all sessions currently using that profile |
|
// if modifiedPropertiesOnly is true, only properties which |
|
// are set in the profile @p key are updated |
|
void applyProfile(const Profile::Ptr &profile, bool modifiedPropertiesOnly); |
|
|
|
// applies updates to the profile @p profile to the session @p session |
|
// if modifiedPropertiesOnly is true, only properties which |
|
// are set in @p profile are update ( ie. properties for which profile->isPropertySet(<property>) |
|
// returns true ) |
|
void applyProfile(Session *session, const Profile::Ptr &profile, bool modifiedPropertiesOnly); |
|
|
|
QList<Session *> _sessions; // list of running sessions |
|
|
|
QHash<Session *, Profile::Ptr> _sessionProfiles; |
|
QHash<Session *, Profile::Ptr> _sessionRuntimeProfiles; |
|
QHash<Session *, int> _restoreMapping; |
|
bool _isClosingAllSessions; |
|
}; |
|
|
|
/** Utility class to simplify code in SessionManager::applyProfile(). */ |
|
class ShouldApplyProperty |
|
{ |
|
public: |
|
ShouldApplyProperty(const Profile::Ptr &profile, bool modifiedOnly) : |
|
_profile(profile), |
|
_modifiedPropertiesOnly(modifiedOnly) |
|
{ |
|
} |
|
|
|
bool shouldApply(Profile::Property property) const |
|
{ |
|
return !_modifiedPropertiesOnly || _profile->isPropertySet(property); |
|
} |
|
|
|
private: |
|
const Profile::Ptr _profile; |
|
bool _modifiedPropertiesOnly; |
|
}; |
|
} |
|
#endif //SESSIONMANAGER_H
|
|
|