blob: 9673bff4fa9a8a759d9a736a21c8a90435393e2f (
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
|
/***************************************************************************
* Copyright (C) 2012 by Peter Penz <[email protected]> *
* Copyright (C) 2013 by Vishesh Handa <[email protected]> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
***************************************************************************/
#ifndef KBALOO_ROLESPROVIDER_H
#define KBALOO_ROLESPROVIDER_H
#include "dolphin_export.h"
#include <QHash>
#include <QSet>
#include <QVariant>
namespace Baloo {
class File;
}
/**
* @brief Allows accessing metadata of a file by providing KFileItemModel roles.
*
* Is a helper class for KFileItemModelRolesUpdater to retrieve roles that
* are only accessible with Baloo.
*/
class DOLPHIN_EXPORT KBalooRolesProvider
{
public:
static KBalooRolesProvider& instance();
virtual ~KBalooRolesProvider();
/**
* @return Roles that can be provided by KBalooRolesProvider.
*/
QSet<QByteArray> roles() const;
/**
* @return Values for the roles \a roles that can be determined from the file
* with the URL \a url.
*/
QHash<QByteArray, QVariant> roleValues(const Baloo::File& file,
const QSet<QByteArray>& roles) const;
QByteArray roleForProperty(const QString& property) const;
protected:
KBalooRolesProvider();
private:
/**
* @return User visible string for the given tag-values.
*/
QString tagsFromValues(const QStringList& values) const;
/**
* @return User visible string for the EXIF-orientation property
* which can have the values 0 to 8.
* (see http://sylvana.net/jpegcrop/exif_orientation.html)
*/
QString orientationFromValue(int value) const;
/**
* @return Duration in the format HH::MM::SS for the value given
* in seconds.
*/
QString durationFromValue(int value) const;
private:
QSet<QByteArray> m_roles;
QHash<QString, QByteArray> m_roleForProperty;
friend class KBalooRolesProviderSingleton;
};
#endif
|