From 47d455dd55be855e4cc691c32f687f723d9247ee Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kpdf/shell/main.cpp | 82 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 kpdf/shell/main.cpp (limited to 'kpdf/shell/main.cpp') diff --git a/kpdf/shell/main.cpp b/kpdf/shell/main.cpp new file mode 100644 index 00000000..20aa3eee --- /dev/null +++ b/kpdf/shell/main.cpp @@ -0,0 +1,82 @@ +/*************************************************************************** + * Copyright (C) 2002 by Wilco Greven * + * Copyright (C) 2003 by Christophe Devriese * + * * + * Copyright (C) 2003 by Laurent Montel * + * Copyright (C) 2003-2004 by Albert Astals Cid * + * Copyright (C) 2004 by Andy Goossens * + * * + * 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. * + ***************************************************************************/ + +#include "shell.h" +#include +#include +#include +#include + +static const char description[] = +I18N_NOOP("kpdf, a kde pdf viewer based on xpdf"); + +static const char version[] = "0.5.10"; + +static KCmdLineOptions options[] = +{ + { "+[URL]", I18N_NOOP("Document to open"), 0 }, + KCmdLineLastOption +}; + +int main(int argc, char** argv) +{ + KAboutData about( + "kpdf", + I18N_NOOP("KPDF"), + version, + description, + KAboutData::License_GPL, + "(C) 2002 Wilco Greven, Christophe Devriese\n(C) 2004-2005 Albert Astals Cid, Enrico Ros"); + + about.addAuthor("Wilco Greven", 0, "greven@kde.org"); + about.addAuthor("Christophe Devriese", 0, "oelewapperke@oelewapperke.org"); + about.addAuthor("Laurent Montel", 0, "montel@kde.org"); + about.addAuthor("Albert Astals Cid", I18N_NOOP("Current mantainer"), "astals11@terra.es"); + about.addAuthor("Enrico Ros", 0, "eros.kde@email.it"); + + about.addCredit("Derek Noonburg", I18N_NOOP("Xpdf author"), 0, "http://www.foolabs.com/xpdf/"); + about.addCredit("Marco Martin", I18N_NOOP("Icon"), 0, "m4rt@libero.it"); + + KCmdLineArgs::init(argc, argv, &about); + KCmdLineArgs::addCmdLineOptions( options ); + KApplication app; + + // see if we are starting with session management + if (app.isRestored()) + { + RESTORE(KPDF::Shell); + } else { + // no session.. just start up normally + KCmdLineArgs* args = KCmdLineArgs::parsedArgs(); + + if (args->count() == 0) + { + KPDF::Shell* widget = new KPDF::Shell; + widget->show(); + } + else + { + for (int i = 0; i < args->count(); ++i) + { + KPDF::Shell* widget = new KPDF::Shell(args->url(i)); + widget->show(); + } + } + args->clear(); + } + + return app.exec(); +} + +// vim:ts=2:sw=2:tw=78:et -- cgit v1.2.1