]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/kitemviews/private/kbaloorolesprovider.h
Add clang-format and format code as in Frameworks
[dolphin.git] / src / kitemviews / private / kbaloorolesprovider.h
index a9bd2e8ef335f50bcaba1d990beba352ab505b2c..5ff33e1c61147a0ded36b7b98278078dbfdbebcf 100644 (file)
@@ -1,22 +1,9 @@
-/***************************************************************************
- *   Copyright (C) 2012 by Peter Penz <peter.penz19@gmail.com>             *
- *   Copyright (C) 2013 by Vishesh Handa <me@vhanda.in>                    *
- *                                                                         *
- *   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            *
- ***************************************************************************/
+/*
+ * SPDX-FileCopyrightText: 2012 Peter Penz <peter.penz19@gmail.com>
+ * SPDX-FileCopyrightText: 2013 Vishesh Handa <me@vhanda.in>
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
 
 #ifndef KBALOO_ROLESPROVIDER_H
 #define KBALOO_ROLESPROVIDER_H
 #include <QHash>
 #include <QSet>
 #include <QVariant>
-namespace Baloo {
-    class File;
+
+namespace Baloo
+{
+class File;
 }
 
 /**
@@ -39,7 +28,7 @@ namespace Baloo {
 class DOLPHIN_EXPORT KBalooRolesProvider
 {
 public:
-    static KBalooRolesProviderinstance();
+    static KBalooRolesProvider &instance();
     virtual ~KBalooRolesProvider();
 
     /**
@@ -51,39 +40,15 @@ public:
      * @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;
+    QHash<QByteArray, QVariant> roleValues(const Baloo::File &file, const QSet<QByteArray> &roles) 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 struct KBalooRolesProviderSingleton;
 };
 
 #endif
-