mirror of
https://github.com/KDE/konsole.git
synced 2026-05-03 20:26:45 -04:00
161 lines
4.6 KiB
C++
161 lines
4.6 KiB
C++
/*
|
|
Copyright (C) 2006-2007 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.
|
|
*/
|
|
|
|
#include "kdebug.h"
|
|
|
|
// KDE
|
|
#include <KAction>
|
|
#include <KCmdLineArgs>
|
|
#include <KWindowSystem>
|
|
|
|
// Konsole
|
|
#include "ColorScheme.h"
|
|
#include "ProfileList.h"
|
|
#include "SessionManager.h"
|
|
#include "KeyTrans.h"
|
|
#include "KeyboardTranslator.h"
|
|
#include "Application.h"
|
|
#include "MainWindow.h"
|
|
#include "Session.h"
|
|
#include "TerminalDisplay.h"
|
|
#include "ViewManager.h"
|
|
|
|
using namespace Konsole;
|
|
|
|
Application::Application()
|
|
: _sessionList(0)
|
|
, _backgroundInstance(0)
|
|
{
|
|
// create session manager
|
|
SessionManager::setInstance( new SessionManager() );
|
|
|
|
// create color scheme manager
|
|
ColorSchemeManager::setInstance( new ColorSchemeManager() );
|
|
|
|
// new keyboard translator manager
|
|
KeyboardTranslatorManager::setInstance( new KeyboardTranslatorManager() );
|
|
|
|
// old keyboard translator manager
|
|
KeyTrans::loadAll();
|
|
|
|
// check for compositing functionality
|
|
TerminalDisplay::setTransparencyEnabled( KWindowSystem::compositingActive() );
|
|
};
|
|
|
|
Application* Application::self()
|
|
{
|
|
return (Application*)KApp;
|
|
}
|
|
|
|
MainWindow* Application::newMainWindow()
|
|
{
|
|
MainWindow* window = new MainWindow();
|
|
window->setSessionList( new ProfileList(window) );
|
|
|
|
connect( window , SIGNAL(requestSession(const QString&,ViewManager*)),
|
|
this , SLOT(createSession(const QString&,ViewManager*)));
|
|
connect( window->viewManager() , SIGNAL(viewDetached(Session*)) , this , SLOT(detachView(Session*)) );
|
|
|
|
return window;
|
|
}
|
|
|
|
int Application::newInstance()
|
|
{
|
|
KCmdLineArgs* args = KCmdLineArgs::parsedArgs();
|
|
|
|
// create a new window and session to run in it
|
|
MainWindow* window = newMainWindow();
|
|
createSession( QString() , window->viewManager() );
|
|
|
|
// if the background-mode argument is supplied, start the background session
|
|
// ( or bring to the front if it already exists )
|
|
if ( args->isSet("background-mode") )
|
|
{
|
|
if ( _backgroundInstance )
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
KAction* action = new KAction(window);
|
|
KShortcut shortcut = action->shortcut();
|
|
action->setObjectName("Konsole Background Mode");
|
|
//TODO - Customisable key sequence for this
|
|
action->setGlobalShortcut( KShortcut(QKeySequence(Qt::Key_F12)) );
|
|
|
|
_backgroundInstance = window;
|
|
|
|
connect( action , SIGNAL(triggered()) , this , SLOT(toggleBackgroundInstance()) );
|
|
}
|
|
else
|
|
{
|
|
window->show();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void Application::toggleBackgroundInstance()
|
|
{
|
|
Q_ASSERT( _backgroundInstance );
|
|
|
|
if ( !_backgroundInstance->isVisible() )
|
|
{
|
|
_backgroundInstance->show();
|
|
// ensure that the active terminal display has the focus.
|
|
// without this, an odd problem occurred where the focus widgetwould change
|
|
// each time the background instance was shown
|
|
_backgroundInstance->viewManager()->activeView()->setFocus();
|
|
}
|
|
else
|
|
{
|
|
_backgroundInstance->hide();
|
|
}
|
|
}
|
|
|
|
Application::~Application()
|
|
{
|
|
delete SessionManager::instance();
|
|
delete ColorSchemeManager::instance();
|
|
delete KeyboardTranslatorManager::instance();
|
|
|
|
SessionManager::setInstance(0);
|
|
ColorSchemeManager::setInstance(0);
|
|
KeyboardTranslatorManager::setInstance(0);
|
|
}
|
|
|
|
void Application::detachView(Session* session)
|
|
{
|
|
MainWindow* window = newMainWindow();
|
|
window->viewManager()->createView(session);
|
|
window->show();
|
|
}
|
|
|
|
void Application::createSession(const QString& key , ViewManager* view)
|
|
{
|
|
Session* session = SessionManager::instance()->createSession(key);
|
|
|
|
// create view before starting the session process so that the session doesn't suffer
|
|
// a change in terminal size right after the session starts. some applications such as GNU Screen
|
|
// and Midnight Commander don't like this happening
|
|
view->createView(session);
|
|
session->run();
|
|
}
|
|
|
|
#include "Application.moc"
|