~mateo-salta/uvolman/uvolman

« back to all changes in this revision

Viewing changes to backend/UVolMan/DBus/PulseStreamRestore.h

  • Committer: Devid Antonio Filoni
  • Date: 2016-07-29 19:40:57 UTC
  • Revision ID: git-v1:cdfff2c72a8eb5247b10da7d60874d8a3f600168
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of uvolman.dfiloni
 
3
 *
 
4
 * Copyright (C) 2016 Devid Antonio Filoni https://launchpad.net/~d.filoni
 
5
 *
 
6
 * This program 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, either version 3 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef PULSESTREAMRESTORE_H
 
21
#define PULSESTREAMRESTORE_H
 
22
 
 
23
#include <QObject>
 
24
#include <QDBusConnection>
 
25
#include <QDBusMessage>
 
26
 
 
27
#include "DBus/PulseRestoreEntry.h"
 
28
 
 
29
class PulseStreamRestore : public QObject
 
30
{
 
31
    Q_OBJECT
 
32
 
 
33
public:
 
34
    explicit PulseStreamRestore(QObject *parent = 0);
 
35
 
 
36
    Q_INVOKABLE QVariantMap getEntries();
 
37
    Q_INVOKABLE bool isConnected();
 
38
 
 
39
private:
 
40
    QDBusConnection conn;
 
41
    QVariantMap entries;
 
42
    bool setupConnection(const QString &serverAddress);
 
43
};
 
44
 
 
45
#endif //PULSESTREAMRESTORE_H