~ubuntu-branches/ubuntu/saucy/kactivities/saucy-proposed

« back to all changes in this revision

Viewing changes to src/workspace/settings/BlacklistedApplicationsModel.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Jonathan Riddell, Scott Kitterman
  • Date: 2012-11-20 13:47:27 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20121120134727-vqzk04slqjoay3de
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Scott Kitterman ]
* Add new libkactivities-models1 library package (debian/control, .install,
  and .symbols)
* Add nepomuk-core-dev to build-depends
* Wildcard libkactivities6.install so that soversion changes don't cause
  build failures
* Update libkactivities6.symbols
* Update libkactivities-dev.install for new files for libkactivies-models
* Add new files to libkactivities-bin.install, including Activities kcm

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *   Copyright (C) 2012 Ivan Cukic <ivan.cukic(at)kde.org>
 
3
 *
 
4
 *   This program is free software; you can redistribute it and/or modify
 
5
 *   it under the terms of the GNU General Public License version 2,
 
6
 *   or (at your option) any later version, as published by the Free
 
7
 *   Software Foundation
 
8
 *
 
9
 *   This program is distributed in the hope that it will be useful,
 
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 *   GNU General Public License for more details
 
13
 *
 
14
 *   You should have received a copy of the GNU General Public
 
15
 *   License along with this program; if not, write to the
 
16
 *   Free Software Foundation, Inc.,
 
17
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
18
 */
 
19
 
 
20
#ifndef BLACKLISTEDAPPLICATIONSMODEL_H_
 
21
#define BLACKLISTEDAPPLICATIONSMODEL_H_
 
22
 
 
23
#include <QAbstractListModel>
 
24
 
 
25
#include <utils/override.h>
 
26
#include <utils/nullptr.h>
 
27
#include <utils/d_ptr.h>
 
28
 
 
29
/**
 
30
 * BlacklistedApplicationsModel
 
31
 */
 
32
class BlacklistedApplicationsModel: public QAbstractListModel {
 
33
    Q_OBJECT
 
34
 
 
35
    Q_PROPERTY(bool enabled READ enabled WRITE setEnabled NOTIFY enabledChanged)
 
36
 
 
37
public:
 
38
    BlacklistedApplicationsModel(QObject * parent = nullptr);
 
39
 
 
40
    enum Roles {
 
41
        ApplicationIdRole = Qt::UserRole + 1,
 
42
        BlockedApplicationRole
 
43
    };
 
44
 
 
45
    QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const _override;
 
46
    QVariant data(const QModelIndex & index, int role = Qt::DisplayRole) const _override;
 
47
    int rowCount(const QModelIndex & parent = QModelIndex()) const _override;
 
48
 
 
49
Q_SIGNALS:
 
50
    void changed();
 
51
    void enabledChanged(bool enabled);
 
52
 
 
53
public Q_SLOTS:
 
54
    void toggleApplicationBlocked(int index);
 
55
 
 
56
    void setEnabled(bool);
 
57
    bool enabled() const;
 
58
 
 
59
    void load();
 
60
    void save();
 
61
    void defaults();
 
62
 
 
63
private:
 
64
    D_PTR;
 
65
};
 
66
 
 
67
#endif // BLACKLISTEDAPPLICATIONSMODEL_H_
 
68