diff options
Diffstat (limited to 'kgpg/main.cpp')
-rw-r--r-- | kgpg/main.cpp | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/kgpg/main.cpp b/kgpg/main.cpp new file mode 100644 index 0000000..622739f --- /dev/null +++ b/kgpg/main.cpp @@ -0,0 +1,79 @@ +/*************************************************************************** + main.cpp - description + ------------------- + begin : Mon Jul 8 2002 + copyright : (C) 2002 by Jean-Baptiste Mardelle + email : bj@altern.org + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#include <qstring.h> +#include <kmessagebox.h> + + +#include <kuniqueapplication.h> +#include <dcopclient.h> +#include <kaboutdata.h> +#include <kcmdlineargs.h> +#include <klocale.h> +#include "kgpg.h" + +static const char description[] = + I18N_NOOP("Kgpg - simple gui for gpg\n\nKgpg was designed to make gpg very easy to use.\nI tried to make it as secure as possible.\nHope you enjoy it."); + +static const char version[] = "1.2.2"; + +static KCmdLineOptions options[] = + { + { "e", I18N_NOOP("Encrypt file"), 0 }, + { "k", I18N_NOOP("Open key manager"), 0 }, + { "s", I18N_NOOP("Show encrypted file"), 0 }, + { "S", I18N_NOOP("Sign file"), 0 }, + { "V", I18N_NOOP("Verify signature"), 0 }, + { "X", I18N_NOOP("Shred file"), 0 }, + { "+[File]", I18N_NOOP("File to open"), 0 }, + KCmdLineLastOption + // INSERT YOUR COMMANDLINE OPTIONS HERE + }; + +int main(int argc, char *argv[]) +{ + + KAboutData about("kgpg", I18N_NOOP("KGpg"), version, description, + KAboutData::License_GPL, "(C) 2003 Jean-Baptiste Mardelle"); + about.addAuthor( "Jean-Baptiste Mardelle", 0, "bj@altern.org" ); + KCmdLineArgs::init(argc, argv, &about); + KCmdLineArgs::addCmdLineOptions(options); + KUniqueApplication::addCmdLineOptions(); + + + //KMessageBox::sorry(0,"nombre: "+QString::number(i)); + + if (!KUniqueApplication::start()) + return 0; + + //KgpgAppletApp *app; + KApplication *app; + app=new KgpgAppletApp; + return app->exec(); + + /* + + KUniqueApplication app; + + // register ourselves as a dcop client + //app.dcopClient()->registerAs(app.name(), false); + + + kgpgapplet widget;// = new kgpgapplet("kgpg"); + widget.show(); + return app.exec();*/ +} |