Added spanish translation
[timedsilencer] / dbus_backend.h
1 /*
2  * This file is part of TimedSilencer.
3  *
4  *  TimedSilencer 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, either version 3 of the License, or
7  *  (at your option) any later version.
8  *
9  *  TimedSilencer is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with TimedSilencer.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef DBUS_TALKER_H
19 #define DBUS_TALKER_H
20
21 #include <QDBusInterface>
22 #include <QDBusMessage>
23
24 #include "phone_profile.h"
25
26 class DBusBackend {
27
28 public:
29   // DBus Command taken from http://wiki.maemo.org/Phone_control#Profiles
30   // dbus-send --type=method_call --dest=com.nokia.profiled /com/nokia/profiled com.nokia.profiled.set_profile string:"general"
31   // dbus-send --type=method_call --dest=com.nokia.profiled /com/nokia/profiled com.nokia.profiled.set_profile string:"silent"
32   static bool setProfile(Profile p) {
33     QDBusMessage msg = QDBusMessage::createMethodCall("com.nokia.profiled",
34                                                       "/com/nokia/profiled",
35                                                       "com.nokia.profiled",
36                                                       "set_profile");
37     if(p == SILENT)
38       msg << "silent";
39     else
40       msg << "general";
41
42     QDBusMessage ret = QDBusConnection::sessionBus().call(msg);
43     return ret.type() != QDBusMessage::ErrorMessage;
44   }
45 };
46
47 #endif // DBUS_TALKER_H