~artmello/ubuntu-system-settings/ubuntu-system-settings-notifications_remove_list_check

« back to all changes in this revision

Viewing changes to tests/mocks/Ubuntu/SystemSettings/Notifications/MockClickApplicationsNotifyModel.h

Implement extended Notifications panel using Gsettings to store notifications settings for each app

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2016 Canonical Ltd.
 
3
 *
 
4
 * This file is part of system-settings.
 
5
 *
 
6
 * webbrowser-app is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; version 3.
 
9
 *
 
10
 * webbrowser-app 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, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
// local
 
20
#include "click_applications_notify_model.h"
 
21
 
 
22
class MockClickApplicationsModel;
 
23
 
 
24
class MockClickApplicationsNotifyModel : public ClickApplicationsNotifyModel {
 
25
    Q_OBJECT
 
26
 
 
27
    Q_PROPERTY(MockClickApplicationsModel* sourceModel READ sourceModel WRITE setSourceModel NOTIFY sourceModelChanged)
 
28
 
 
29
public:
 
30
    MockClickApplicationsModel* sourceModel() const;
 
31
    void setSourceModel(MockClickApplicationsModel* sourceModel);
 
32
 
 
33
    Q_INVOKABLE bool setNotifyEnabled(int /*row*/, bool /*enabled*/) { return true; };
 
34
 
 
35
Q_SIGNALS:
 
36
    void sourceModelChanged() const;
 
37
};