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.
38 lines
979 B
38 lines
979 B
#include <tdeaboutdata.h>
|
|
#include <tdecmdlineargs.h>
|
|
#include <tdelocale.h>
|
|
#include <tdeapplication.h>
|
|
|
|
#include "designer.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
TDEAboutData aboutData(
|
|
"atlantikdesigner",
|
|
I18N_NOOP("Atlantik Designer"), "1.1.0",
|
|
I18N_NOOP("Atlantik gameboard designer"),
|
|
TDEAboutData::License_GPL,
|
|
I18N_NOOP("(c) 2002 Jason Katz-Brown"),
|
|
0,
|
|
"http://www.unixcode.org/atlantik/"
|
|
);
|
|
|
|
aboutData.addAuthor("Jason Katz-Brown", I18N_NOOP("main author"), "jason@katzbrown.com", "http://katzbrown.com/");
|
|
aboutData.addAuthor("Rob Kaper", I18N_NOOP("libatlantikui"), "cap@capsi.com", "http://capsi.com/");
|
|
|
|
TDECmdLineArgs::init(argc, argv, &aboutData);
|
|
|
|
TDEApplication tdeapplication;
|
|
|
|
if (tdeapplication.isRestored())
|
|
RESTORE(AtlanticDesigner)
|
|
else
|
|
{
|
|
AtlanticDesigner *designer = new AtlanticDesigner;
|
|
designer->show();
|
|
}
|
|
|
|
return tdeapplication.exec();
|
|
}
|
|
|