8 #include <TelepathyQt/AbstractAdaptor>
9 #include <TelepathyQt/Global>
10 #include <TelepathyQt/Types>
30 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel")
31 Q_CLASSINFO(
"D-Bus Introspection",
""
32 " <interface name=\"org.freedesktop.Telepathy.Channel\">\n"
33 " <property access=\"read\" type=\"s\" name=\"ChannelType\"/>\n"
34 " <property access=\"read\" type=\"as\" name=\"Interfaces\"/>\n"
35 " <property access=\"read\" type=\"u\" name=\"TargetHandle\"/>\n"
36 " <property access=\"read\" type=\"s\" name=\"TargetID\"/>\n"
37 " <property access=\"read\" type=\"u\" name=\"TargetHandleType\"/>\n"
38 " <property access=\"read\" type=\"b\" name=\"Requested\"/>\n"
39 " <property access=\"read\" type=\"u\" name=\"InitiatorHandle\"/>\n"
40 " <property access=\"read\" type=\"s\" name=\"InitiatorID\"/>\n"
41 " <method name=\"Close\"/>\n"
42 " <method name=\"GetChannelType\">\n"
43 " <arg direction=\"out\" type=\"s\" name=\"channelType\"/>\n"
45 " <method name=\"GetHandle\">\n"
46 " <arg direction=\"out\" type=\"u\" name=\"targetHandleType\"/>\n"
47 " <arg direction=\"out\" type=\"u\" name=\"targetHandle\"/>\n"
49 " <method name=\"GetInterfaces\">\n"
50 " <arg direction=\"out\" type=\"as\" name=\"interfaces\"/>\n"
52 " <signal name=\"Closed\"/>\n"
55 Q_PROPERTY(
QString ChannelType READ ChannelType )
57 Q_PROPERTY(uint TargetHandle READ TargetHandle )
58 Q_PROPERTY(
QString TargetID READ TargetID )
59 Q_PROPERTY(uint TargetHandleType READ TargetHandleType )
60 Q_PROPERTY(
bool Requested READ Requested )
61 Q_PROPERTY(uint InitiatorHandle READ InitiatorHandle )
62 Q_PROPERTY(
QString InitiatorID READ InitiatorID )
68 typedef Tp::MethodInvocationContextPtr< > CloseContextPtr;
69 typedef Tp::MethodInvocationContextPtr< QString > GetChannelTypeContextPtr;
70 typedef Tp::MethodInvocationContextPtr< uint, uint > GetHandleContextPtr;
71 typedef Tp::MethodInvocationContextPtr< QStringList > GetInterfacesContextPtr;
189 uint TargetHandle()
const;
267 uint TargetHandleType()
const;
338 bool Requested()
const;
402 uint InitiatorHandle()
const;
504 uint GetHandle(
const QDBusMessage& dbusMessage, uint& targetHandle);
549 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.Anonymity")
550 Q_CLASSINFO(
"D-Bus Introspection",
""
551 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.Anonymity\">\n"
552 " <property access=\"read\" type=\"u\" name=\"AnonymityModes\"/>\n"
553 " <property access=\"read\" type=\"b\" name=\"AnonymityMandatory\"/>\n"
554 " <property access=\"read\" type=\"s\" name=\"AnonymousID\"/>\n"
557 Q_PROPERTY(uint AnonymityModes READ AnonymityModes )
558 Q_PROPERTY(
bool AnonymityMandatory READ AnonymityMandatory )
559 Q_PROPERTY(
QString AnonymousID READ AnonymousID )
581 uint AnonymityModes()
const;
594 bool AnonymityMandatory()
const;
631 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.CallState")
632 Q_CLASSINFO(
"D-Bus Introspection",
""
633 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.CallState\">\n"
634 " <method name=\"GetCallStates\">\n"
635 " <arg direction=\"out\" type=\"a{uu}\" name=\"states\">\n"
636 " <annotation value=\"Tp::ChannelCallStateMap\" name=\"com.trolltech.QtDBus.QtTypeName.Out0\"/>\n"
639 " <signal name=\"CallStateChanged\">\n"
640 " <arg type=\"u\" name=\"contact\"/>\n"
641 " <arg type=\"u\" name=\"state\"/>\n"
650 typedef Tp::MethodInvocationContextPtr< Tp::ChannelCallStateMap > GetCallStatesContextPtr;
688 void CallStateChanged(uint contact, uint state);
701 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.CaptchaAuthentication1")
702 Q_CLASSINFO(
"D-Bus Introspection",
""
703 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.CaptchaAuthentication1\">\n"
704 " <property access=\"read\" type=\"b\" name=\"CanRetryCaptcha\"/>\n"
705 " <property access=\"read\" type=\"u\" name=\"CaptchaStatus\"/>\n"
706 " <property access=\"read\" type=\"s\" name=\"CaptchaError\"/>\n"
707 " <property access=\"read\" type=\"a{sv}\" name=\"CaptchaErrorDetails\"/>\n"
708 " <method name=\"GetCaptchas\">\n"
709 " <arg direction=\"out\" type=\"a(ussuas)\" name=\"captchaInfo\">\n"
710 " <annotation value=\"Tp::CaptchaInfoList\" name=\"com.trolltech.QtDBus.QtTypeName.Out0\"/>\n"
712 " <arg direction=\"out\" type=\"u\" name=\"numberRequired\"/>\n"
713 " <arg direction=\"out\" type=\"s\" name=\"language\"/>\n"
715 " <method name=\"GetCaptchaData\">\n"
716 " <arg direction=\"in\" type=\"u\" name=\"ID\"/>\n"
717 " <arg direction=\"in\" type=\"s\" name=\"mimeType\"/>\n"
718 " <arg direction=\"out\" type=\"ay\" name=\"captchaData\"/>\n"
720 " <method name=\"AnswerCaptchas\">\n"
721 " <arg direction=\"in\" type=\"a{us}\" name=\"answers\">\n"
722 " <annotation value=\"Tp::CaptchaAnswers\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
725 " <method name=\"CancelCaptcha\">\n"
726 " <arg direction=\"in\" type=\"u\" name=\"reason\"/>\n"
727 " <arg direction=\"in\" type=\"s\" name=\"debugMessage\"/>\n"
731 Q_PROPERTY(
bool CanRetryCaptcha READ CanRetryCaptcha )
733 Q_PROPERTY(
QString CaptchaError READ CaptchaError )
734 Q_PROPERTY(QVariantMap CaptchaErrorDetails READ CaptchaErrorDetails )
740 typedef Tp::MethodInvocationContextPtr< Tp::CaptchaInfoList, uint, QString > GetCaptchasContextPtr;
741 typedef Tp::MethodInvocationContextPtr< QByteArray > GetCaptchaDataContextPtr;
742 typedef Tp::MethodInvocationContextPtr< > AnswerCaptchasContextPtr;
743 typedef Tp::MethodInvocationContextPtr< > CancelCaptchaContextPtr;
769 bool CanRetryCaptcha()
const;
857 QVariantMap CaptchaErrorDetails()
const;
1001 void CancelCaptcha(uint reason,
const QString& debugMessage,
const QDBusMessage& dbusMessage);
1014 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.ChatState")
1015 Q_CLASSINFO(
"D-Bus Introspection",
""
1016 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.ChatState\">\n"
1017 " <property access=\"read\" type=\"a{uu}\" name=\"ChatStates\">\n"
1018 " <annotation value=\"Tp::ChatStateMap\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
1020 " <method name=\"SetChatState\">\n"
1021 " <arg direction=\"in\" type=\"u\" name=\"state\"/>\n"
1023 " <signal name=\"ChatStateChanged\">\n"
1024 " <arg type=\"u\" name=\"contact\"/>\n"
1025 " <arg type=\"u\" name=\"state\"/>\n"
1035 typedef Tp::MethodInvocationContextPtr< > SetChatStateContextPtr;
1095 void SetChatState(uint state,
const QDBusMessage& dbusMessage);
1113 void ChatStateChanged(uint contact, uint state);
1126 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.Conference")
1127 Q_CLASSINFO(
"D-Bus Introspection",
""
1128 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.Conference\">\n"
1129 " <property access=\"read\" type=\"ao\" name=\"Channels\"/>\n"
1130 " <property access=\"read\" type=\"ao\" name=\"InitialChannels\"/>\n"
1131 " <property access=\"read\" type=\"au\" name=\"InitialInviteeHandles\"/>\n"
1132 " <property access=\"read\" type=\"as\" name=\"InitialInviteeIDs\"/>\n"
1133 " <property access=\"read\" type=\"s\" name=\"InvitationMessage\"/>\n"
1134 " <property access=\"read\" type=\"a{uo}\" name=\"OriginalChannels\">\n"
1135 " <annotation value=\"Tp::ChannelOriginatorMap\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
1137 " <signal name=\"ChannelMerged\">\n"
1138 " <arg type=\"o\" name=\"channel\"/>\n"
1139 " <arg type=\"u\" name=\"channelSpecificHandle\"/>\n"
1140 " <arg type=\"a{sv}\" name=\"properties\"/>\n"
1142 " <signal name=\"ChannelRemoved\">\n"
1143 " <arg type=\"o\" name=\"channel\"/>\n"
1144 " <arg type=\"a{sv}\" name=\"details\"/>\n"
1150 Q_PROPERTY(
Tp::UIntList InitialInviteeHandles READ InitialInviteeHandles )
1151 Q_PROPERTY(
QStringList InitialInviteeIDs READ InitialInviteeIDs )
1152 Q_PROPERTY(
QString InvitationMessage READ InvitationMessage )
1388 QString InvitationMessage()
const;
1480 void ChannelMerged(
const QDBusObjectPath& channel, uint channelSpecificHandle,
const QVariantMap& properties);
1500 void ChannelRemoved(
const QDBusObjectPath& channel,
const QVariantMap& details);
1513 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.DTMF")
1514 Q_CLASSINFO(
"D-Bus Introspection",
""
1515 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.DTMF\">\n"
1516 " <property access=\"read\" type=\"b\" name=\"CurrentlySendingTones\"/>\n"
1517 " <property access=\"read\" type=\"s\" name=\"InitialTones\"/>\n"
1518 " <property access=\"read\" type=\"s\" name=\"DeferredTones\"/>\n"
1519 " <method name=\"StartTone\">\n"
1520 " <arg direction=\"in\" type=\"u\" name=\"streamID\"/>\n"
1521 " <arg direction=\"in\" type=\"y\" name=\"event\"/>\n"
1523 " <method name=\"StopTone\">\n"
1524 " <arg direction=\"in\" type=\"u\" name=\"streamID\"/>\n"
1526 " <method name=\"MultipleTones\">\n"
1527 " <arg direction=\"in\" type=\"s\" name=\"tones\"/>\n"
1529 " <signal name=\"TonesDeferred\">\n"
1530 " <arg type=\"s\" name=\"tones\"/>\n"
1532 " <signal name=\"SendingTones\">\n"
1533 " <arg type=\"s\" name=\"tones\"/>\n"
1535 " <signal name=\"StoppedTones\">\n"
1536 " <arg type=\"b\" name=\"cancelled\"/>\n"
1540 Q_PROPERTY(
bool CurrentlySendingTones READ CurrentlySendingTones )
1541 Q_PROPERTY(
QString InitialTones READ InitialTones )
1542 Q_PROPERTY(
QString DeferredTones READ DeferredTones )
1548 typedef Tp::MethodInvocationContextPtr< > StartToneContextPtr;
1549 typedef Tp::MethodInvocationContextPtr< > StopToneContextPtr;
1550 typedef Tp::MethodInvocationContextPtr< > MultipleTonesContextPtr;
1566 bool CurrentlySendingTones()
const;
1602 QString DeferredTones()
const;
1636 void StartTone(uint streamID, uchar event,
const QDBusMessage& dbusMessage);
1661 void StopTone(uint streamID,
const QDBusMessage& dbusMessage);
1724 void TonesDeferred(
const QString& tones);
1737 void SendingTones(
const QString& tones);
1750 void StoppedTones(
bool cancelled);
1763 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.Destroyable")
1764 Q_CLASSINFO(
"D-Bus Introspection",
""
1765 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.Destroyable\">\n"
1766 " <method name=\"Destroy\"/>\n"
1774 typedef Tp::MethodInvocationContextPtr< > DestroyContextPtr;
1837 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.FileTransfer.Metadata")
1838 Q_CLASSINFO(
"D-Bus Introspection",
""
1839 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.FileTransfer.Metadata\">\n"
1840 " <property access=\"readwrite\" type=\"s\" name=\"ServiceName\"/>\n"
1841 " <property access=\"readwrite\" type=\"a{sas}\" name=\"Metadata\">\n"
1842 " <annotation value=\"Tp::Metadata\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
1846 Q_PROPERTY(
QString ServiceName READ ServiceName WRITE SetServiceName)
1890 void SetServiceName(
const QString &newValue);
1933 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.Group")
1934 Q_CLASSINFO(
"D-Bus Introspection",
""
1935 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.Group\">\n"
1936 " <property access=\"read\" type=\"u\" name=\"GroupFlags\"/>\n"
1937 " <property access=\"read\" type=\"a{uu}\" name=\"HandleOwners\">\n"
1938 " <annotation value=\"Tp::HandleOwnerMap\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
1940 " <property access=\"read\" type=\"a(uuus)\" name=\"LocalPendingMembers\">\n"
1941 " <annotation value=\"Tp::LocalPendingInfoList\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
1943 " <property access=\"read\" type=\"au\" name=\"Members\"/>\n"
1944 " <property access=\"read\" type=\"au\" name=\"RemotePendingMembers\"/>\n"
1945 " <property access=\"read\" type=\"u\" name=\"SelfHandle\"/>\n"
1946 " <property access=\"read\" type=\"a{us}\" name=\"MemberIdentifiers\">\n"
1947 " <annotation value=\"Tp::HandleIdentifierMap\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
1949 " <method name=\"AddMembers\">\n"
1950 " <arg direction=\"in\" type=\"au\" name=\"contacts\"/>\n"
1951 " <arg direction=\"in\" type=\"s\" name=\"message\"/>\n"
1953 " <method name=\"GetAllMembers\">\n"
1954 " <arg direction=\"out\" type=\"au\" name=\"members\"/>\n"
1955 " <arg direction=\"out\" type=\"au\" name=\"localPending\"/>\n"
1956 " <arg direction=\"out\" type=\"au\" name=\"remotePending\"/>\n"
1958 " <method name=\"GetGroupFlags\">\n"
1959 " <arg direction=\"out\" type=\"u\" name=\"groupFlags\"/>\n"
1961 " <method name=\"GetHandleOwners\">\n"
1962 " <arg direction=\"in\" type=\"au\" name=\"handles\"/>\n"
1963 " <arg direction=\"out\" type=\"au\" name=\"owners\"/>\n"
1965 " <method name=\"GetLocalPendingMembers\">\n"
1966 " <arg direction=\"out\" type=\"au\" name=\"handles\"/>\n"
1968 " <method name=\"GetLocalPendingMembersWithInfo\">\n"
1969 " <arg direction=\"out\" type=\"a(uuus)\" name=\"info\">\n"
1970 " <annotation value=\"Tp::LocalPendingInfoList\" name=\"com.trolltech.QtDBus.QtTypeName.Out0\"/>\n"
1973 " <method name=\"GetMembers\">\n"
1974 " <arg direction=\"out\" type=\"au\" name=\"handles\"/>\n"
1976 " <method name=\"GetRemotePendingMembers\">\n"
1977 " <arg direction=\"out\" type=\"au\" name=\"handles\"/>\n"
1979 " <method name=\"GetSelfHandle\">\n"
1980 " <arg direction=\"out\" type=\"u\" name=\"selfHandle\"/>\n"
1982 " <method name=\"RemoveMembers\">\n"
1983 " <arg direction=\"in\" type=\"au\" name=\"contacts\"/>\n"
1984 " <arg direction=\"in\" type=\"s\" name=\"message\"/>\n"
1986 " <method name=\"RemoveMembersWithReason\">\n"
1987 " <arg direction=\"in\" type=\"au\" name=\"contacts\"/>\n"
1988 " <arg direction=\"in\" type=\"s\" name=\"message\"/>\n"
1989 " <arg direction=\"in\" type=\"u\" name=\"reason\"/>\n"
1991 " <signal name=\"HandleOwnersChanged\">\n"
1992 " <arg type=\"a{uu}\" name=\"added\">\n"
1993 " <annotation value=\"Tp::HandleOwnerMap\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
1995 " <arg type=\"au\" name=\"removed\"/>\n"
1997 " <signal name=\"HandleOwnersChangedDetailed\">\n"
1998 " <arg type=\"a{uu}\" name=\"added\">\n"
1999 " <annotation value=\"Tp::HandleOwnerMap\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
2001 " <arg type=\"au\" name=\"removed\"/>\n"
2002 " <arg type=\"a{us}\" name=\"identifiers\">\n"
2003 " <annotation value=\"Tp::HandleIdentifierMap\" name=\"com.trolltech.QtDBus.QtTypeName.In2\"/>\n"
2006 " <signal name=\"SelfHandleChanged\">\n"
2007 " <arg type=\"u\" name=\"selfHandle\"/>\n"
2009 " <signal name=\"SelfContactChanged\">\n"
2010 " <arg type=\"u\" name=\"selfHandle\"/>\n"
2011 " <arg type=\"s\" name=\"selfID\"/>\n"
2013 " <signal name=\"GroupFlagsChanged\">\n"
2014 " <arg type=\"u\" name=\"added\"/>\n"
2015 " <arg type=\"u\" name=\"removed\"/>\n"
2017 " <signal name=\"MembersChanged\">\n"
2018 " <arg type=\"s\" name=\"message\"/>\n"
2019 " <arg type=\"au\" name=\"added\"/>\n"
2020 " <arg type=\"au\" name=\"removed\"/>\n"
2021 " <arg type=\"au\" name=\"localPending\"/>\n"
2022 " <arg type=\"au\" name=\"remotePending\"/>\n"
2023 " <arg type=\"u\" name=\"actor\"/>\n"
2024 " <arg type=\"u\" name=\"reason\"/>\n"
2026 " <signal name=\"MembersChangedDetailed\">\n"
2027 " <arg type=\"au\" name=\"added\"/>\n"
2028 " <arg type=\"au\" name=\"removed\"/>\n"
2029 " <arg type=\"au\" name=\"localPending\"/>\n"
2030 " <arg type=\"au\" name=\"remotePending\"/>\n"
2031 " <arg type=\"a{sv}\" name=\"details\"/>\n"
2035 Q_PROPERTY(uint GroupFlags READ GroupFlags )
2039 Q_PROPERTY(
Tp::UIntList RemotePendingMembers READ RemotePendingMembers )
2040 Q_PROPERTY(uint SelfHandle READ SelfHandle )
2047 typedef Tp::MethodInvocationContextPtr< > AddMembersContextPtr;
2048 typedef Tp::MethodInvocationContextPtr< Tp::UIntList, Tp::UIntList, Tp::UIntList > GetAllMembersContextPtr;
2049 typedef Tp::MethodInvocationContextPtr< uint > GetGroupFlagsContextPtr;
2050 typedef Tp::MethodInvocationContextPtr< Tp::UIntList > GetHandleOwnersContextPtr;
2051 typedef Tp::MethodInvocationContextPtr< Tp::UIntList > GetLocalPendingMembersContextPtr;
2052 typedef Tp::MethodInvocationContextPtr< Tp::LocalPendingInfoList > GetLocalPendingMembersWithInfoContextPtr;
2053 typedef Tp::MethodInvocationContextPtr< Tp::UIntList > GetMembersContextPtr;
2054 typedef Tp::MethodInvocationContextPtr< Tp::UIntList > GetRemotePendingMembersContextPtr;
2055 typedef Tp::MethodInvocationContextPtr< uint > GetSelfHandleContextPtr;
2056 typedef Tp::MethodInvocationContextPtr< > RemoveMembersContextPtr;
2057 typedef Tp::MethodInvocationContextPtr< > RemoveMembersWithReasonContextPtr;
2074 uint GroupFlags()
const;
2147 uint SelfHandle()
const;
2493 void SelfHandleChanged(uint selfHandle);
2509 void SelfContactChanged(uint selfHandle,
const QString& selfID);
2525 void GroupFlagsChanged(uint added, uint removed);
2656 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.Hold")
2657 Q_CLASSINFO(
"D-Bus Introspection",
""
2658 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.Hold\">\n"
2659 " <method name=\"GetHoldState\">\n"
2660 " <arg direction=\"out\" type=\"u\" name=\"holdState\"/>\n"
2661 " <arg direction=\"out\" type=\"u\" name=\"reason\"/>\n"
2663 " <method name=\"RequestHold\">\n"
2664 " <arg direction=\"in\" type=\"b\" name=\"hold\"/>\n"
2666 " <signal name=\"HoldStateChanged\">\n"
2667 " <arg type=\"u\" name=\"holdState\"/>\n"
2668 " <arg type=\"u\" name=\"reason\"/>\n"
2677 typedef Tp::MethodInvocationContextPtr< uint, uint > GetHoldStateContextPtr;
2678 typedef Tp::MethodInvocationContextPtr< > RequestHoldContextPtr;
2700 uint GetHoldState(
const QDBusMessage& dbusMessage, uint& reason);
2766 void RequestHold(
bool hold,
const QDBusMessage& dbusMessage);
2784 void HoldStateChanged(uint holdState, uint reason);
2797 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.MediaSignalling")
2798 Q_CLASSINFO(
"D-Bus Introspection",
""
2799 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.MediaSignalling\">\n"
2800 " <method name=\"GetSessionHandlers\">\n"
2801 " <arg direction=\"out\" type=\"a(os)\" name=\"sessionHandlers\">\n"
2802 " <annotation value=\"Tp::MediaSessionHandlerInfoList\" name=\"com.trolltech.QtDBus.QtTypeName.Out0\"/>\n"
2805 " <signal name=\"NewSessionHandler\">\n"
2806 " <arg type=\"o\" name=\"sessionHandler\"/>\n"
2807 " <arg type=\"s\" name=\"sessionType\"/>\n"
2816 typedef Tp::MethodInvocationContextPtr< Tp::MediaSessionHandlerInfoList > GetSessionHandlersContextPtr;
2865 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.Messages")
2866 Q_CLASSINFO(
"D-Bus Introspection",
""
2867 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.Messages\">\n"
2868 " <property access=\"read\" type=\"as\" name=\"SupportedContentTypes\"/>\n"
2869 " <property access=\"read\" type=\"au\" name=\"MessageTypes\"/>\n"
2870 " <property access=\"read\" type=\"u\" name=\"MessagePartSupportFlags\"/>\n"
2871 " <property access=\"read\" type=\"aaa{sv}\" name=\"PendingMessages\">\n"
2872 " <annotation value=\"Tp::MessagePartListList\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
2874 " <property access=\"read\" type=\"u\" name=\"DeliveryReportingSupport\"/>\n"
2875 " <method name=\"SendMessage\">\n"
2876 " <arg direction=\"in\" type=\"aa{sv}\" name=\"message\">\n"
2877 " <annotation value=\"Tp::MessagePartList\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
2879 " <arg direction=\"in\" type=\"u\" name=\"flags\"/>\n"
2880 " <arg direction=\"out\" type=\"s\" name=\"token\"/>\n"
2882 " <method name=\"GetPendingMessageContent\">\n"
2883 " <arg direction=\"in\" type=\"u\" name=\"messageID\"/>\n"
2884 " <arg direction=\"in\" type=\"au\" name=\"parts\"/>\n"
2885 " <arg direction=\"out\" type=\"a{uv}\" name=\"content\">\n"
2886 " <annotation value=\"Tp::MessagePartContentMap\" name=\"com.trolltech.QtDBus.QtTypeName.Out0\"/>\n"
2889 " <signal name=\"MessageSent\">\n"
2890 " <arg type=\"aa{sv}\" name=\"content\">\n"
2891 " <annotation value=\"Tp::MessagePartList\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
2893 " <arg type=\"u\" name=\"flags\"/>\n"
2894 " <arg type=\"s\" name=\"messageToken\"/>\n"
2896 " <signal name=\"PendingMessagesRemoved\">\n"
2897 " <arg type=\"au\" name=\"messageIDs\"/>\n"
2899 " <signal name=\"MessageReceived\">\n"
2900 " <arg type=\"aa{sv}\" name=\"message\">\n"
2901 " <annotation value=\"Tp::MessagePartList\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
2906 Q_PROPERTY(
QStringList SupportedContentTypes READ SupportedContentTypes )
2907 Q_PROPERTY(
Tp::UIntList MessageTypes READ MessageTypes )
2910 Q_PROPERTY(uint DeliveryReportingSupport READ DeliveryReportingSupport )
2916 typedef Tp::MethodInvocationContextPtr< QString > SendMessageContextPtr;
2917 typedef Tp::MethodInvocationContextPtr< Tp::MessagePartContentMap > GetPendingMessageContentContextPtr;
3036 uint DeliveryReportingSupport()
const;
3203 void PendingMessagesRemoved(
const Tp::UIntList& messageIDs);
3236 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.Password")
3237 Q_CLASSINFO(
"D-Bus Introspection",
""
3238 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.Password\">\n"
3239 " <method name=\"GetPasswordFlags\">\n"
3240 " <arg direction=\"out\" type=\"u\" name=\"passwordFlags\"/>\n"
3242 " <method name=\"ProvidePassword\">\n"
3243 " <arg direction=\"in\" type=\"s\" name=\"password\"/>\n"
3244 " <arg direction=\"out\" type=\"b\" name=\"correct\"/>\n"
3246 " <signal name=\"PasswordFlagsChanged\">\n"
3247 " <arg type=\"u\" name=\"added\"/>\n"
3248 " <arg type=\"u\" name=\"removed\"/>\n"
3257 typedef Tp::MethodInvocationContextPtr< uint > GetPasswordFlagsContextPtr;
3258 typedef Tp::MethodInvocationContextPtr< bool > ProvidePasswordContextPtr;
3280 uint GetPasswordFlags(
const QDBusMessage& dbusMessage);
3320 void PasswordFlagsChanged(uint added, uint removed);
3333 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.Room2")
3334 Q_CLASSINFO(
"D-Bus Introspection",
""
3335 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.Room2\">\n"
3336 " <property access=\"read\" type=\"s\" name=\"RoomName\"/>\n"
3337 " <property access=\"read\" type=\"s\" name=\"Server\"/>\n"
3338 " <property access=\"read\" type=\"s\" name=\"Creator\"/>\n"
3339 " <property access=\"read\" type=\"u\" name=\"CreatorHandle\"/>\n"
3340 " <property access=\"read\" type=\"x\" name=\"CreationTimestamp\"/>\n"
3343 Q_PROPERTY(
QString RoomName READ RoomName )
3344 Q_PROPERTY(
QString Server READ Server )
3345 Q_PROPERTY(
QString Creator READ Creator )
3346 Q_PROPERTY(uint CreatorHandle READ CreatorHandle )
3347 Q_PROPERTY(qlonglong CreationTimestamp READ CreationTimestamp )
3435 uint CreatorHandle()
const;
3450 qlonglong CreationTimestamp()
const;
3463 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.RoomConfig1")
3464 Q_CLASSINFO(
"D-Bus Introspection",
""
3465 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.RoomConfig1\">\n"
3466 " <property access=\"read\" type=\"b\" name=\"Anonymous\"/>\n"
3467 " <property access=\"read\" type=\"b\" name=\"InviteOnly\"/>\n"
3468 " <property access=\"read\" type=\"u\" name=\"Limit\"/>\n"
3469 " <property access=\"read\" type=\"b\" name=\"Moderated\"/>\n"
3470 " <property access=\"read\" type=\"s\" name=\"Title\"/>\n"
3471 " <property access=\"read\" type=\"s\" name=\"Description\"/>\n"
3472 " <property access=\"read\" type=\"b\" name=\"Persistent\"/>\n"
3473 " <property access=\"read\" type=\"b\" name=\"Private\"/>\n"
3474 " <property access=\"read\" type=\"b\" name=\"PasswordProtected\"/>\n"
3475 " <property access=\"read\" type=\"s\" name=\"Password\"/>\n"
3476 " <property access=\"read\" type=\"s\" name=\"PasswordHint\"/>\n"
3477 " <property access=\"read\" type=\"b\" name=\"CanUpdateConfiguration\"/>\n"
3478 " <property access=\"read\" type=\"as\" name=\"MutableProperties\"/>\n"
3479 " <property access=\"read\" type=\"b\" name=\"ConfigurationRetrieved\"/>\n"
3480 " <method name=\"UpdateConfiguration\">\n"
3481 " <arg direction=\"in\" type=\"a{sv}\" name=\"properties\">\n"
3482 " <annotation value=\"QVariantMap\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
3487 Q_PROPERTY(
bool Anonymous READ Anonymous )
3488 Q_PROPERTY(
bool InviteOnly READ InviteOnly )
3489 Q_PROPERTY(uint Limit READ Limit )
3490 Q_PROPERTY(
bool Moderated READ Moderated )
3491 Q_PROPERTY(
QString Title READ Title )
3492 Q_PROPERTY(
QString Description READ Description )
3493 Q_PROPERTY(
bool Persistent READ Persistent )
3494 Q_PROPERTY(
bool Private READ Private )
3495 Q_PROPERTY(
bool PasswordProtected READ PasswordProtected )
3496 Q_PROPERTY(
QString Password READ Password )
3497 Q_PROPERTY(
QString PasswordHint READ PasswordHint )
3498 Q_PROPERTY(
bool CanUpdateConfiguration READ CanUpdateConfiguration )
3499 Q_PROPERTY(
QStringList MutableProperties READ MutableProperties )
3500 Q_PROPERTY(
bool ConfigurationRetrieved READ ConfigurationRetrieved )
3506 typedef Tp::MethodInvocationContextPtr< > UpdateConfigurationContextPtr;
3521 bool Anonymous()
const;
3533 bool InviteOnly()
const;
3557 bool Moderated()
const;
3617 bool Persistent()
const;
3631 bool Private()
const;
3649 bool PasswordProtected()
const;
3715 bool CanUpdateConfiguration()
const;
3767 bool ConfigurationRetrieved()
const;
3814 void UpdateConfiguration(
const QVariantMap& properties,
const QDBusMessage& dbusMessage);
3827 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication")
3828 Q_CLASSINFO(
"D-Bus Introspection",
""
3829 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication\">\n"
3830 " <property access=\"read\" type=\"as\" name=\"AvailableMechanisms\"/>\n"
3831 " <property access=\"read\" type=\"b\" name=\"HasInitialData\"/>\n"
3832 " <property access=\"read\" type=\"b\" name=\"CanTryAgain\"/>\n"
3833 " <property access=\"read\" type=\"u\" name=\"SASLStatus\"/>\n"
3834 " <property access=\"read\" type=\"s\" name=\"SASLError\"/>\n"
3835 " <property access=\"read\" type=\"a{sv}\" name=\"SASLErrorDetails\"/>\n"
3836 " <property access=\"read\" type=\"s\" name=\"AuthorizationIdentity\"/>\n"
3837 " <property access=\"read\" type=\"s\" name=\"DefaultUsername\"/>\n"
3838 " <property access=\"read\" type=\"s\" name=\"DefaultRealm\"/>\n"
3839 " <property access=\"read\" type=\"b\" name=\"MaySaveResponse\"/>\n"
3840 " <method name=\"StartMechanism\">\n"
3841 " <arg direction=\"in\" type=\"s\" name=\"mechanism\"/>\n"
3843 " <method name=\"StartMechanismWithData\">\n"
3844 " <arg direction=\"in\" type=\"s\" name=\"mechanism\"/>\n"
3845 " <arg direction=\"in\" type=\"ay\" name=\"initialData\"/>\n"
3847 " <method name=\"Respond\">\n"
3848 " <arg direction=\"in\" type=\"ay\" name=\"responseData\"/>\n"
3850 " <method name=\"AcceptSASL\"/>\n"
3851 " <method name=\"AbortSASL\">\n"
3852 " <arg direction=\"in\" type=\"u\" name=\"reason\"/>\n"
3853 " <arg direction=\"in\" type=\"s\" name=\"debugMessage\"/>\n"
3855 " <signal name=\"SASLStatusChanged\">\n"
3856 " <arg type=\"u\" name=\"status\"/>\n"
3857 " <arg type=\"s\" name=\"reason\"/>\n"
3858 " <arg type=\"a{sv}\" name=\"details\"/>\n"
3860 " <signal name=\"NewChallenge\">\n"
3861 " <arg type=\"ay\" name=\"challengeData\"/>\n"
3865 Q_PROPERTY(
QStringList AvailableMechanisms READ AvailableMechanisms )
3866 Q_PROPERTY(
bool HasInitialData READ HasInitialData )
3867 Q_PROPERTY(
bool CanTryAgain READ CanTryAgain )
3869 Q_PROPERTY(
QString SASLError READ SASLError )
3870 Q_PROPERTY(QVariantMap SASLErrorDetails READ SASLErrorDetails )
3871 Q_PROPERTY(
QString AuthorizationIdentity READ AuthorizationIdentity )
3872 Q_PROPERTY(
QString DefaultUsername READ DefaultUsername )
3873 Q_PROPERTY(
QString DefaultRealm READ DefaultRealm )
3874 Q_PROPERTY(
bool MaySaveResponse READ MaySaveResponse )
3880 typedef Tp::MethodInvocationContextPtr< > StartMechanismContextPtr;
3881 typedef Tp::MethodInvocationContextPtr< > StartMechanismWithDataContextPtr;
3882 typedef Tp::MethodInvocationContextPtr< > RespondContextPtr;
3883 typedef Tp::MethodInvocationContextPtr< > AcceptSASLContextPtr;
3884 typedef Tp::MethodInvocationContextPtr< > AbortSASLContextPtr;
3935 bool HasInitialData()
const;
3958 bool CanTryAgain()
const;
4029 QVariantMap SASLErrorDetails()
const;
4096 QString AuthorizationIdentity()
const;
4160 QString DefaultUsername()
const;
4214 bool MaySaveResponse()
const;
4383 void AbortSASL(uint reason,
const QString& debugMessage,
const QDBusMessage& dbusMessage);
4404 void SASLStatusChanged(uint status,
const QString& reason,
const QVariantMap& details);
4417 void NewChallenge(
const QByteArray& challengeData);
4430 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.SMS")
4431 Q_CLASSINFO(
"D-Bus Introspection",
""
4432 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.SMS\">\n"
4433 " <property access=\"read\" type=\"b\" name=\"Flash\"/>\n"
4434 " <property access=\"read\" type=\"b\" name=\"SMSChannel\"/>\n"
4435 " <method name=\"GetSMSLength\">\n"
4436 " <arg direction=\"in\" type=\"aa{sv}\" name=\"message\">\n"
4437 " <annotation value=\"Tp::MessagePartList\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
4439 " <arg direction=\"out\" type=\"u\" name=\"chunksRequired\"/>\n"
4440 " <arg direction=\"out\" type=\"i\" name=\"remainingCharacters\"/>\n"
4441 " <arg direction=\"out\" type=\"i\" name=\"estimatedCost\"/>\n"
4443 " <signal name=\"SMSChannelChanged\">\n"
4444 " <arg type=\"b\" name=\"SMSChannel\"/>\n"
4448 Q_PROPERTY(
bool Flash READ Flash )
4449 Q_PROPERTY(
bool SMSChannel READ SMSChannel )
4455 typedef Tp::MethodInvocationContextPtr< uint, int, int > GetSMSLengthContextPtr;
4564 bool SMSChannel()
const;
4645 void SMSChannelChanged(
bool SMSChannel);
4658 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.Securable")
4659 Q_CLASSINFO(
"D-Bus Introspection",
""
4660 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.Securable\">\n"
4661 " <property access=\"read\" type=\"b\" name=\"Encrypted\"/>\n"
4662 " <property access=\"read\" type=\"b\" name=\"Verified\"/>\n"
4665 Q_PROPERTY(
bool Encrypted READ Encrypted )
4666 Q_PROPERTY(
bool Verified READ Verified )
4697 bool Encrypted()
const;
4716 bool Verified()
const;
4729 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.ServicePoint")
4730 Q_CLASSINFO(
"D-Bus Introspection",
""
4731 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.ServicePoint\">\n"
4732 " <property access=\"read\" type=\"(us)\" name=\"InitialServicePoint\">\n"
4733 " <annotation value=\"Tp::ServicePoint\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
4735 " <property access=\"read\" type=\"(us)\" name=\"CurrentServicePoint\">\n"
4736 " <annotation value=\"Tp::ServicePoint\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
4738 " <signal name=\"ServicePointChanged\">\n"
4739 " <arg type=\"(us)\" name=\"servicePoint\">\n"
4740 " <annotation value=\"Tp::ServicePoint\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
4818 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Interface.Subject2")
4819 Q_CLASSINFO(
"D-Bus Introspection",
""
4820 " <interface name=\"org.freedesktop.Telepathy.Channel.Interface.Subject2\">\n"
4821 " <property access=\"read\" type=\"s\" name=\"Subject\"/>\n"
4822 " <property access=\"read\" type=\"s\" name=\"Actor\"/>\n"
4823 " <property access=\"read\" type=\"u\" name=\"ActorHandle\"/>\n"
4824 " <property access=\"read\" type=\"x\" name=\"Timestamp\"/>\n"
4825 " <property access=\"read\" type=\"b\" name=\"CanSet\"/>\n"
4826 " <method name=\"SetSubject\">\n"
4827 " <arg direction=\"in\" type=\"s\" name=\"subject\"/>\n"
4831 Q_PROPERTY(
QString Subject READ Subject )
4832 Q_PROPERTY(
QString Actor READ Actor )
4833 Q_PROPERTY(uint ActorHandle READ ActorHandle )
4834 Q_PROPERTY(qlonglong Timestamp READ Timestamp )
4835 Q_PROPERTY(
bool CanSet READ CanSet )
4841 typedef Tp::MethodInvocationContextPtr< > SetSubjectContextPtr;
4899 uint ActorHandle()
const;
4918 qlonglong Timestamp()
const;
4945 bool CanSet()
const;
4986 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Type.Call1")
4987 Q_CLASSINFO(
"D-Bus Introspection",
""
4988 " <interface name=\"org.freedesktop.Telepathy.Channel.Type.Call1\">\n"
4989 " <property access=\"read\" type=\"ao\" name=\"Contents\"/>\n"
4990 " <property access=\"read\" type=\"a{sv}\" name=\"CallStateDetails\"/>\n"
4991 " <property access=\"read\" type=\"u\" name=\"CallState\"/>\n"
4992 " <property access=\"read\" type=\"u\" name=\"CallFlags\"/>\n"
4993 " <property access=\"read\" type=\"(uuss)\" name=\"CallStateReason\">\n"
4994 " <annotation value=\"Tp::CallStateReason\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
4996 " <property access=\"read\" type=\"b\" name=\"HardwareStreaming\"/>\n"
4997 " <property access=\"read\" type=\"a{uu}\" name=\"CallMembers\">\n"
4998 " <annotation value=\"Tp::CallMemberMap\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
5000 " <property access=\"read\" type=\"a{us}\" name=\"MemberIdentifiers\">\n"
5001 " <annotation value=\"Tp::HandleIdentifierMap\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
5003 " <property access=\"read\" type=\"u\" name=\"InitialTransport\"/>\n"
5004 " <property access=\"read\" type=\"b\" name=\"InitialAudio\"/>\n"
5005 " <property access=\"read\" type=\"b\" name=\"InitialVideo\"/>\n"
5006 " <property access=\"read\" type=\"s\" name=\"InitialAudioName\"/>\n"
5007 " <property access=\"read\" type=\"s\" name=\"InitialVideoName\"/>\n"
5008 " <property access=\"read\" type=\"b\" name=\"MutableContents\"/>\n"
5009 " <method name=\"SetRinging\"/>\n"
5010 " <method name=\"SetQueued\"/>\n"
5011 " <method name=\"Accept\"/>\n"
5012 " <method name=\"Hangup\">\n"
5013 " <arg direction=\"in\" type=\"u\" name=\"reason\"/>\n"
5014 " <arg direction=\"in\" type=\"s\" name=\"detailedHangupReason\"/>\n"
5015 " <arg direction=\"in\" type=\"s\" name=\"message\"/>\n"
5017 " <method name=\"AddContent\">\n"
5018 " <arg direction=\"in\" type=\"s\" name=\"contentName\"/>\n"
5019 " <arg direction=\"in\" type=\"u\" name=\"contentType\"/>\n"
5020 " <arg direction=\"in\" type=\"u\" name=\"initialDirection\"/>\n"
5021 " <arg direction=\"out\" type=\"o\" name=\"content\"/>\n"
5023 " <signal name=\"ContentAdded\">\n"
5024 " <arg type=\"o\" name=\"content\"/>\n"
5026 " <signal name=\"ContentRemoved\">\n"
5027 " <arg type=\"o\" name=\"content\"/>\n"
5028 " <arg type=\"(uuss)\" name=\"reason\">\n"
5029 " <annotation value=\"Tp::CallStateReason\" name=\"com.trolltech.QtDBus.QtTypeName.In1\"/>\n"
5032 " <signal name=\"CallStateChanged\">\n"
5033 " <arg type=\"u\" name=\"callState\"/>\n"
5034 " <arg type=\"u\" name=\"callFlags\"/>\n"
5035 " <arg type=\"(uuss)\" name=\"callStateReason\">\n"
5036 " <annotation value=\"Tp::CallStateReason\" name=\"com.trolltech.QtDBus.QtTypeName.In2\"/>\n"
5038 " <arg type=\"a{sv}\" name=\"callStateDetails\"/>\n"
5040 " <signal name=\"CallMembersChanged\">\n"
5041 " <arg type=\"a{uu}\" name=\"flagsChanged\">\n"
5042 " <annotation value=\"Tp::CallMemberMap\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
5044 " <arg type=\"a{us}\" name=\"identifiers\">\n"
5045 " <annotation value=\"Tp::HandleIdentifierMap\" name=\"com.trolltech.QtDBus.QtTypeName.In1\"/>\n"
5047 " <arg type=\"au\" name=\"removed\"/>\n"
5048 " <arg type=\"(uuss)\" name=\"reason\">\n"
5049 " <annotation value=\"Tp::CallStateReason\" name=\"com.trolltech.QtDBus.QtTypeName.In3\"/>\n"
5055 Q_PROPERTY(QVariantMap CallStateDetails READ CallStateDetails )
5059 Q_PROPERTY(
bool HardwareStreaming READ HardwareStreaming )
5062 Q_PROPERTY(uint InitialTransport READ InitialTransport )
5063 Q_PROPERTY(
bool InitialAudio READ InitialAudio )
5064 Q_PROPERTY(
bool InitialVideo READ InitialVideo )
5065 Q_PROPERTY(
QString InitialAudioName READ InitialAudioName )
5066 Q_PROPERTY(
QString InitialVideoName READ InitialVideoName )
5067 Q_PROPERTY(
bool MutableContents READ MutableContents )
5073 typedef Tp::MethodInvocationContextPtr< > SetRingingContextPtr;
5074 typedef Tp::MethodInvocationContextPtr< > SetQueuedContextPtr;
5075 typedef Tp::MethodInvocationContextPtr< > AcceptContextPtr;
5076 typedef Tp::MethodInvocationContextPtr< > HangupContextPtr;
5077 typedef Tp::MethodInvocationContextPtr< QDBusObjectPath > AddContentContextPtr;
5163 QVariantMap CallStateDetails()
const;
5266 bool HardwareStreaming()
const;
5332 uint InitialTransport()
const;
5404 bool InitialAudio()
const;
5427 bool InitialVideo()
const;
5457 QString InitialAudioName()
const;
5475 QString InitialVideoName()
const;
5509 bool MutableContents()
const;
5732 void CallStateChanged(uint callState, uint callFlags,
const Tp::CallStateReason& callStateReason,
const QVariantMap& callStateDetails);
5772 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Type.ContactSearch")
5773 Q_CLASSINFO(
"D-Bus Introspection",
""
5774 " <interface name=\"org.freedesktop.Telepathy.Channel.Type.ContactSearch\">\n"
5775 " <property access=\"read\" type=\"u\" name=\"SearchState\"/>\n"
5776 " <property access=\"read\" type=\"u\" name=\"Limit\"/>\n"
5777 " <property access=\"read\" type=\"as\" name=\"AvailableSearchKeys\"/>\n"
5778 " <property access=\"read\" type=\"s\" name=\"Server\"/>\n"
5779 " <method name=\"Search\">\n"
5780 " <arg direction=\"in\" type=\"a{ss}\" name=\"terms\">\n"
5781 " <annotation value=\"Tp::ContactSearchMap\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
5784 " <method name=\"More\"/>\n"
5785 " <method name=\"Stop\"/>\n"
5786 " <signal name=\"SearchStateChanged\">\n"
5787 " <arg type=\"u\" name=\"state\"/>\n"
5788 " <arg type=\"s\" name=\"error\"/>\n"
5789 " <arg type=\"a{sv}\" name=\"details\"/>\n"
5791 " <signal name=\"SearchResultReceived\">\n"
5792 " <arg type=\"a{sa(sasas)}\" name=\"result\">\n"
5793 " <annotation value=\"Tp::ContactSearchResultMap\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
5798 Q_PROPERTY(uint SearchState READ SearchState )
5799 Q_PROPERTY(uint Limit READ Limit )
5800 Q_PROPERTY(
QStringList AvailableSearchKeys READ AvailableSearchKeys )
5801 Q_PROPERTY(
QString Server READ Server )
5807 typedef Tp::MethodInvocationContextPtr< > SearchContextPtr;
5808 typedef Tp::MethodInvocationContextPtr< > MoreContextPtr;
5809 typedef Tp::MethodInvocationContextPtr< > StopContextPtr;
5824 uint SearchState()
const;
6009 void SearchStateChanged(uint state,
const QString& error,
const QVariantMap& details);
6036 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Type.DBusTube")
6037 Q_CLASSINFO(
"D-Bus Introspection",
""
6038 " <interface name=\"org.freedesktop.Telepathy.Channel.Type.DBusTube\">\n"
6039 " <property access=\"read\" type=\"s\" name=\"ServiceName\"/>\n"
6040 " <property access=\"read\" type=\"a{us}\" name=\"DBusNames\">\n"
6041 " <annotation value=\"Tp::DBusTubeParticipants\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
6043 " <property access=\"read\" type=\"au\" name=\"SupportedAccessControls\"/>\n"
6044 " <method name=\"Offer\">\n"
6045 " <arg direction=\"in\" type=\"a{sv}\" name=\"parameters\">\n"
6046 " <annotation value=\"QVariantMap\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
6048 " <arg direction=\"in\" type=\"u\" name=\"accesscontrol\"/>\n"
6049 " <arg direction=\"out\" type=\"s\" name=\"address\"/>\n"
6051 " <method name=\"Accept\">\n"
6052 " <arg direction=\"in\" type=\"u\" name=\"accesscontrol\"/>\n"
6053 " <arg direction=\"out\" type=\"s\" name=\"address\"/>\n"
6055 " <signal name=\"DBusNamesChanged\">\n"
6056 " <arg type=\"a{us}\" name=\"added\">\n"
6057 " <annotation value=\"Tp::DBusTubeParticipants\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
6059 " <arg type=\"au\" name=\"removed\"/>\n"
6063 Q_PROPERTY(
QString ServiceName READ ServiceName )
6065 Q_PROPERTY(
Tp::UIntList SupportedAccessControls READ SupportedAccessControls )
6071 typedef Tp::MethodInvocationContextPtr< QString > OfferContextPtr;
6072 typedef Tp::MethodInvocationContextPtr< QString > AcceptContextPtr;
6167 QString Offer(
const QVariantMap& parameters, uint accesscontrol,
const QDBusMessage& dbusMessage);
6223 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Type.FileTransfer")
6224 Q_CLASSINFO(
"D-Bus Introspection",
""
6225 " <interface name=\"org.freedesktop.Telepathy.Channel.Type.FileTransfer\">\n"
6226 " <property access=\"read\" type=\"u\" name=\"State\"/>\n"
6227 " <property access=\"read\" type=\"s\" name=\"ContentType\"/>\n"
6228 " <property access=\"read\" type=\"s\" name=\"Filename\"/>\n"
6229 " <property access=\"read\" type=\"t\" name=\"Size\"/>\n"
6230 " <property access=\"read\" type=\"u\" name=\"ContentHashType\"/>\n"
6231 " <property access=\"read\" type=\"s\" name=\"ContentHash\"/>\n"
6232 " <property access=\"read\" type=\"s\" name=\"Description\"/>\n"
6233 " <property access=\"read\" type=\"x\" name=\"Date\"/>\n"
6234 " <property access=\"read\" type=\"a{uau}\" name=\"AvailableSocketTypes\">\n"
6235 " <annotation value=\"Tp::SupportedSocketMap\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
6237 " <property access=\"read\" type=\"t\" name=\"TransferredBytes\"/>\n"
6238 " <property access=\"read\" type=\"t\" name=\"InitialOffset\"/>\n"
6239 " <property access=\"readwrite\" type=\"s\" name=\"URI\"/>\n"
6240 " <property access=\"read\" type=\"s\" name=\"FileCollection\"/>\n"
6241 " <method name=\"AcceptFile\">\n"
6242 " <arg direction=\"in\" type=\"u\" name=\"addressType\"/>\n"
6243 " <arg direction=\"in\" type=\"u\" name=\"accessControl\"/>\n"
6244 " <arg direction=\"in\" type=\"v\" name=\"accessControlParam\"/>\n"
6245 " <arg direction=\"in\" type=\"t\" name=\"offset\"/>\n"
6246 " <arg direction=\"out\" type=\"v\" name=\"address\"/>\n"
6248 " <method name=\"ProvideFile\">\n"
6249 " <arg direction=\"in\" type=\"u\" name=\"addressType\"/>\n"
6250 " <arg direction=\"in\" type=\"u\" name=\"accessControl\"/>\n"
6251 " <arg direction=\"in\" type=\"v\" name=\"accessControlParam\"/>\n"
6252 " <arg direction=\"out\" type=\"v\" name=\"address\"/>\n"
6254 " <signal name=\"FileTransferStateChanged\">\n"
6255 " <arg type=\"u\" name=\"state\"/>\n"
6256 " <arg type=\"u\" name=\"reason\"/>\n"
6258 " <signal name=\"TransferredBytesChanged\">\n"
6259 " <arg type=\"t\" name=\"count\"/>\n"
6261 " <signal name=\"InitialOffsetDefined\">\n"
6262 " <arg type=\"t\" name=\"initialOffset\"/>\n"
6264 " <signal name=\"URIDefined\">\n"
6265 " <arg type=\"s\" name=\"URI\"/>\n"
6269 Q_PROPERTY(uint State READ State )
6270 Q_PROPERTY(
QString ContentType READ ContentType )
6271 Q_PROPERTY(
QString Filename READ Filename )
6272 Q_PROPERTY(qulonglong Size READ Size )
6273 Q_PROPERTY(uint ContentHashType READ ContentHashType )
6274 Q_PROPERTY(
QString ContentHash READ ContentHash )
6275 Q_PROPERTY(
QString Description READ Description )
6276 Q_PROPERTY(qlonglong Date READ Date )
6278 Q_PROPERTY(qulonglong TransferredBytes READ TransferredBytes )
6279 Q_PROPERTY(qulonglong InitialOffset READ InitialOffset )
6280 Q_PROPERTY(
QString URI READ URI WRITE SetURI)
6281 Q_PROPERTY(
QString FileCollection READ FileCollection )
6287 typedef Tp::MethodInvocationContextPtr< QDBusVariant > AcceptFileContextPtr;
6288 typedef Tp::MethodInvocationContextPtr< QDBusVariant > ProvideFileContextPtr;
6375 qulonglong Size()
const;
6404 uint ContentHashType()
const;
6466 qlonglong Date()
const;
6513 qulonglong TransferredBytes()
const;
6538 qulonglong InitialOffset()
const;
6612 void SetURI(
const QString &newValue);
6647 QString FileCollection()
const;
6747 void FileTransferStateChanged(uint state, uint reason);
6760 void TransferredBytesChanged(qulonglong count);
6773 void InitialOffsetDefined(qulonglong initialOffset);
6786 void URIDefined(
const QString& URI);
6799 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Type.RoomList")
6800 Q_CLASSINFO(
"D-Bus Introspection",
""
6801 " <interface name=\"org.freedesktop.Telepathy.Channel.Type.RoomList\">\n"
6802 " <property access=\"read\" type=\"s\" name=\"Server\"/>\n"
6803 " <method name=\"GetListingRooms\">\n"
6804 " <arg direction=\"out\" type=\"b\" name=\"inProgress\"/>\n"
6806 " <method name=\"ListRooms\"/>\n"
6807 " <method name=\"StopListing\"/>\n"
6808 " <signal name=\"GotRooms\">\n"
6809 " <arg type=\"a(usa{sv})\" name=\"rooms\">\n"
6810 " <annotation value=\"Tp::RoomInfoList\" name=\"com.trolltech.QtDBus.QtTypeName.In0\"/>\n"
6813 " <signal name=\"ListingRooms\">\n"
6814 " <arg type=\"b\" name=\"listing\"/>\n"
6818 Q_PROPERTY(
QString Server READ Server )
6824 typedef Tp::MethodInvocationContextPtr< bool > GetListingRoomsContextPtr;
6825 typedef Tp::MethodInvocationContextPtr< > ListRoomsContextPtr;
6826 typedef Tp::MethodInvocationContextPtr< > StopListingContextPtr;
6932 void ListingRooms(
bool listing);
6945 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Type.ServerAuthentication")
6946 Q_CLASSINFO(
"D-Bus Introspection",
""
6947 " <interface name=\"org.freedesktop.Telepathy.Channel.Type.ServerAuthentication\">\n"
6948 " <property access=\"read\" type=\"s\" name=\"AuthenticationMethod\"/>\n"
6951 Q_PROPERTY(
QString AuthenticationMethod READ AuthenticationMethod )
6977 QString AuthenticationMethod()
const;
6990 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Type.ServerTLSConnection")
6991 Q_CLASSINFO(
"D-Bus Introspection",
""
6992 " <interface name=\"org.freedesktop.Telepathy.Channel.Type.ServerTLSConnection\">\n"
6993 " <property access=\"read\" type=\"o\" name=\"ServerCertificate\"/>\n"
6994 " <property access=\"read\" type=\"s\" name=\"Hostname\"/>\n"
6995 " <property access=\"read\" type=\"as\" name=\"ReferenceIdentities\"/>\n"
6999 Q_PROPERTY(
QString Hostname READ Hostname )
7000 Q_PROPERTY(
QStringList ReferenceIdentities READ ReferenceIdentities )
7078 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Type.StreamTube")
7079 Q_CLASSINFO(
"D-Bus Introspection",
""
7080 " <interface name=\"org.freedesktop.Telepathy.Channel.Type.StreamTube\">\n"
7081 " <property access=\"read\" type=\"s\" name=\"Service\"/>\n"
7082 " <property access=\"read\" type=\"a{uau}\" name=\"SupportedSocketTypes\">\n"
7083 " <annotation value=\"Tp::SupportedSocketMap\" name=\"com.trolltech.QtDBus.QtTypeName\"/>\n"
7085 " <method name=\"Offer\">\n"
7086 " <arg direction=\"in\" type=\"u\" name=\"addresstype\"/>\n"
7087 " <arg direction=\"in\" type=\"v\" name=\"address\"/>\n"
7088 " <arg direction=\"in\" type=\"u\" name=\"accesscontrol\"/>\n"
7089 " <arg direction=\"in\" type=\"a{sv}\" name=\"parameters\">\n"
7090 " <annotation value=\"QVariantMap\" name=\"com.trolltech.QtDBus.QtTypeName.In3\"/>\n"
7093 " <method name=\"Accept\">\n"
7094 " <arg direction=\"in\" type=\"u\" name=\"addresstype\"/>\n"
7095 " <arg direction=\"in\" type=\"u\" name=\"accesscontrol\"/>\n"
7096 " <arg direction=\"in\" type=\"v\" name=\"accesscontrolparam\"/>\n"
7097 " <arg direction=\"out\" type=\"v\" name=\"address\"/>\n"
7099 " <signal name=\"NewRemoteConnection\">\n"
7100 " <arg type=\"u\" name=\"handle\"/>\n"
7101 " <arg type=\"v\" name=\"connectionParam\"/>\n"
7102 " <arg type=\"u\" name=\"connectionID\"/>\n"
7104 " <signal name=\"NewLocalConnection\">\n"
7105 " <arg type=\"u\" name=\"connectionID\"/>\n"
7107 " <signal name=\"ConnectionClosed\">\n"
7108 " <arg type=\"u\" name=\"connectionID\"/>\n"
7109 " <arg type=\"s\" name=\"error\"/>\n"
7110 " <arg type=\"s\" name=\"message\"/>\n"
7114 Q_PROPERTY(
QString Service READ Service )
7121 typedef Tp::MethodInvocationContextPtr< > OfferContextPtr;
7122 typedef Tp::MethodInvocationContextPtr< QDBusVariant > AcceptContextPtr;
7218 void Offer(uint addresstype,
const QDBusVariant& address, uint accesscontrol,
const QVariantMap& parameters,
const QDBusMessage& dbusMessage);
7297 void NewRemoteConnection(uint handle,
const QDBusVariant& connectionParam, uint connectionID);
7312 void NewLocalConnection(uint connectionID);
7343 void ConnectionClosed(uint connectionID,
const QString& error,
const QString& message);
7356 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Type.StreamedMedia")
7357 Q_CLASSINFO(
"D-Bus Introspection",
""
7358 " <interface name=\"org.freedesktop.Telepathy.Channel.Type.StreamedMedia\">\n"
7359 " <property access=\"read\" type=\"b\" name=\"InitialAudio\"/>\n"
7360 " <property access=\"read\" type=\"b\" name=\"InitialVideo\"/>\n"
7361 " <property access=\"read\" type=\"b\" name=\"ImmutableStreams\"/>\n"
7362 " <method name=\"ListStreams\">\n"
7363 " <arg direction=\"out\" type=\"a(uuuuuu)\" name=\"streams\">\n"
7364 " <annotation value=\"Tp::MediaStreamInfoList\" name=\"com.trolltech.QtDBus.QtTypeName.Out0\"/>\n"
7367 " <method name=\"RemoveStreams\">\n"
7368 " <arg direction=\"in\" type=\"au\" name=\"streams\"/>\n"
7370 " <method name=\"RequestStreamDirection\">\n"
7371 " <arg direction=\"in\" type=\"u\" name=\"streamID\"/>\n"
7372 " <arg direction=\"in\" type=\"u\" name=\"streamDirection\"/>\n"
7374 " <method name=\"RequestStreams\">\n"
7375 " <arg direction=\"in\" type=\"u\" name=\"contactHandle\"/>\n"
7376 " <arg direction=\"in\" type=\"au\" name=\"types\"/>\n"
7377 " <arg direction=\"out\" type=\"a(uuuuuu)\" name=\"streams\">\n"
7378 " <annotation value=\"Tp::MediaStreamInfoList\" name=\"com.trolltech.QtDBus.QtTypeName.Out0\"/>\n"
7381 " <signal name=\"StreamAdded\">\n"
7382 " <arg type=\"u\" name=\"streamID\"/>\n"
7383 " <arg type=\"u\" name=\"contactHandle\"/>\n"
7384 " <arg type=\"u\" name=\"streamType\"/>\n"
7386 " <signal name=\"StreamDirectionChanged\">\n"
7387 " <arg type=\"u\" name=\"streamID\"/>\n"
7388 " <arg type=\"u\" name=\"streamDirection\"/>\n"
7389 " <arg type=\"u\" name=\"pendingFlags\"/>\n"
7391 " <signal name=\"StreamError\">\n"
7392 " <arg type=\"u\" name=\"streamID\"/>\n"
7393 " <arg type=\"u\" name=\"errorCode\"/>\n"
7394 " <arg type=\"s\" name=\"message\"/>\n"
7396 " <signal name=\"StreamRemoved\">\n"
7397 " <arg type=\"u\" name=\"streamID\"/>\n"
7399 " <signal name=\"StreamStateChanged\">\n"
7400 " <arg type=\"u\" name=\"streamID\"/>\n"
7401 " <arg type=\"u\" name=\"streamState\"/>\n"
7405 Q_PROPERTY(
bool InitialAudio READ InitialAudio )
7406 Q_PROPERTY(
bool InitialVideo READ InitialVideo )
7407 Q_PROPERTY(
bool ImmutableStreams READ ImmutableStreams )
7413 typedef Tp::MethodInvocationContextPtr< Tp::MediaStreamInfoList > ListStreamsContextPtr;
7414 typedef Tp::MethodInvocationContextPtr< > RemoveStreamsContextPtr;
7415 typedef Tp::MethodInvocationContextPtr< > RequestStreamDirectionContextPtr;
7416 typedef Tp::MethodInvocationContextPtr< Tp::MediaStreamInfoList > RequestStreamsContextPtr;
7509 bool InitialAudio()
const;
7532 bool InitialVideo()
const;
7577 bool ImmutableStreams()
const;
7676 void RequestStreamDirection(uint streamID, uint streamDirection,
const QDBusMessage& dbusMessage);
7751 void StreamAdded(uint streamID, uint contactHandle, uint streamType);
7770 void StreamDirectionChanged(uint streamID, uint streamDirection, uint pendingFlags);
7789 void StreamError(uint streamID, uint errorCode,
const QString& message);
7802 void StreamRemoved(uint streamID);
7818 void StreamStateChanged(uint streamID, uint streamState);
7831 Q_CLASSINFO(
"D-Bus Interface",
"org.freedesktop.Telepathy.Channel.Type.Text")
7832 Q_CLASSINFO(
"D-Bus Introspection",
""
7833 " <interface name=\"org.freedesktop.Telepathy.Channel.Type.Text\">\n"
7834 " <method name=\"AcknowledgePendingMessages\">\n"
7835 " <arg direction=\"in\" type=\"au\" name=\"IDs\"/>\n"
7837 " <method name=\"GetMessageTypes\">\n"
7838 " <arg direction=\"out\" type=\"au\" name=\"availableTypes\"/>\n"
7840 " <method name=\"ListPendingMessages\">\n"
7841 " <arg direction=\"in\" type=\"b\" name=\"clear\"/>\n"
7842 " <arg direction=\"out\" type=\"a(uuuuus)\" name=\"pendingMessages\">\n"
7843 " <annotation value=\"Tp::PendingTextMessageList\" name=\"com.trolltech.QtDBus.QtTypeName.Out0\"/>\n"
7846 " <method name=\"Send\">\n"
7847 " <arg direction=\"in\" type=\"u\" name=\"type\"/>\n"
7848 " <arg direction=\"in\" type=\"s\" name=\"text\"/>\n"
7850 " <signal name=\"LostMessage\"/>\n"
7851 " <signal name=\"Received\">\n"
7852 " <arg type=\"u\" name=\"ID\"/>\n"
7853 " <arg type=\"u\" name=\"timestamp\"/>\n"
7854 " <arg type=\"u\" name=\"sender\"/>\n"
7855 " <arg type=\"u\" name=\"type\"/>\n"
7856 " <arg type=\"u\" name=\"flags\"/>\n"
7857 " <arg type=\"s\" name=\"text\"/>\n"
7859 " <signal name=\"SendError\">\n"
7860 " <arg type=\"u\" name=\"error\"/>\n"
7861 " <arg type=\"u\" name=\"timestamp\"/>\n"
7862 " <arg type=\"u\" name=\"type\"/>\n"
7863 " <arg type=\"s\" name=\"text\"/>\n"
7865 " <signal name=\"Sent\">\n"
7866 " <arg type=\"u\" name=\"timestamp\"/>\n"
7867 " <arg type=\"u\" name=\"type\"/>\n"
7868 " <arg type=\"s\" name=\"text\"/>\n"
7877 typedef Tp::MethodInvocationContextPtr< > AcknowledgePendingMessagesContextPtr;
7878 typedef Tp::MethodInvocationContextPtr< Tp::UIntList > GetMessageTypesContextPtr;
7879 typedef Tp::MethodInvocationContextPtr< Tp::PendingTextMessageList > ListPendingMessagesContextPtr;
7880 typedef Tp::MethodInvocationContextPtr< > SendContextPtr;
8024 void Received(uint ID, uint timestamp, uint sender, uint type, uint flags,
const QString& text);
8046 void SendError(uint error, uint timestamp, uint type,
const QString& text);
8069 void Sent(uint timestamp, uint type,
const QString& text);
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:1443
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:3482
Definition: svc-channel.h:3330
Definition: svc-channel.h:3233
Definition: svc-channel.h:7353
Definition: svc-channel.h:5769
Definition: svc-channel.h:4427
Definition: svc-channel.h:4726
Base class for all the low-level service-side adaptors.
Definition: abstract-adaptor.h:40
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:2052
Definition: svc-channel.h:6942
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:1668
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:568
Definition: svc-channel.h:6796
CaptchaStatus
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/constants.h:3025
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:101
Definition: svc-channel.h:1510
Definition: svc-channel.h:546
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:2701
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:685
QFlags< MessagePartSupportFlag > MessagePartSupportFlags
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/constants.h:1106
Definition: svc-channel.h:4655
Definition: svc-channel.h:2794
Definition: svc-channel.h:1123
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:1262
QFlags< CallFlag > CallFlags
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/constants.h:574
Definition: svc-channel.h:4983
Definition: svc-channel.h:1930
Definition: svc-channel.h:7075
Definition: svc-channel.h:1834
Definition: svc-channel.h:6033
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:907
Definition: svc-channel.h:4815
SASLStatus
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/constants.h:3660
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:1646
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:320
Definition: svc-channel.h:27
Definition: svc-channel.h:6987
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:3100
Definition: svc-channel.h:628
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:885
Definition: svc-channel.h:7828
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:2083
Definition: svc-channel.h:2862
Definition: svc-channel.h:1760
CallState
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/constants.h:2286
Definition: svc-channel.h:3460
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:81
Definition: svc-channel.h:3824
Definition: svc-channel.h:2653
Definition: svc-channel.h:1011
Definition: svc-channel.h:6220
Definition: svc-channel.h:698
Definition: obj-x86_64-linux-gnu/TelepathyQt/_gen/types.h:287
Definition: abstract-adaptor.cpp:31