diff options
Diffstat (limited to 'kmenuedit/main.cpp')
-rw-r--r-- | kmenuedit/main.cpp | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/kmenuedit/main.cpp b/kmenuedit/main.cpp new file mode 100644 index 000000000..b78a71ef0 --- /dev/null +++ b/kmenuedit/main.cpp @@ -0,0 +1,88 @@ +/* + * Copyright (C) 2000 Matthias Elter <[email protected]> + * Copyright (C) 2001-2002 Raffaele Sandrini <[email protected]) + * + * 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. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#include <unistd.h> + +#include <kuniqueapplication.h> +#include <tdelocale.h> +#include <tdecmdlineargs.h> +#include <tdeaboutdata.h> + +#include "kmenuedit.h" +#include "khotkeys.h" + +static const char description[] = I18N_NOOP("TDE menu editor"); +static const char version[] = "0.7"; + +static const TDECmdLineOptions options[] = +{ + { "+[menu]", I18N_NOOP("Sub menu to pre-select"), 0 }, + { "+[menu-id]", I18N_NOOP("Menu entry to pre-select"), 0 }, + TDECmdLineLastOption +}; + +static KMenuEdit *menuEdit = 0; + +class KMenuApplication : public KUniqueApplication +{ +public: + KMenuApplication() { } + virtual ~KMenuApplication() { KHotKeys::cleanup(); } + + virtual int newInstance() + { + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); + if (args->count() > 0) + { + menuEdit->selectMenu(TQString::fromLocal8Bit(args->arg(0))); + if (args->count() > 1) + { + menuEdit->selectMenuEntry(TQString::fromLocal8Bit(args->arg(1))); + } + } + return KUniqueApplication::newInstance(); + } +}; + + +extern "C" int KDE_EXPORT kdemain( int argc, char **argv ) +{ + TDEAboutData aboutData("kmenuedit", I18N_NOOP("TDE Menu Editor"), + version, description, TDEAboutData::License_GPL, + "(C) 2000-2003, Waldo Bastian, Raffaele Sandrini, Matthias Elter"); + aboutData.addAuthor("Waldo Bastian", I18N_NOOP("Maintainer"), "[email protected]"); + aboutData.addAuthor("Raffaele Sandrini", I18N_NOOP("Previous Maintainer"), "[email protected]"); + aboutData.addAuthor("Matthias Elter", I18N_NOOP("Original Author"), "[email protected]"); + + TDECmdLineArgs::init( argc, argv, &aboutData ); + KUniqueApplication::addCmdLineOptions(); + TDECmdLineArgs::addCmdLineOptions( options ); + + if (!KUniqueApplication::start()) + return 1; + + KMenuApplication app; + + menuEdit = new KMenuEdit(false); + menuEdit->show(); + + app.setMainWidget(menuEdit); + return app.exec(); +} |