You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.3 KiB
55 lines
1.3 KiB
/*
|
|
* Copyright (C) 2003 Julian Rockey <kde@jrockey.com>
|
|
*/
|
|
|
|
#include "kdedcoptest.h"
|
|
#include <kapplication.h>
|
|
#include <kaboutdata.h>
|
|
#include <kcmdlineargs.h>
|
|
#include <klocale.h>
|
|
|
|
static const char *description =
|
|
I18N_NOOP("A TDE KPart Application");
|
|
|
|
static const char *version = "0.1";
|
|
|
|
static KCmdLineOptions options[] =
|
|
{
|
|
// { "+[URL]", I18N_NOOP( "Document to open" ), 0 },
|
|
{ 0, 0, 0 }
|
|
};
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
KAboutData about("kdedcoptest", I18N_NOOP("TDEDcopTest"), version, description,
|
|
KAboutData::License_GPL, "(C) 2003 Julian Rockey", 0, 0, "kde@jrockey.com");
|
|
about.addAuthor( "Julian Rockey", 0, "kde@jrockey.com" );
|
|
TDECmdLineArgs::init(argc, argv, &about);
|
|
TDECmdLineArgs::addCmdLineOptions( options );
|
|
KApplication app;
|
|
KDEDcopTest *mainWin = 0;
|
|
|
|
if (app.isRestored())
|
|
{
|
|
RESTORE(KDEDcopTest);
|
|
}
|
|
else
|
|
{
|
|
// no session.. just start up normally
|
|
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
|
|
|
|
// TODO: do something with the command line args here
|
|
|
|
mainWin = new KDEDcopTest();
|
|
app.setMainWidget( mainWin );
|
|
mainWin->show();
|
|
|
|
args->clear();
|
|
}
|
|
|
|
int ret = app.exec();
|
|
|
|
delete mainWin;
|
|
return ret;
|
|
}
|