forked from nemomobile/mlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmdataaccess.h
85 lines (75 loc) · 2.44 KB
/
mdataaccess.h
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/***************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation ([email protected])
**
** This file is part of libmeegotouch.
**
** If you have questions regarding the use of this file, please contact
** Nokia at [email protected].
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation
** and appearing in the file LICENSE.LGPL included in the packaging
** of this file.
**
****************************************************************************/
#ifndef MDATAACCESS_H
#define MDATAACCESS_H
#include "mlite-global.h"
#include <QObject>
#include <QString>
#include <QVariant>
#include <QStringList>
/*!
* \brief Interface for reading and storing key values.
*
* Users can read and write key values using this interface. The user
* also get notified when changes happen in the key values.
*/
class MLITESHARED_EXPORT MDataAccess : public QObject
{
Q_OBJECT
public:
/*!
* Destroys the MDataAccess.
*/
virtual ~MDataAccess() {}
/*!
* Returns a value for a key.
* If the key doesn't exist, an invalid (QVariant::Invalid) value is returned.
* \param key the key.
* \return the requested value.
*/
virtual QVariant value(const QString &key) const = 0;
/*!
* Sets a new value for a key. If the key isn't found, nothing
* happens and \c false is returned.
* \param key the key to be changed.
* \param value the new value.
* \return \c true if setting was successful, \c false otherwise
*/
virtual bool setValue(const QString &key, const QVariant &value) = 0;
/*!
* Returns a list of all specified keys.
*/
virtual QStringList allKeys() const = 0;
/*!
* Returns \c true if there exists a key called \a key and \c false otherwise.
*
* \param key the key to test
* \return a boolean value telling if the key exists or not
* \sa value() and setValue().
*/
virtual bool contains(const QString &key) const = 0;
Q_SIGNALS:
/*!
* A signal that is emitted when a key value changes.
* \param key the key that changed.
* \param value the new value.
*/
void valueChanged(const QString &key, const QVariant &value);
};
#endif // MDATAACCESS_H