File indexing completed on 2025-03-23 12:49:28
0001 /* 0002 SPDX-FileCopyrightText: 2008 Will Stephenson <wstephenson@kde.org> 0003 SPDX-FileCopyrightText: 2010 Lamarque Souza <lamarque@kde.org> 0004 SPDX-FileCopyrightText: 2013 Lukas Tinkl <ltinkl@redhat.com> 0005 SPDX-FileCopyrightText: 2013 Anant Kamath <kamathanant@gmail.com> 0006 SPDX-FileCopyrightText: 2015 Jan Grulich <jgrulich@redhat.com> 0007 0008 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0009 */ 0010 0011 #ifndef MODEMMANAGER_DBUS_H 0012 #define MODEMMANAGER_DBUS_H 0013 0014 #define DBUS_INTERFACE_PROPS QLatin1String("org.freedesktop.DBus.Properties") 0015 #define DBUS_INTERFACE_INTROSPECT QLatin1String("org.freedesktop.DBus.Introspectable") 0016 #define DBUS_INTERFACE_MANAGER QLatin1String("org.freedesktop.DBus.ObjectManager") 0017 0018 #define MMQT_DBUS_SERVICE MM_DBUS_SERVICE 0019 #define MMQT_DBUS_PATH MM_DBUS_PATH 0020 /* Prefix for object paths */ 0021 #define MMQT_DBUS_MODEM_PREFIX MM_DBUS_PATH "/Modem" 0022 #define MMQT_DBUS_BEARER_PREFIX MM_DBUS_PATH "/Bearer" 0023 #define MMQT_DBUS_SIM_PREFIX MM_DBUS_PATH "/SIM" 0024 #define MMQT_DBUS_SMS_PREFIX MM_DBUS_PATH "/SMS" 0025 #define MMQT_DBUS_CALL_PREFIX MM_DBUS_PATH "/Call" 0026 /* Interfaces */ 0027 #define MMQT_DBUS_INTERFACE MM_DBUS_INTERFACE 0028 #define MMQT_DBUS_INTERFACE_SIM MM_DBUS_INTERFACE_SIM 0029 #define MMQT_DBUS_INTERFACE_BEARER MM_DBUS_INTERFACE_BEARER 0030 #define MMQT_DBUS_INTERFACE_SMS MM_DBUS_INTERFACE_SMS 0031 #define MMQT_DBUS_INTERFACE_CALL MM_DBUS_INTERFACE_CALL 0032 #define MMQT_DBUS_INTERFACE_MODEM MM_DBUS_INTERFACE_MODEM 0033 #define MMQT_DBUS_INTERFACE_MODEM_SIMPLE "org.freedesktop.ModemManager1.Modem.Simple" 0034 #define MMQT_DBUS_INTERFACE_MODEM_MODEM3GPP MM_DBUS_INTERFACE_MODEM_MODEM3GPP 0035 #define MMQT_DBUS_INTERFACE_MODEM_MODEM3GPP_USSD MM_DBUS_INTERFACE_MODEM_MODEM3GPP_USSD 0036 #define MMQT_DBUS_INTERFACE_MODEM_MODEMCDMA MM_DBUS_INTERFACE_MODEM_MODEMCDMA 0037 #define MMQT_DBUS_INTERFACE_MODEM_MESSAGING MM_DBUS_INTERFACE_MODEM_MESSAGING 0038 #define MMQT_DBUS_INTERFACE_MODEM_LOCATION MM_DBUS_INTERFACE_MODEM_LOCATION 0039 #define MMQT_DBUS_INTERFACE_MODEM_TIME MM_DBUS_INTERFACE_MODEM_TIME 0040 #define MMQT_DBUS_INTERFACE_MODEM_FIRMWARE MM_DBUS_INTERFACE_MODEM_FIRMWARE 0041 #define MMQT_DBUS_INTERFACE_MODEM_SIGNAL MM_DBUS_INTERFACE_MODEM_SIGNAL 0042 #define MMQT_DBUS_INTERFACE_MODEM_OMA MM_DBUS_INTERFACE_MODEM_OMA 0043 #define MMQT_DBUS_INTERFACE_MODEM_VOICE MM_DBUS_INTERFACE_MODEM_VOICE 0044 0045 #endif