dolphin/kdepasswd/passwd.h
Urs Wolfer ad44b09500 * port K3URLDrag
* port Q3IconView
* fix icon
* do not link anymore against kde3support lib
* cleanup code

svn path=/trunk/KDE/kdebase/apps/; revision=752228
2007-12-23 22:58:09 +00:00

42 lines
868 B
C++

/* vi: ts=8 sts=4 sw=4
*
* This file is part of the KDE project, module kdesu.
* Copyright (C) 2000 Geert Jansen <jansen@kde.org>
*/
#ifndef PASSWD_H
#define PASSWD_H
#include <QtCore/QByteRef>
#include <kdesu/process.h>
/**
* A C++ API to passwd.
*/
class PasswdProcess
: public KDESu::PtyProcess
{
public:
PasswdProcess(const QByteArray &user = QByteArray());
~PasswdProcess();
enum Errors { PasswdNotFound=1, PasswordIncorrect, PasswordNotGood };
int checkCurrent(const char *oldpass);
int exec(const char *oldpass, const char *newpass, int check=0);
QByteArray error() { return m_Error; }
private:
bool isPrompt(const QByteArray &line, const char *word=0L);
int ConversePasswd(const char *oldpass, const char *newpass,
int check);
QByteArray m_User, m_Error;
bool bOtherUser;
};
#endif // PASSWD_H