/* Copyright (C) 2006-2007 by Robert Knight 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" // X11 #ifdef Q_WS_X11 #include #include #endif // KDE #include #include #include #include // bump the version to 2.0 before the KDE 4 release #define KONSOLE_VERSION "1.9.2" using namespace Konsole; // fills the KAboutData structure with information about contributors to // Konsole void fillAboutData(KAboutData& aboutData); void fillCommandLineOptions(KCmdLineOptions& options); // *** // // Entry point into the Konsole terminal application. // // If another Konsole instance // is already executing then the existing instance is asked to create a new main // window and the current process returns immediately. // // *** 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(); // create a new application instance if there are no running Konsole instances, // otherwise inform the existing Konsole instance and exit if ( !KUniqueApplication::start() ) { exit(0); } qDebug() << "Have compositing: " << KWindowSystem::compositingActive(); Application app; return app.exec(); } void fillCommandLineOptions(KCmdLineOptions& options) { options.add("profile \\", ki18n("Name of profile to use for new Konsole instance")); options.add("list-profiles", ki18n("List the available profiles")); // TODO - Update this when F12 is no longer hard coded options.add("background-mode", ki18n("Start Konsole in the background" " and bring to the front when the F12" " key is pressed")); options.add("new-tab",ki18n("Create a new tab in an existing window rather than creating a new window")); // TODO - Document this option more clearly options.add("p \\",ki18n("Change the value of a profile property.")); options.add("!e \\",ki18n("Command to execute")); options.add("+[args]",ki18n("Arguments passed to command")); } void fillAboutData(KAboutData& aboutData) { aboutData.addAuthor(ki18n("Robert Knight"),ki18n("Maintainer"), "robertknight@gmail.com"); aboutData.addAuthor(ki18n("Lars Doelle"),ki18n("Author"), "lars.doelle@on-line.de"); aboutData.addCredit(ki18n("Kurt V. Hindenburg"), ki18n("Bug fixes and general improvements"), "kurt.hindenburg@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("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.silva@videotron.Character"); 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"), "David.Faure@insa-lyon.foregroundColorr"); 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")); } #if 0 // code taken from the Qt 4 graphics dojo examples #ifdef Q_WS_X11 void getDisplayInformation(Display*& display , Visual*& visual , Colormap& colormap) { display = XOpenDisplay(0); // open default display if (!display) { qWarning("Cannot connect to the X server"); exit(1); } int screen = DefaultScreen(display); int eventBase, errorBase; if (XRenderQueryExtension(display, &eventBase, &errorBase)) { int nvi; XVisualInfo templ; templ.screen = screen; templ.depth = 32; templ.c_class = TrueColor; XVisualInfo *xvi = XGetVisualInfo(display, VisualScreenMask | VisualDepthMask | VisualClassMask, &templ, &nvi); for (int i = 0; i < nvi; ++i) { XRenderPictFormat* format = XRenderFindVisualFormat(display, xvi[i].visual); if (format->type == PictTypeDirect && format->direct.alphaMask) { visual = xvi[i].visual; colormap = XCreateColormap(display, RootWindow(display, screen), visual, AllocNone); // found ARGB visual break; } } } } #endif #endif