blob: 645947aaa0c190cb189cd75dbb5e67a0c69dd46b (
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
|
/*
* 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>
class KFilePlacesModel;
/**
* @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
|