From 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 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/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- wizards/main.cpp | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 wizards/main.cpp (limited to 'wizards/main.cpp') diff --git a/wizards/main.cpp b/wizards/main.cpp new file mode 100644 index 000000000..e93a2936c --- /dev/null +++ b/wizards/main.cpp @@ -0,0 +1,40 @@ +#include +#include +#include +#include +#include + +#include "groupwarewizard.h" + +static const KCmdLineOptions options[] = +{ + { "serverType ", "The server type", 0 }, + KCmdLineLastOption +}; + +int main( int argc, char **argv ) +{ + KLocale::setMainCatalogue( "kdepimwizards" ); + + KAboutData aboutData( "groupwarewizard", + I18N_NOOP( "KDE-PIM Groupware Configuration Wizard" ), "0.1" ); + KCmdLineArgs::init( argc, argv, &aboutData ); + KCmdLineArgs::addCmdLineOptions( options ); + + KApplication app; + + KGlobal::locale()->insertCatalogue( "libkdepim" ); + + KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + + QString serverType; + if ( args->isSet( "serverType" ) ) + serverType = args->getOption( "serverType" ); + + GroupwareWizard wizard( 0 ); + app.setMainWidget( &wizard ); + + wizard.show(); + + app.exec(); +} -- cgit v1.2.1