diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bcb704366cb5e333a626c18c308c7e0448a8e69f (patch) | |
tree | f0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /ksirc/ksirc.cpp | |
download | tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksirc/ksirc.cpp')
-rw-r--r-- | ksirc/ksirc.cpp | 151 |
1 files changed, 151 insertions, 0 deletions
diff --git a/ksirc/ksirc.cpp b/ksirc/ksirc.cpp new file mode 100644 index 00000000..eddb450a --- /dev/null +++ b/ksirc/ksirc.cpp @@ -0,0 +1,151 @@ +/************************************************************************* + + Main KSirc start + + $$Id$$ + + Main start file that defines 3 global vars, etc + +*************************************************************************/ + +/* + * Needed items + * 4. Send a /quit and/or kill dsirc on exit + * */ + +#include <stdlib.h> + +#include <qsessionmanager.h> + +#include <kuniqueapplication.h> +#include <kaboutdata.h> +#include <kcmdlineargs.h> +#include <klocale.h> +#include <kconfig.h> +#include <kdebug.h> + +//#include "cdate.h" +#include "ksopts.h" +#include "servercontroller.h" +#include "version.h" + +static const char description[] = + I18N_NOOP("KDE IRC client"); + +//QDict<KSircTopLevel> TopList; +//QDict<KSircMessageReceiver> TopList; + +class KCmdLineOptions options[] = +{ + { "nick <nickname>", I18N_NOOP( "Nickname to use" ), 0 } , + { "server <server>", I18N_NOOP( "Server to connect to on startup" ), 0 }, + { "channel <#channel>", I18N_NOOP( "Channel to connect to on startup" ), 0 }, + { "o", 0, 0 }, + { "noautoconnect", I18N_NOOP( "Do not autoconnect on startup" ), 0 }, + KCmdLineLastOption +}; + +class KSircSessionManaged : public KSessionManaged +{ +public: + KSircSessionManaged() {} + + virtual bool commitData( QSessionManager &sm ) + { + servercontroller *controller = servercontroller::self(); + if ( !controller || !sm.allowsInteraction() ) return true; + + // if the controller is hidden KMWSessionManaged won't send the fake close event. + // we want it in any way however. + if ( controller->isHidden() ) { + QCloseEvent e; + QApplication::sendEvent( controller, &e ); + } + + return true; + } +}; + +extern "C" KDE_EXPORT int kdemain( int argc, char ** argv ) +{ + KAboutData aboutData( "ksirc", I18N_NOOP("KSirc"), + KSIRC_VERSION, description, KAboutData::License_Artistic, + I18N_NOOP("(c) 1997-2002, The KSirc Developers")); + aboutData.addAuthor("Andrew Stanley-Jones",I18N_NOOP("Original Author"), "[email protected]"); + aboutData.addAuthor("Waldo Bastian",0, "[email protected]"); + aboutData.addAuthor("Carsten Pfeiffer",0, "[email protected]"); + aboutData.addAuthor("Malte Starostik",0, "[email protected]"); + aboutData.addAuthor("Daniel Molkentin",0, "[email protected]"); + aboutData.addAuthor("Simon Hausmann",0, "[email protected]"); + aboutData.addAuthor("Alyssa Mejawohld", I18N_NOOP("Icons Author"), "[email protected]"); + KCmdLineArgs::init( argc, argv, &aboutData ); + KCmdLineArgs::addCmdLineOptions( options ); + KUniqueApplication::addCmdLineOptions(); + + if (!KUniqueApplication::start()) { + exit(0); + } + + // Start the KDE application + KUniqueApplication app; + + KSircSessionManaged sm; + + // Options + KSOptions opts; + opts.load(); + + servercontroller *sc = new servercontroller(0, "servercontroller"); + app.setMainWidget(sc); + + if (KMainWindow::canBeRestored(1)) + { + sc->restore(1, false ); + } + else + { // no Session management -> care about docking, geometry, etc. + + if( !opts.geometry.isEmpty() ) + sc->setGeometry( opts.geometry ); + + KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + + QCString nickName = args->getOption( "nick" ); + QCString server = args->getOption( "server" ); + QCString channel = args->getOption( "channel" ); + + if ( !nickName.isEmpty() ) + ksopts->server["global"].nick = nickName; + + if ( !server.isEmpty() ) { + QString ser = QString::fromLocal8Bit( server ); + QString port = "6667"; + if(ser.contains(":")){ + port = ser.section(":", 1, 1); + ser = ser.section(":", 0, 0); + } + KSircServer kss(ser, port, "", "", false); + sc->new_ksircprocess( kss ); + if ( !channel.isEmpty() ) { + QStringList channels = QStringList::split( ',', QString::fromLocal8Bit( channel ) ); + QStringList::ConstIterator it = channels.begin(); + QStringList::ConstIterator end = channels.end(); + for ( ; it != end; ++it ) { + sc->new_toplevel( KSircChannel(ser, *it), true ); + } + } + } + else { + if(args->isSet("autoconnect") == TRUE){ + sc->start_autoconnect(); + } + } + + args->clear(); + } + + return app.exec(); +} + +/* vim: et sw=4 + */ |