~ubuntu-branches/ubuntu/wily/kdebase/wily

« back to all changes in this revision

Viewing changes to apps/dolphin/src/views/dolphinmodel.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-11-25 16:00:47 UTC
  • mfrom: (1.1.53 upstream)
  • Revision ID: james.westby@ubuntu.com-20101125160047-bsycodsp50o8su5s
Tags: 4:4.5.80-0ubuntu1
* New upstream beta release
* Drop kubuntu_06_simple_aboutpage.diff, didn't apply and no point
  keeping a distro patch to an app we don't ship by default
* Drop kubuntu_23_konqueror_spinner_in_toolbar.diff now upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  * This file is part of the KDE project
 
3
  * Copyright (C) 2007 Rafael Fernández López <ereslibre@kde.org>
 
4
  *
 
5
  * This library is free software; you can redistribute it and/or
 
6
  * modify it under the terms of the GNU Library General Public
 
7
  * License as published by the Free Software Foundation; either
 
8
  * version 2 of the License, or (at your option) any later version.
 
9
  *
 
10
  * This library 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 GNU
 
13
  * Library General Public License for more details.
 
14
  *
 
15
  * You should have received a copy of the GNU Library General Public License
 
16
  * along with this library; see the file COPYING.LIB.  If not, write to
 
17
  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
18
  * Boston, MA 02110-1301, USA.
 
19
*/
 
20
 
 
21
#ifndef DOLPHINMODEL_H
 
22
#define DOLPHINMODEL_H
 
23
 
 
24
#include <kdirmodel.h>
 
25
#include <kversioncontrolplugin.h>
 
26
#include <libdolphin_export.h>
 
27
 
 
28
#include <QHash>
 
29
#include <QPersistentModelIndex>
 
30
 
 
31
class LIBDOLPHINPRIVATE_EXPORT DolphinModel : public KDirModel
 
32
{
 
33
    Q_OBJECT
 
34
 
 
35
public:
 
36
    enum AdditionalColumns {
 
37
        Version = KDirModel::ColumnCount,
 
38
        LinkDest,
 
39
        LocalPathOrUrl,
 
40
        ExtraColumnCount // Mandatory last entry
 
41
    };
 
42
 
 
43
    DolphinModel(QObject* parent = 0);
 
44
    virtual ~DolphinModel();
 
45
 
 
46
    virtual bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole);
 
47
    virtual QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const;
 
48
    virtual QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
 
49
    virtual int columnCount(const QModelIndex& parent = QModelIndex()) const;
 
50
 
 
51
    void clearVersionData();
 
52
    bool hasVersionData() const;
 
53
 
 
54
private slots:
 
55
    void slotRowsRemoved(const QModelIndex& parent, int start, int end);
 
56
 
 
57
private:
 
58
    QVariant displayRoleData(const QModelIndex& index) const;
 
59
    QVariant sortRoleData(const QModelIndex& index) const;
 
60
 
 
61
private:
 
62
    bool m_hasVersionData;
 
63
    QHash<QPersistentModelIndex, KVersionControlPlugin::VersionState> m_revisionHash;
 
64
 
 
65
    static const char* const m_others;
 
66
};
 
67
 
 
68
#endif // DOLPHINMODEL_H