~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/MockClickApplicationsModel.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_model.h"
 
21
 
 
22
class MockClickApplicationsModel : public ClickApplicationsModel {
 
23
    Q_OBJECT
 
24
 
 
25
public:
 
26
    Q_INVOKABLE void addApplication(const QString& pkgName, const QString& appName);
 
27
    Q_INVOKABLE void removeApplicationByIndex(int index);
 
28
    Q_INVOKABLE void setNotificationByIndex(int role, int idx, bool enabled);
 
29
    Q_INVOKABLE void cleanup();
 
30
 
 
31
protected Q_SLOTS:
 
32
    void populateModel() { /* DO NOTHING */ };
 
33
};