Lomiri
Loading...
Searching...
No Matches
SessionBroadcast.h
1/*
2 * Copyright (C) 2013, 2016 Canonical Ltd.
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 as published by
6 * the Free Software Foundation; version 3.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#ifndef LOMIRI_SESSIONBROADCAST_H
18#define LOMIRI_SESSIONBROADCAST_H
19
20#include <QObject>
21#include <QString>
22
23class QDBusInterface;
24
25class SessionBroadcast: public QObject
26{
27 Q_OBJECT
28
29public:
30 explicit SessionBroadcast(QObject *parent = 0);
31
32 Q_INVOKABLE void requestUrlStart(const QString &username, const QString &url);
33 Q_INVOKABLE void requestHomeShown(const QString &username);
34
35Q_SIGNALS:
36 // This signal isn't actually used by the shell
37 // (lomiri-greeter-session-broadcast handles launching an app for us), but
38 // it's useful for testing the plugin.
39 void startUrl(const QString &url);
40 void showHome();
41
42private Q_SLOTS:
43 void onStartUrl(const QString &username, const QString &url);
44 void onShowHome(const QString &username);
45
46private:
47 QString m_username;
48 QDBusInterface *m_broadcaster;
49};
50
51#endif