summaryrefslogtreecommitdiffstats
path: root/src/viewproperties.h
blob: 46e97d904ca538e33ebde132adccb9d178e67ff8 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/***************************************************************************
 *   Copyright (C) 2006 by Peter Penz                                      *
 *   peter.penz@gmx.at                                                     *
 *                                                                         *
 *   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.             *
 ***************************************************************************/

#ifndef VIEWPROPERTIES_H
#define VIEWPROPERTIES_H

#include <dolphinview.h>
#include <kurl.h>
#include <tqdatetime.h>
class TQFile;

/**
 * @short Maintains the view properties like 'view mode' or 'show hidden files' for a directory.
 *
 * The view properties are automatically stored inside
 * the directory as hidden file called '.dolphinview'. To read out the view properties
 * just construct an instance by passing the URL of the directory:
 * \code
 * ViewProperties props(KURL("/home/peter/Documents"));
 * const DolphinView::Mode mode = props.viewMode();
 * const bool showHiddenFiles = props.isShowHiddenFilesEnabled();
 * \endcode
 * When modifying a view property, the '.dolphinview' file is automatically updated
 * inside the destructor.
 *
 * @author Peter Penz
 */
// TODO: provide detailed design description, as mapping the user model to
// the physical modal is not trivial.
class ViewProperties
{
public:
    ViewProperties(KURL url);
    virtual ~ViewProperties();

    void setViewMode(DolphinView::Mode mode);
    DolphinView::Mode viewMode() const;

    void setShowHiddenFilesEnabled(bool show);
    bool isShowHiddenFilesEnabled() const;

    void setSorting(DolphinView::Sorting sorting);
    DolphinView::Sorting sorting() const;

    void setSortOrder(TQt::SortOrder sortOrder);
    TQt::SortOrder sortOrder() const;

    void setValidForSubDirs(bool valid);
    bool isValidForSubDirs() const;

    void setAutoSaveEnabled(bool autoSave);
    bool isAutoSaveEnabled() const;

    void updateTimeStamp();
    void save();

private:
    class Properties
    {
    public:
        Properties();
        ~Properties();  // non virtual

        bool m_showHiddenFiles;
        DolphinView::Mode m_viewMode;
        TQDateTime m_timeStamp;
        DolphinView::Sorting m_sorting;
        TQt::SortOrder m_sortOrder;
    };

    class PropertiesNode
    {
    public:
        PropertiesNode(TQFile* file = 0);
        ~PropertiesNode();
        PropertiesNode& operator = (const PropertiesNode& node);
        bool isEmpty() const { return m_empty; }

        void setValidForSubDirs(bool valid) { m_isValidForSubDirs = valid; }
        bool isValidForSubDirs() const { return m_isValidForSubDirs; }

        void setLocalProperties(const Properties& props) { m_props = props; }
        const Properties& localProperties() const { return m_props; }

        void setShowHiddenFilesEnabled(bool show) { m_props.m_showHiddenFiles = show; }
        void setViewMode(DolphinView::Mode mode) { m_props.m_viewMode = mode; }
        void setTimeStamp(const TQDateTime timeStamp) { m_props.m_timeStamp = timeStamp; }
        const TQDateTime& timeStamp() const { return m_props.m_timeStamp; }
        void setSorting(DolphinView::Sorting sorting) { m_props.m_sorting = sorting; }
        void setSortOrder(TQt::SortOrder sortOrder) { m_props.m_sortOrder = sortOrder; }

        void setSubDirProperties(const Properties& props) { m_subDirProps = props; }
        const Properties& subDirProperties() const { return m_subDirProps; }

    private:
        int toInt(const char* buffer, int count) const;
        int readProperties(Properties& props, const char* buffer, int version);

        bool m_empty;
        bool m_isValidForSubDirs;
        Properties m_props;
        Properties m_subDirProps;
    };

    bool m_changedProps;
    bool m_autoSave;
    bool m_subDirValidityHidden;
    TQString m_filepath;
    PropertiesNode m_node;
};

#endif