~ubuntu-branches/ubuntu/utopic/ibus-qt/utopic

« back to all changes in this revision

Viewing changes to src/qibusconfigadaptor.h

  • Committer: Bazaar Package Importer
  • Author(s): LI Daobing
  • Date: 2010-04-10 16:25:47 UTC
  • mfrom: (5.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100410162547-9k8zunomsq7nre2c
Tags: 1.3.0-1
* New upstream release.
* debian/control: bump standards version to 3.8.4.
* debian/source/format: 3.0.
* Fix "FTBFS with binutils-gold" (Closes: #554862)
  - debian/patches/binutils-gold: added.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * This file was generated by qdbusxml2cpp version 0.7
3
3
 * Command line was: qdbusxml2cpp -a qibusconfigadaptor -c IBusConfigAdaptor -v org.freedesktop.IBus.Config.xml org.freedesktop.IBus.Config
4
4
 *
5
 
 * qdbusxml2cpp is Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
 
5
 * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
6
6
 *
7
7
 * This is an auto-generated file.
8
8
 * This file may have been hand-edited. Look for HAND-EDIT comments
9
9
 * before re-generating it.
10
10
 */
11
11
 
12
 
#ifndef QIBUSCONFIGADAPTOR_H_1252555094
13
 
#define QIBUSCONFIGADAPTOR_H_1252555094
 
12
#ifndef QIBUSCONFIGADAPTOR_H_1268725630
 
13
#define QIBUSCONFIGADAPTOR_H_1268725630
14
14
 
15
15
#include <QtCore/QObject>
16
16
#include <QtDBus/QtDBus>
29
29
    Q_OBJECT
30
30
    Q_CLASSINFO("D-Bus Interface", "org.freedesktop.IBus.Config")
31
31
    Q_CLASSINFO("D-Bus Introspection", ""
32
 
"  <interface name=\"org.freedesktop.IBus.Config\" >\n"
33
 
"    <method name=\"Destroy\" />\n"
34
 
"    <signal name=\"ValueChanged\" >\n"
35
 
"      <arg type=\"s\" name=\"section\" />\n"
36
 
"      <arg type=\"s\" name=\"name\" />\n"
37
 
"      <arg type=\"v\" name=\"value\" />\n"
 
32
"  <interface name=\"org.freedesktop.IBus.Config\">\n"
 
33
"    <method name=\"Destroy\"/>\n"
 
34
"    <signal name=\"ValueChanged\">\n"
 
35
"      <arg type=\"s\" name=\"section\"/>\n"
 
36
"      <arg type=\"s\" name=\"name\"/>\n"
 
37
"      <arg type=\"v\" name=\"value\"/>\n"
38
38
"    </signal>\n"
39
 
"    <method name=\"SetValue\" >\n"
40
 
"      <arg direction=\"in\" type=\"s\" name=\"section\" />\n"
41
 
"      <arg direction=\"in\" type=\"s\" name=\"name\" />\n"
42
 
"      <arg direction=\"in\" type=\"v\" name=\"value\" />\n"
43
 
"    </method>\n"
44
 
"    <method name=\"GetValue\" >\n"
45
 
"      <arg direction=\"in\" type=\"s\" name=\"section\" />\n"
46
 
"      <arg direction=\"in\" type=\"s\" name=\"name\" />\n"
47
 
"      <arg direction=\"out\" type=\"v\" />\n"
 
39
"    <method name=\"SetValue\">\n"
 
40
"      <arg direction=\"in\" type=\"s\" name=\"section\"/>\n"
 
41
"      <arg direction=\"in\" type=\"s\" name=\"name\"/>\n"
 
42
"      <arg direction=\"in\" type=\"v\" name=\"value\"/>\n"
 
43
"    </method>\n"
 
44
"    <method name=\"GetValue\">\n"
 
45
"      <arg direction=\"in\" type=\"s\" name=\"section\"/>\n"
 
46
"      <arg direction=\"in\" type=\"s\" name=\"name\"/>\n"
 
47
"      <arg direction=\"out\" type=\"v\"/>\n"
 
48
"    </method>\n"
 
49
"    <method name=\"Unset\">\n"
 
50
"      <arg direction=\"in\" type=\"s\" name=\"section\"/>\n"
 
51
"      <arg direction=\"in\" type=\"s\" name=\"name\"/>\n"
48
52
"    </method>\n"
49
53
"  </interface>\n"
50
54
        "")
57
61
    void Destroy();
58
62
    QDBusVariant GetValue(const QString &section, const QString &name);
59
63
    void SetValue(const QString &section, const QString &name, const QDBusVariant &value);
 
64
    void Unset(const QString &section, const QString &name);
60
65
Q_SIGNALS: // SIGNALS
61
66
    void ValueChanged(const QString &section, const QString &name, const QDBusVariant &value);
62
67
};