~mateo-salta/uvolman/uvolman

« back to all changes in this revision

Viewing changes to backend/UVolMan/DBus/DBusGtkAction.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 DBUSGTKACTION_H
 
21
#define DBUSGTKACTION_H
 
22
 
 
23
#include <QDBusSignature>
 
24
#include <QDBusArgument>
 
25
 
 
26
class DBusGtkAction
 
27
{
 
28
public:
 
29
    DBusGtkAction();
 
30
    DBusGtkAction(bool enabled, const QDBusSignature &signature, const QVariantList &values);
 
31
 
 
32
    friend QDBusArgument &operator<<(QDBusArgument &argument, const DBusGtkAction &result);
 
33
    friend const QDBusArgument &operator>>(const QDBusArgument &argument, DBusGtkAction &result);
 
34
 
 
35
    bool getEnabled() const;
 
36
    QVariantList getValues() const;
 
37
    QDBusSignature getSignature() const;
 
38
 
 
39
private:
 
40
    bool enabled;
 
41
    QDBusSignature signature;
 
42
    QVariantList values;
 
43
};
 
44
 
 
45
#endif // DBUSGTKACTION_H