2002-09-02 20:21:47 +00:00
|
|
|
#include "kpdf_shell.h"
|
2002-08-30 09:14:01 +00:00
|
|
|
#include <kapplication.h>
|
|
|
|
#include <kaboutdata.h>
|
|
|
|
#include <kcmdlineargs.h>
|
|
|
|
#include <klocale.h>
|
|
|
|
|
2004-02-06 23:46:21 +00:00
|
|
|
static const char description[] =
|
2003-08-15 00:55:25 +00:00
|
|
|
I18N_NOOP("kpdf, a kde pdf viewer based on xpdf");
|
2002-08-30 09:14:01 +00:00
|
|
|
|
2004-02-06 23:46:21 +00:00
|
|
|
static const char version[] = "v0.3";
|
2002-08-30 09:14:01 +00:00
|
|
|
|
|
|
|
static KCmdLineOptions options[] =
|
|
|
|
{
|
|
|
|
{ "+[URL]", I18N_NOOP("Document to open."), 0 },
|
2003-09-14 19:04:36 +00:00
|
|
|
KCmdLineLastOption
|
2002-08-30 09:14:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2003-08-15 00:55:25 +00:00
|
|
|
KAboutData about(
|
|
|
|
"kpdf",
|
|
|
|
I18N_NOOP("KPDF"),
|
|
|
|
version,
|
|
|
|
description,
|
|
|
|
KAboutData::License_GPL,
|
2003-11-09 22:20:29 +00:00
|
|
|
"(C) 2002 Wilco Greven, Christophe Devriese");
|
2003-08-15 00:55:25 +00:00
|
|
|
|
|
|
|
about.addAuthor("Wilco Greven", 0, "greven@kde.org");
|
|
|
|
about.addAuthor("Christophe Devriese", 0, "oelewapperke@oelewapperke.org");
|
2003-09-14 19:04:36 +00:00
|
|
|
about.addAuthor("Laurent Montel", 0, "montel@kde.org");
|
2003-08-15 00:55:25 +00:00
|
|
|
|
|
|
|
KCmdLineArgs::init(argc, argv, &about);
|
|
|
|
KCmdLineArgs::addCmdLineOptions( options );
|
|
|
|
KApplication app;
|
|
|
|
|
|
|
|
// see if we are starting with session management
|
|
|
|
if (app.isRestored())
|
2002-08-30 09:14:01 +00:00
|
|
|
{
|
2003-08-15 00:55:25 +00:00
|
|
|
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;
|
|
|
|
widget->show();
|
2003-09-14 17:44:18 +00:00
|
|
|
widget->openURL(args->url(i));
|
2003-08-15 00:55:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
args->clear();
|
2002-08-30 09:14:01 +00:00
|
|
|
}
|
|
|
|
|
2003-08-15 00:55:25 +00:00
|
|
|
return app.exec();
|
2002-08-30 09:14:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// vim:ts=2:sw=2:tw=78:et
|