diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 4aed2c8219774f5d797760606b8489a92ddc5163 (patch) | |
tree | 3f8c130f7d269626bf6a9447407ef6c35954426a /kdepasswd/kdepasswd.cpp | |
download | tdebase-4aed2c8219774f5d797760606b8489a92ddc5163.tar.gz tdebase-4aed2c8219774f5d797760606b8489a92ddc5163.zip |
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/kdebase@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdepasswd/kdepasswd.cpp')
-rw-r--r-- | kdepasswd/kdepasswd.cpp | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/kdepasswd/kdepasswd.cpp b/kdepasswd/kdepasswd.cpp new file mode 100644 index 000000000..c76169508 --- /dev/null +++ b/kdepasswd/kdepasswd.cpp @@ -0,0 +1,79 @@ +/* vi: ts=8 sts=4 sw=4 + * + * $Id$ + * + * This file is part of the KDE project, module kdesu. + * Copyright (C) 2000 Geert Jansen <jansen@kde.org> + */ + +#include <config.h> + +#include <kuniqueapplication.h> +#include <klocale.h> +#include <kaboutdata.h> +#include <kcmdlineargs.h> +#include <kmessagebox.h> +#include <kuser.h> +#include <kdebug.h> + +#include "passwd.h" +#include "passwddlg.h" + +static KCmdLineOptions options[] = +{ + { "+[user]", I18N_NOOP("Change password of this user"), 0 }, + KCmdLineLastOption +}; + + +int main(int argc, char **argv) +{ + KAboutData aboutData("kdepasswd", I18N_NOOP("KDE passwd"), + VERSION, I18N_NOOP("Changes a UNIX password."), + KAboutData::License_Artistic, "Copyright (c) 2000 Geert Jansen"); + aboutData.addAuthor("Geert Jansen", I18N_NOOP("Maintainer"), + "jansen@kde.org", "http://www.stack.nl/~geertj/"); + + KCmdLineArgs::init(argc, argv, &aboutData); + KCmdLineArgs::addCmdLineOptions(options); + KUniqueApplication::addCmdLineOptions(); + + + if (!KUniqueApplication::start()) { + kdDebug() << "kdepasswd is already running" << endl; + return 0; + } + + KUniqueApplication app; + + KUser ku; + QCString user; + bool bRoot = ku.isSuperUser(); + KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + + if (args->count()) + user = args->arg(0); + + /* You must be able to run "kdepasswd loginName" */ + if ( !user.isEmpty() && user!=KUser().loginName().utf8() && !bRoot) + { + KMessageBox::sorry(0, i18n("You need to be root to change the password of other users.")); + return 0; + } + + QCString oldpass; + if (!bRoot) + { + int result = KDEpasswd1Dialog::getPassword(oldpass); + if (result != KDEpasswd1Dialog::Accepted) + return 0; + } + + KDEpasswd2Dialog *dlg = new KDEpasswd2Dialog(oldpass, user); + + + dlg->exec(); + + return 0; +} + |