blob: dc55f854c9d8c28cacc6919e91d8aa44e486e032 (
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
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
86
87
88
89
90
91
92
93
94
95
96
97
|
/*
* This file is part of the Polkit-qt project
* Copyright (C) 2009 Radek Novacek <rnovacek@redhat.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef POLKITQT1_DETAILS_H
#define POLKITQT1_DETAILS_H
#include "polkitqt1-export.h"
#include <QtCore/QObject>
#include <QtCore/QSharedData>
typedef struct _PolkitDetails PolkitDetails;
/**
* \namespace PolkitQt1 PolkitQt
*
* \brief Namespace wrapping Polkit-Qt classes
*
* This namespace wraps all Polkit-Qt classes.
*/
namespace PolkitQt1
{
/**
* \class Details polkitqt1-details.h Details
* \author Radek Novacek <rnovacek@redhat.com>
*
* \brief Class used for passing details around.
*/
class POLKITQT1_EXPORT Details
{
public:
/**
* Creates a new Details object
*/
Details();
/**
* Creates Details object from PolkitDetails
*
* \warning Use this only if you are completely aware of what are you doing!
*
* \param pkDetails PolkitDetails object
*/
explicit Details(PolkitDetails *pkDetails);
~Details();
Details &operator=(const Details &other);
/**
* Get the value for \p key
*
* \param key A key
* \return Value of the key \p key, otherwise empty QString.
*/
QString lookup(const QString &key) const;
/**
* Inserts key \p key with value \p value.
*
* \param key A key.
* \param value A value.
*/
void insert(const QString &key, const QString &value);
/**
* Gets a list of all keys.
*
* \return List of all keys.
*/
QStringList keys() const;
private:
class Data;
QExplicitlySharedDataPointer< Data > d;
};
}
#endif // DETAILS_H
|