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.
|
|
|
|
|
|
|
#include <kapplication.h>
|
|
|
|
#include <kaboutdata.h>
|
|
|
|
#include <kcmdlineargs.h>
|
|
|
|
#include <klocale.h>
|
|
|
|
#include "mainviewimp.h"
|
|
|
|
|
|
|
|
static const char description[] = I18N_NOOP("A TDE Application");
|
|
|
|
|
|
|
|
static const char version[] = "%{VERSION}";
|
|
|
|
|
|
|
|
static KCmdLineOptions options[] =
|
|
|
|
{
|
|
|
|
{ "+[URL]", I18N_NOOP( "Document to open" ), 0 },
|
|
|
|
KCmdLineLastOption
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
KAboutData about("%{APPNAME}", I18N_NOOP("%{APPNAME}"), version, description,
|
|
|
|
KAboutData::License_%{LICENSE}, "(C) 2004 %{AUTHOR}", 0, 0, "%{EMAIL}");
|
|
|
|
about.addAuthor( "%{AUTHOR}", 0, "%{EMAIL}" );
|
|
|
|
TDECmdLineArgs::init(argc, argv, &about);
|
|
|
|
TDECmdLineArgs::addCmdLineOptions(options);
|
|
|
|
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
|
|
|
|
TDEApplication app;
|
|
|
|
MainViewImp *widget = new MainViewImp;
|
|
|
|
app.setMainWidget(widget);
|
|
|
|
widget->show();
|
|
|
|
return app.exec();
|
|
|
|
}
|
|
|
|
|