2011-02-17 14:47:54 +01:00
|
|
|
#ifndef KWALLET_KEYCHAIN_H
|
|
|
|
#define KWALLET_KEYCHAIN_H
|
|
|
|
|
|
|
|
#include "keychain.h"
|
|
|
|
|
|
|
|
#include "kwallet.h"
|
|
|
|
|
|
|
|
class KWalletKeychain : public Keychain {
|
|
|
|
public:
|
2011-02-18 21:14:01 +01:00
|
|
|
KWalletKeychain();
|
|
|
|
virtual ~KWalletKeychain();
|
2011-02-17 14:47:54 +01:00
|
|
|
|
2011-02-18 21:14:01 +01:00
|
|
|
virtual const QString getPassword(const QString& account);
|
|
|
|
virtual bool setPassword(const QString& account, const QString& password);
|
2011-02-17 14:47:54 +01:00
|
|
|
|
2011-02-18 21:14:01 +01:00
|
|
|
virtual bool isAvailable();
|
2011-02-17 14:47:54 +01:00
|
|
|
|
2011-02-18 21:14:01 +01:00
|
|
|
virtual const QString& implementationName() const { return kImplementationName; }
|
2011-02-17 14:47:54 +01:00
|
|
|
|
2011-02-18 21:14:01 +01:00
|
|
|
static const QString kImplementationName;
|
2011-02-17 14:47:54 +01:00
|
|
|
private:
|
2011-02-18 21:14:01 +01:00
|
|
|
org::kde::KWallet kwallet_;
|
|
|
|
QString wallet_name_;
|
|
|
|
int handle_;
|
2011-02-17 14:47:54 +01:00
|
|
|
|
2011-02-18 21:14:01 +01:00
|
|
|
static const QString kKWalletServiceName;
|
|
|
|
static const QString kKWalletPath;
|
|
|
|
static const QString kKWalletFolder;
|
2011-02-17 14:47:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|