blob: 7efe6e093cc6ff08e7bb8cd31b6cd1b45d172a44 (
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
|
/*
* SPDX-FileCopyrightText: 2018 Kai Uwe Broulik <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef DOLPHINPLACESMODELSINGLETON_H
#define DOLPHINPLACESMODELSINGLETON_H
#include <QString>
#include <QScopedPointer>
#include <KFilePlacesModel>
/**
* @brief Dolphin's special-cased KFilePlacesModel
*
* It returns the trash's icon based on whether
* it is full or not.
*/
class DolphinPlacesModel : public KFilePlacesModel
{
Q_OBJECT
public:
explicit DolphinPlacesModel(const QString &alternativeApplicationName, QObject *parent = nullptr);
~DolphinPlacesModel() override;
protected:
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
private Q_SLOTS:
void slotTrashEmptinessChanged(bool isEmpty);
private:
bool isTrash(const QModelIndex &index) const;
bool m_isEmpty = false;
};
/**
* @brief Provides a global KFilePlacesModel instance.
*/
class DolphinPlacesModelSingleton
{
public:
static DolphinPlacesModelSingleton& instance();
KFilePlacesModel *placesModel() const;
/** A suffix to the application-name of the stored bookmarks is
added, which is only read by PlacesItemModel. */
static QString applicationNameSuffix();
DolphinPlacesModelSingleton(const DolphinPlacesModelSingleton&) = delete;
DolphinPlacesModelSingleton& operator=(const DolphinPlacesModelSingleton&) = delete;
private:
DolphinPlacesModelSingleton();
QScopedPointer<KFilePlacesModel> m_placesModel;
};
#endif // DOLPHINPLACESMODELSINGLETON_H
|