~ubuntu-branches/ubuntu/utopic/cervisia/utopic

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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*
 *  Copyright (c) 2007 Christian Loose <christian.loose@kdemail.net>
 *
 * 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.
 */

#include "watchersmodel.h"

#include <KLocale>

#include "misc.h"


WatchersModel::WatchersModel(const QStringList& data, QObject* parent)
    : QAbstractTableModel(parent)
{
    parseData(data);
}


int WatchersModel::columnCount(const QModelIndex& /*parent*/) const
{
    return 5;
}


int WatchersModel::rowCount(const QModelIndex& /*parent*/) const
{
    return m_list.count();
}


QVariant WatchersModel::data(const QModelIndex& index, int role) const
{
    if( !index.isValid() || index.row() < 0 || index.row() >= m_list.count() )
        return QVariant();

    WatchersEntry entry = m_list.at(index.row());

    if( role == Qt::DisplayRole )
    {
        switch( index.column() )
        {
            case FileColumn:
                return entry.file;
            case WatcherColumn:
                return entry.watcher;
            default:
                return QVariant();
        }
    }

    if( role == Qt::CheckStateRole )
    {
        switch( index.column() )
        {
            case EditColumn:
                return entry.edit ? Qt::Checked : Qt::Unchecked;
            case UneditColumn:
                return entry.unedit ? Qt::Checked : Qt::Unchecked;
            case CommitColumn:
                return entry.commit ? Qt::Checked : Qt::Unchecked;
            default:
                return QVariant();
        }
    }

    return QVariant();
}


QVariant WatchersModel::headerData(int section, Qt::Orientation orientation,
                                   int role) const
{
    // only provide text for the headers
    if( role != Qt::DisplayRole )
        return QVariant();

    if( orientation == Qt::Horizontal )
    {
        switch( section )
        {
            case FileColumn:
                return i18n("File");
            case WatcherColumn:
                return i18n("Watcher");
            case EditColumn:
                return i18n("Edit");
            case UneditColumn:
                return i18n("Unedit");
            case CommitColumn:
                return i18n("Commit");
            default:
                return QVariant();
        }
    }

    // Numbered vertical header
    return QString(section);
}


void WatchersModel::parseData(const QStringList& data)
{
    foreach( const QString &line, data )
    {
        // parse the output line
        QStringList list = splitLine(line);

        // ignore empty lines and unknown files
        if( list.isEmpty() || list[0] == "?" )
            continue;

        WatchersEntry entry;
        entry.file    = list[0];
        entry.watcher = list[1];
        entry.edit    = list.contains("edit");
        entry.unedit  = list.contains("unedit");
        entry.commit  = list.contains("commit");

        m_list.append(entry);
    }
}


WatchersSortModel::WatchersSortModel(QObject* parent)
    : QSortFilterProxyModel(parent)
{
}


bool WatchersSortModel::lessThan(const QModelIndex& left, const QModelIndex& right) const
{
    QVariant leftData  = sourceModel()->data(left, Qt::CheckStateRole);
    QVariant rightData = sourceModel()->data(right, Qt::CheckStateRole);

    if( !leftData.isValid() )
        return QSortFilterProxyModel::lessThan(left, right);

    return leftData.toInt() < rightData.toInt();
}


#include "watchersmodel.moc"