summaryrefslogtreecommitdiffstats
path: root/kshowmail/tdewalletaccess.h
blob: 66994085dbf50f1c4a96eeb7c264370b0baf3535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// C++ Interface: tdewalletaccess
//
// Author: Ulrich Weigelt <ulrich.weigelt@gmx.de>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef TDEWALLETACCESS_H
#define TDEWALLETACCESS_H

//TQt headers
#include <ntqstring.h>

//KDE headers
#include <tdewallet.h>
#include <tdemessagebox.h>
#include <kdebug.h>
#include <tdelocale.h>

/**
 * @brief Provides routines to save and read passwords using TDEWallet.
 * @author Ulrich Weigelt <ulrich.weigelt@gmx.de>
 */
namespace TDEWalletAccess
{

  /**
   * Saves the given password into TDEWallet.
   * @param account account name
   * @param password the password
   * @return TRUE - password successfully saved
   * @return FALSE - password could not be saved
   */
  bool savePassword( const TQString& account, const TQString& password );

  /**
   * Returns the password of the given account.
   * @param account account name
   * @return the password or TQString::null, if the sought password is not stored in TDEWallet.
   */
  TQString getPassword( const TQString& account );
}

#endif