1 | /* |
2 | * This file was generated by qdbusxml2cpp version 0.8 |
3 | * Command line was: qdbusxml2cpp -N -p qibusproxyportal -c QIBusProxyPortal interfaces/org.freedesktop.IBus.Portal.xml |
4 | * |
5 | * qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd. |
6 | * |
7 | * This is an auto-generated file. |
8 | * Do not edit! All changes made to it will be lost. |
9 | */ |
10 | |
11 | #ifndef QIBUSPROXYPORTAL_H |
12 | #define QIBUSPROXYPORTAL_H |
13 | |
14 | #include <QObject> |
15 | #include <QByteArray> |
16 | #include <QList> |
17 | #include <QMap> |
18 | #include <QString> |
19 | #include <QStringList> |
20 | #include <QVariant> |
21 | #include <QDBusAbstractInterface> |
22 | #include <QDBusPendingReply> |
23 | |
24 | /* |
25 | * Proxy class for interface org.freedesktop.IBus.Portal |
26 | */ |
27 | class QIBusProxyPortal: public QDBusAbstractInterface |
28 | { |
29 | Q_OBJECT |
30 | public: |
31 | static inline const char *staticInterfaceName() |
32 | { return "org.freedesktop.IBus.Portal" ; } |
33 | |
34 | public: |
35 | QIBusProxyPortal(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); |
36 | |
37 | ~QIBusProxyPortal(); |
38 | |
39 | public Q_SLOTS: // METHODS |
40 | inline QDBusPendingReply<QDBusObjectPath> CreateInputContext(const QString &name) |
41 | { |
42 | QList<QVariant> argumentList; |
43 | argumentList << QVariant::fromValue(value: name); |
44 | return asyncCallWithArgumentList(QStringLiteral("CreateInputContext" ), args: argumentList); |
45 | } |
46 | |
47 | Q_SIGNALS: // SIGNALS |
48 | }; |
49 | |
50 | #endif |
51 | |