ModemManagerQt

locationinterface.h
1/*
2 * This file was generated by qdbusxml2cpp version 0.7
3 * Command line was: qdbusxml2cpp -N -m -i generictypes.h -p locationinterface \
4 * /home/jgrulich/development/projects/libmm-qt/dbus/introspection/org.freedesktop.ModemManager1.Modem.Location.xml
5 *
6 * qdbusxml2cpp is Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
7 *
8 * This is an auto-generated file.
9 * Do not edit! All changes made to it will be lost.
10 */
11
12#ifndef MODEMMANAGERQT_LOCATIONINTERFACE_H
13#define MODEMMANAGERQT_LOCATIONINTERFACE_H
14
15#include "generictypes.h"
16#include <QDBusAbstractInterface>
17#include <QDBusPendingReply>
18#include <QList>
19#include <QObject>
20#include <QString>
21#include <QVariant>
22
23/*
24 * Proxy class for interface org.freedesktop.ModemManager1.Modem.Location
25 */
26class OrgFreedesktopModemManager1ModemLocationInterface : public QDBusAbstractInterface
27{
29public:
30 static inline const char *staticInterfaceName()
31#ifdef MMQT_STATIC
32 {
33 return "org.kde.fakemodem.Modem.Location";
34 }
35#else
36 {
37 return "org.freedesktop.ModemManager1.Modem.Location";
38 }
39#endif
40public:
41 OrgFreedesktopModemManager1ModemLocationInterface(const QString &service,
42 const QString &path,
44 QObject *parent = nullptr);
45
46 ~OrgFreedesktopModemManager1ModemLocationInterface() override;
47
48 Q_PROPERTY(uint Capabilities READ capabilities)
49 inline uint capabilities() const
50 {
51 return qvariant_cast<uint>(property("Capabilities"));
52 }
53
54 Q_PROPERTY(uint Enabled READ enabled)
55 inline uint enabled() const
56 {
57 return qvariant_cast<uint>(property("Enabled"));
58 }
59
61 inline ModemManager::LocationInformationMap location() const
62 {
63 return qvariant_cast<ModemManager::LocationInformationMap>(property("Location"));
64 }
65
66 Q_PROPERTY(bool SignalsLocation READ signalsLocation)
67 inline bool signalsLocation() const
68 {
69 return qvariant_cast<bool>(property("SignalsLocation"));
70 }
71
72public Q_SLOTS: // METHODS
74 {
75 QList<QVariant> argumentList;
76 return asyncCallWithArgumentList(QLatin1String("GetLocation"), argumentList);
77 }
78
79 inline QDBusPendingReply<> Setup(uint sources, bool signal_location)
80 {
81 QList<QVariant> argumentList;
82 argumentList << QVariant::fromValue(sources) << QVariant::fromValue(signal_location);
83 return asyncCallWithArgumentList(QLatin1String("Setup"), argumentList);
84 }
85
86Q_SIGNALS: // SIGNALS
87};
88
89#endif
QDBusPendingCall asyncCallWithArgumentList(const QString &method, const QList< QVariant > &args)
QDBusConnection connection() const const
QString path() const const
QString service() const const
Q_OBJECTQ_OBJECT
Q_PROPERTY(...)
Q_SIGNALSQ_SIGNALS
Q_SLOTSQ_SLOTS
QObject * parent() const const
QVariant property(const char *name) const const
QVariant fromValue(T &&value)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 17 2024 11:50:28 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.