mirror of
https://github.com/KDE/konsole.git
synced 2026-05-08 22:53:06 -04:00
233 lines
9.0 KiB
C++
233 lines
9.0 KiB
C++
/*
|
|
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.
|
|
*/
|
|
|
|
// Own
|
|
#include "Application.h"
|
|
#include "MainWindow.h"
|
|
|
|
// Unix
|
|
#include <unistd.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
|
|
// KDE
|
|
#include <KAboutData>
|
|
#include <KCmdLineArgs>
|
|
#include <KLocale>
|
|
|
|
#define KONSOLE_VERSION "2.8.999"
|
|
|
|
using Konsole::Application;
|
|
|
|
// fill the KAboutData structure with information about contributors to Konsole.
|
|
void fillAboutData(KAboutData& aboutData);
|
|
|
|
// fill the KCmdLineOptions object with konsole specific options.
|
|
void fillCommandLineOptions(KCmdLineOptions& options);
|
|
|
|
// check and report whether this konsole instance should use a new konsole
|
|
// process, or re-use an existing konsole process.
|
|
bool shouldUseNewProcess();
|
|
|
|
// restore sessions saved by KDE.
|
|
void restoreSession(Application& app);
|
|
|
|
// ***
|
|
// Entry point into the Konsole terminal application.
|
|
// ***
|
|
extern "C" int KDE_EXPORT kdemain(int argc, char** argv)
|
|
{
|
|
KAboutData about("konsole", 0,
|
|
ki18n("Konsole"),
|
|
KONSOLE_VERSION,
|
|
ki18n("Terminal emulator"),
|
|
KAboutData::License_GPL_V2
|
|
);
|
|
fillAboutData(about);
|
|
|
|
KCmdLineArgs::init(argc, argv, &about);
|
|
KCmdLineOptions options;
|
|
fillCommandLineOptions(options);
|
|
KCmdLineArgs::addCmdLineOptions(options);
|
|
KUniqueApplication::addCmdLineOptions();
|
|
|
|
KUniqueApplication::StartFlags startFlags;
|
|
if (shouldUseNewProcess())
|
|
startFlags = KUniqueApplication::NonUniqueInstance;
|
|
|
|
// create a new application instance if there are no running Konsole
|
|
// instances, otherwise inform the existing Konsole process and exit
|
|
if (!KUniqueApplication::start(startFlags)) {
|
|
exit(0);
|
|
}
|
|
|
|
Application app;
|
|
|
|
// make sure the d&d popup menu provided by libkonq get translated.
|
|
KGlobal::locale()->insertCatalog("libkonq");
|
|
|
|
restoreSession(app);
|
|
return app.exec();
|
|
}
|
|
bool shouldUseNewProcess()
|
|
{
|
|
KCmdLineArgs* args = KCmdLineArgs::parsedArgs();
|
|
|
|
// the only way to create new tab is to reuse existing Konsole process.
|
|
if ( args->isSet("new-tab") ) {
|
|
return false;
|
|
}
|
|
|
|
// when starting Konsole from a terminal, a new process must be used
|
|
// so that the current environment is propagated into the shells of the new
|
|
// Konsole and any debug output or warnings from Konsole are written to
|
|
// the current terminal
|
|
bool hasControllingTTY = false ;
|
|
if ( open("/dev/tty", O_RDONLY) != -1 ) {
|
|
hasControllingTTY = true ;
|
|
}
|
|
|
|
return hasControllingTTY;
|
|
}
|
|
|
|
void fillCommandLineOptions(KCmdLineOptions& options)
|
|
{
|
|
options.add("profile <file>",
|
|
ki18n("Name of profile to use for new Konsole instance"));
|
|
options.add("list-profiles", ki18n("List the available profiles"));
|
|
options.add("background-mode",
|
|
ki18n("Start Konsole in the background and bring to the front"
|
|
" when Ctrl+Shift+F12 (by default) is pressed"));
|
|
options.add("new-tab",
|
|
ki18n("Create a new tab in an existing window rather than"
|
|
" creating a new window"));
|
|
options.add("tabs-from-file <file>",
|
|
ki18n("Create tabs as specified in given tabs configuration"
|
|
" file"));
|
|
options.add("workdir <dir>",
|
|
ki18n("Set the initial working directory of the new tab or"
|
|
" window to 'dir'"));
|
|
options.add("notransparency",
|
|
ki18n("Disable transparent backgrounds, even if the system"
|
|
" supports them."));
|
|
options.add("force-transparency",
|
|
ki18n("Try to enable transparency, even if the system does"
|
|
" not appear to support it."));
|
|
options.add("hold");
|
|
options.add("noclose",
|
|
ki18n("Do not close the initial session automatically when it"
|
|
" ends."));
|
|
options.add("p <property=value>",
|
|
ki18n("Change the value of a profile property."));
|
|
options.add("list-profile-properties",
|
|
ki18n("List all the profile properties names and their type"
|
|
" (for use with -p)"));
|
|
options.add("!e <cmd>", ki18n("Command to execute"));
|
|
options.add("+[args]", ki18n("Arguments passed to command"));
|
|
options.add("", ki18n("Use --nofork to run in the foreground (helpful"
|
|
" with the -e option)."));
|
|
}
|
|
|
|
void fillAboutData(KAboutData& aboutData)
|
|
{
|
|
aboutData.addAuthor(ki18n("Kurt Hindenburg"),
|
|
ki18n("General maintainer, bug fixes and general"
|
|
" improvements"),
|
|
"kurt.hindenburg@gmail.com");
|
|
aboutData.addAuthor(ki18n("Robert Knight"),
|
|
ki18n("Previous maintainer, ported to KDE4"),
|
|
"robertknight@gmail.com");
|
|
aboutData.addAuthor(ki18n("Lars Doelle"),
|
|
ki18n("Original author"),
|
|
"lars.doelle@on-line.de");
|
|
aboutData.addCredit(ki18n("Jekyll Wu"),
|
|
ki18n("Bug fixes and general improvements"),
|
|
"adaptee@gmail.com");
|
|
aboutData.addCredit(ki18n("Waldo Bastian"),
|
|
ki18n("Bug fixes and general improvements"),
|
|
"bastian@kde.org");
|
|
aboutData.addCredit(ki18n("Stephan Binner"),
|
|
ki18n("Bug fixes and general improvements"),
|
|
"binner@kde.org");
|
|
aboutData.addCredit(ki18n("Thomas Dreibholz"),
|
|
ki18n("General improvements"),
|
|
"dreibh@iem.uni-due.de");
|
|
aboutData.addCredit(ki18n("Chris Machemer"),
|
|
ki18n("Bug fixes"),
|
|
"machey@ceinetworks.com");
|
|
aboutData.addCredit(ki18n("Stephan Kulow"),
|
|
ki18n("Solaris support and history"),
|
|
"coolo@kde.org");
|
|
aboutData.addCredit(ki18n("Alexander Neundorf"),
|
|
ki18n("Bug fixes and improved startup performance"),
|
|
"neundorf@kde.org");
|
|
aboutData.addCredit(ki18n("Peter Silva"),
|
|
ki18n("Marking improvements"),
|
|
"Peter.A.Silva@gmail.com");
|
|
aboutData.addCredit(ki18n("Lotzi Boloni"),
|
|
ki18n("Embedded Konsole\n"
|
|
"Toolbar and session names"),
|
|
"boloni@cs.purdue.edu");
|
|
aboutData.addCredit(ki18n("David Faure"),
|
|
ki18n("Embedded Konsole\n"
|
|
"General improvements"),
|
|
"faure@kde.org");
|
|
aboutData.addCredit(ki18n("Antonio Larrosa"),
|
|
ki18n("Visual effects"),
|
|
"larrosa@kde.org");
|
|
aboutData.addCredit(ki18n("Matthias Ettrich"),
|
|
ki18n("Code from the kvt project\n"
|
|
"General improvements"),
|
|
"ettrich@kde.org");
|
|
aboutData.addCredit(ki18n("Warwick Allison"),
|
|
ki18n("Schema and text selection improvements"),
|
|
"warwick@troll.no");
|
|
aboutData.addCredit(ki18n("Dan Pilone"),
|
|
ki18n("SGI port"),
|
|
"pilone@slac.com");
|
|
aboutData.addCredit(ki18n("Kevin Street"),
|
|
ki18n("FreeBSD port"),
|
|
"street@iname.com");
|
|
aboutData.addCredit(ki18n("Sven Fischer"),
|
|
ki18n("Bug fixes"),
|
|
"herpes@kawo2.renditionwth-aachen.de");
|
|
aboutData.addCredit(ki18n("Dale M. Flaven"),
|
|
ki18n("Bug fixes"),
|
|
"dflaven@netport.com");
|
|
aboutData.addCredit(ki18n("Martin Jones"),
|
|
ki18n("Bug fixes"),
|
|
"mjones@powerup.com.au");
|
|
aboutData.addCredit(ki18n("Lars Knoll"),
|
|
ki18n("Bug fixes"),
|
|
"knoll@mpi-hd.mpg.de");
|
|
aboutData.addCredit(ki18n("Thanks to many others.\n"));
|
|
aboutData.setProgramIconName("utilities-terminal");
|
|
aboutData.setHomepage("http://konsole.kde.org");
|
|
}
|
|
|
|
void restoreSession(Application& app)
|
|
{
|
|
if (app.isSessionRestored()) {
|
|
int n = 1;
|
|
while (KMainWindow::canBeRestored(n))
|
|
app.newMainWindow()->restore(n++);
|
|
}
|
|
}
|
|
|