]> cloud.milkyroute.net Git - dolphin.git/blob - src/settings/dolphinsettings.h
Fix Dolphin session management regression
[dolphin.git] / src / settings / dolphinsettings.h
1 /***************************************************************************
2 * Copyright (C) 2006 by Peter Penz *
3 * peter.penz@gmx.at *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
19 ***************************************************************************/
20
21 #ifndef DOLPHINSETTINGS_H
22 #define DOLPHINSETTINGS_H
23
24 #include <libdolphin_export.h>
25
26 class ColumnModeSettings;
27 class DetailsModeSettings;
28 class GeneralSettings;
29 class IconsModeSettings;
30 class KFilePlacesModel;
31
32 /**
33 * @brief Manages and stores all settings from Dolphin.
34 *
35 * The following properties are stored:
36 * - home URL
37 * - default view mode
38 * - URL navigator state (editable or not)
39 * - Text completion state
40 * - split view
41 * - properties for views
42 */
43 class LIBDOLPHINPRIVATE_EXPORT DolphinSettings
44 {
45 public:
46 static DolphinSettings& instance();
47
48 GeneralSettings* generalSettings() const;
49 IconsModeSettings* iconsModeSettings() const;
50 DetailsModeSettings* detailsModeSettings() const;
51 ColumnModeSettings* columnModeSettings() const;
52 KFilePlacesModel* placesModel() const;
53 virtual void save();
54
55 protected:
56 DolphinSettings();
57 virtual ~DolphinSettings();
58 friend class DolphinSettingsSingleton;
59
60 private:
61 GeneralSettings* m_generalSettings;
62 IconsModeSettings* m_iconsModeSettings;
63 DetailsModeSettings* m_detailsModeSettings;
64 ColumnModeSettings* m_columnModeSettings;
65 KFilePlacesModel* m_placesModel;
66 };
67
68 inline GeneralSettings* DolphinSettings::generalSettings() const
69 {
70 return m_generalSettings;
71 }
72
73 inline IconsModeSettings* DolphinSettings::iconsModeSettings() const
74 {
75 return m_iconsModeSettings;
76 }
77
78 inline DetailsModeSettings* DolphinSettings::detailsModeSettings() const
79 {
80 return m_detailsModeSettings;
81 }
82
83 inline ColumnModeSettings* DolphinSettings::columnModeSettings() const
84 {
85 return m_columnModeSettings;
86 }
87
88 inline KFilePlacesModel* DolphinSettings::placesModel() const
89 {
90 return m_placesModel;
91 }
92
93 #endif