blob: a0524068f5d2e1d8f5a5826ccff34355a32f8813 (
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
|
/*
* SPDX-FileCopyrightText: 2018 Kai Uwe Broulik <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef DOLPHINPLACESMODELSINGLETON_H
#define DOLPHINPLACESMODELSINGLETON_H
#include <QScopedPointer>
#include <QString>
#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;
bool panelsLocked() const;
void setPanelsLocked(bool locked);
QStringList mimeTypes() const override;
bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) 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;
bool m_panelsLocked = true; // common-case, panels are locked
};
/**
* @brief Provides a global KFilePlacesModel instance.
*/
class DolphinPlacesModelSingleton
{
public:
static DolphinPlacesModelSingleton &instance();
DolphinPlacesModel *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<DolphinPlacesModel> m_placesModel;
};
#endif // DOLPHINPLACESMODELSINGLETON_H
|