~mateo-salta/uvolman/uvolman

« back to all changes in this revision

Viewing changes to backend/UVolMan/DBus/DBusGtkAction.cpp

  • 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
#include "DBusGtkAction.h"
 
21
 
 
22
DBusGtkAction::DBusGtkAction() {}
 
23
 
 
24
DBusGtkAction::DBusGtkAction(bool enabled,
 
25
                             const QDBusSignature &signature,
 
26
                             const QVariantList &values)
 
27
    : enabled(enabled),
 
28
      signature(signature),
 
29
      values(values)
 
30
{
 
31
}
 
32
 
 
33
QVariantList DBusGtkAction::getValues() const
 
34
{
 
35
    return values;
 
36
}
 
37
 
 
38
bool DBusGtkAction::getEnabled() const
 
39
{
 
40
    return enabled;
 
41
}
 
42
 
 
43
QDBusSignature DBusGtkAction::getSignature() const
 
44
{
 
45
    return signature;
 
46
}
 
47
 
 
48
QDBusArgument &operator<<(QDBusArgument &argument, const DBusGtkAction &result)
 
49
{
 
50
    argument.beginStructure();
 
51
    argument << result.enabled;
 
52
    argument << result.signature;
 
53
    argument << result.values;
 
54
    argument.endStructure();
 
55
 
 
56
    return argument;
 
57
}
 
58
 
 
59
const QDBusArgument &operator>>(const QDBusArgument &argument, DBusGtkAction &result)
 
60
{
 
61
    argument.beginStructure();
 
62
    argument >> result.enabled;
 
63
    argument >> result.signature;
 
64
    argument >> result.values;
 
65
    argument.endStructure();
 
66
 
 
67
    return argument;
 
68
}