| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497 |
- # The PEP 484 type hints stub file for the QtDBus module.
- #
- # Generated by SIP 6.15.3
- #
- # Copyright (c) 2026 Riverbank Computing Limited <info@riverbankcomputing.com>
- #
- # This file is part of PyQt6.
- #
- # This file may be used under the terms of the GNU General Public License
- # version 3.0 as published by the Free Software Foundation and appearing in
- # the file LICENSE included in the packaging of this file. Please review the
- # following information to ensure the GNU General Public License version 3.0
- # requirements will be met: http://www.gnu.org/copyleft/gpl.html.
- #
- # If you do not wish to use this file under the terms of the GPL version 3.0
- # then you may purchase a commercial license. For more information contact
- # info@riverbankcomputing.com.
- #
- # This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
- # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
- import collections, re, typing, enum
- try:
- from warnings import deprecated
- except ImportError:
- pass
- import PyQt6.sip
- from PyQt6 import QtCore
- # Support for QDate, QDateTime and QTime.
- import datetime
- # Convenient type aliases.
- PYQT_SIGNAL = typing.Union[QtCore.pyqtSignal, QtCore.pyqtBoundSignal]
- PYQT_SLOT = typing.Union[collections.abc.Callable[..., Any], QtCore.pyqtBoundSignal]
- class QDBusAbstractAdaptor(QtCore.QObject):
- def __init__(self, parent: QtCore.QObject|None) -> None: ...
- def autoRelaySignals(self) -> bool: ...
- def setAutoRelaySignals(self, enable: bool) -> None: ...
- class QDBusAbstractInterface(QtCore.QObject):
- def __init__(self, service: str|None, path: str|None, interface: str, connection: 'QDBusConnection', parent: QtCore.QObject|None) -> None: ...
- def isInteractiveAuthorizationAllowed(self) -> bool: ...
- def setInteractiveAuthorizationAllowed(self, enable: bool) -> None: ...
- def disconnectNotify(self, signal: QtCore.QMetaMethod) -> None: ...
- def connectNotify(self, signal: QtCore.QMetaMethod) -> None: ...
- def asyncCallWithArgumentList(self, method: str|None, args: collections.abc.Iterable[typing.Any]) -> 'QDBusPendingCall': ...
- def asyncCall(self, method: str|None, *args: typing.Any) -> 'QDBusPendingCall': ...
- @typing.overload
- def callWithCallback(self, method: str|None, args: collections.abc.Iterable[typing.Any], returnMethod: PYQT_SLOT, errorMethod: PYQT_SLOT) -> bool: ...
- @typing.overload
- def callWithCallback(self, method: str|None, args: collections.abc.Iterable[typing.Any], slot: PYQT_SLOT) -> bool: ...
- def callWithArgumentList(self, mode: 'QDBus.CallMode', method: str|None, args: collections.abc.Iterable[typing.Any]) -> 'QDBusMessage': ...
- @typing.overload
- def call(self, method: str|None, *args: typing.Any) -> 'QDBusMessage': ...
- @typing.overload
- def call(self, mode: 'QDBus.CallMode', method: str|None, *args: typing.Any) -> 'QDBusMessage': ...
- def timeout(self) -> int: ...
- def setTimeout(self, timeout: int) -> None: ...
- def lastError(self) -> 'QDBusError': ...
- def interface(self) -> str: ...
- def path(self) -> str: ...
- def service(self) -> str: ...
- def connection(self) -> 'QDBusConnection': ...
- def isValid(self) -> bool: ...
- class QDBusArgument(PyQt6.sip.simplewrapper):
- @typing.overload
- def __init__(self) -> None: ...
- @typing.overload
- def __init__(self, other: 'QDBusArgument') -> None: ...
- @typing.overload
- def __init__(self, arg: typing.Any, id: int = ...) -> None: ...
- def swap(self, other: 'QDBusArgument') -> None: ...
- def endMapEntry(self) -> None: ...
- def beginMapEntry(self) -> None: ...
- def endMap(self) -> None: ...
- @typing.overload
- def beginMap(self, keyMetaType: QtCore.QMetaType, valueMetaType: QtCore.QMetaType) -> None: ...
- @typing.overload
- def beginMap(self, kid: int, vid: int) -> None: ...
- def endArray(self) -> None: ...
- @typing.overload
- def beginArray(self, elementMetaType: QtCore.QMetaType) -> None: ...
- @typing.overload
- def beginArray(self, id: int) -> None: ...
- def endStructure(self) -> None: ...
- def beginStructure(self) -> None: ...
- def add(self, arg: typing.Any, id: int = ...) -> None: ...
- class QDBus(PyQt6.sip.simplewrapper):
- class CallMode(enum.Enum):
- NoBlock = ... # type: QDBus.CallMode
- Block = ... # type: QDBus.CallMode
- BlockWithGui = ... # type: QDBus.CallMode
- AutoDetect = ... # type: QDBus.CallMode
- class QDBusConnection(PyQt6.sip.simplewrapper):
- class ConnectionCapability(enum.Flag):
- UnixFileDescriptorPassing = ... # type: QDBusConnection.ConnectionCapability
- class UnregisterMode(enum.Enum):
- UnregisterNode = ... # type: QDBusConnection.UnregisterMode
- UnregisterTree = ... # type: QDBusConnection.UnregisterMode
- class RegisterOption(enum.Flag):
- ExportAdaptors = ... # type: QDBusConnection.RegisterOption
- ExportScriptableSlots = ... # type: QDBusConnection.RegisterOption
- ExportScriptableSignals = ... # type: QDBusConnection.RegisterOption
- ExportScriptableProperties = ... # type: QDBusConnection.RegisterOption
- ExportScriptableInvokables = ... # type: QDBusConnection.RegisterOption
- ExportScriptableContents = ... # type: QDBusConnection.RegisterOption
- ExportNonScriptableSlots = ... # type: QDBusConnection.RegisterOption
- ExportNonScriptableSignals = ... # type: QDBusConnection.RegisterOption
- ExportNonScriptableProperties = ... # type: QDBusConnection.RegisterOption
- ExportNonScriptableInvokables = ... # type: QDBusConnection.RegisterOption
- ExportNonScriptableContents = ... # type: QDBusConnection.RegisterOption
- ExportAllSlots = ... # type: QDBusConnection.RegisterOption
- ExportAllSignals = ... # type: QDBusConnection.RegisterOption
- ExportAllProperties = ... # type: QDBusConnection.RegisterOption
- ExportAllInvokables = ... # type: QDBusConnection.RegisterOption
- ExportAllContents = ... # type: QDBusConnection.RegisterOption
- ExportAllSignal = ... # type: QDBusConnection.RegisterOption
- ExportChildObjects = ... # type: QDBusConnection.RegisterOption
- class BusType(enum.Enum):
- SessionBus = ... # type: QDBusConnection.BusType
- SystemBus = ... # type: QDBusConnection.BusType
- ActivationBus = ... # type: QDBusConnection.BusType
- @typing.overload
- def __init__(self, name: str|None) -> None: ...
- @typing.overload
- def __init__(self, other: 'QDBusConnection') -> None: ...
- def swap(self, other: 'QDBusConnection') -> None: ...
- @staticmethod
- def systemBus() -> 'QDBusConnection': ...
- @staticmethod
- def sessionBus() -> 'QDBusConnection': ...
- @staticmethod
- def localMachineId() -> QtCore.QByteArray: ...
- @staticmethod
- def disconnectFromPeer(name: str|None) -> None: ...
- @staticmethod
- def disconnectFromBus(name: str|None) -> None: ...
- @staticmethod
- def connectToPeer(address: str|None, name: str|None) -> 'QDBusConnection': ...
- @typing.overload
- @staticmethod
- def connectToBus(type: 'QDBusConnection.BusType', name: str|None) -> 'QDBusConnection': ...
- @typing.overload
- @staticmethod
- def connectToBus(address: str|None, name: str|None) -> 'QDBusConnection': ...
- def interface(self) -> 'QDBusConnectionInterface|None': ...
- def unregisterService(self, serviceName: str|None) -> bool: ...
- def registerService(self, serviceName: str|None) -> bool: ...
- def objectRegisteredAt(self, path: str|None) -> QtCore.QObject|None: ...
- def unregisterObject(self, path: str|None, mode: 'QDBusConnection.UnregisterMode' = ...) -> None: ...
- @typing.overload
- def registerObject(self, path: str|None, object: QtCore.QObject|None, options: 'QDBusConnection.RegisterOption' = ...) -> bool: ...
- @typing.overload
- def registerObject(self, path: str|None, interface: str|None, object: QtCore.QObject|None, options: 'QDBusConnection.RegisterOption' = ...) -> bool: ...
- @typing.overload
- def disconnect(self, service: str|None, path: str|None, interface: str|None, name: str|None, slot: PYQT_SLOT) -> bool: ...
- @typing.overload
- def disconnect(self, service: str|None, path: str|None, interface: str|None, name: str|None, signature: str|None, slot: PYQT_SLOT) -> bool: ...
- @typing.overload
- def disconnect(self, service: str|None, path: str|None, interface: str|None, name: str|None, argumentMatch: collections.abc.Iterable[str|None], signature: str|None, slot: PYQT_SLOT) -> bool: ...
- @typing.overload
- def connect(self, service: str|None, path: str|None, interface: str|None, name: str|None, slot: PYQT_SLOT) -> bool: ...
- @typing.overload
- def connect(self, service: str|None, path: str|None, interface: str|None, name: str|None, signature: str|None, slot: PYQT_SLOT) -> bool: ...
- @typing.overload
- def connect(self, service: str|None, path: str|None, interface: str|None, name: str|None, argumentMatch: collections.abc.Iterable[str|None], signature: str|None, slot: PYQT_SLOT) -> bool: ...
- def asyncCall(self, message: 'QDBusMessage', timeout: int = ...) -> 'QDBusPendingCall': ...
- def call(self, message: 'QDBusMessage', mode: QDBus.CallMode = ..., timeout: int = ...) -> 'QDBusMessage': ...
- def callWithCallback(self, message: 'QDBusMessage', returnMethod: PYQT_SLOT, errorMethod: PYQT_SLOT, timeout: int = ...) -> bool: ...
- def send(self, message: 'QDBusMessage') -> bool: ...
- def connectionCapabilities(self) -> 'QDBusConnection.ConnectionCapability': ...
- def name(self) -> str: ...
- def lastError(self) -> 'QDBusError': ...
- def baseService(self) -> str: ...
- def isConnected(self) -> bool: ...
- class QDBusConnectionInterface(QDBusAbstractInterface):
- class RegisterServiceReply(enum.Enum):
- ServiceNotRegistered = ... # type: QDBusConnectionInterface.RegisterServiceReply
- ServiceRegistered = ... # type: QDBusConnectionInterface.RegisterServiceReply
- ServiceQueued = ... # type: QDBusConnectionInterface.RegisterServiceReply
- class ServiceReplacementOptions(enum.Enum):
- DontAllowReplacement = ... # type: QDBusConnectionInterface.ServiceReplacementOptions
- AllowReplacement = ... # type: QDBusConnectionInterface.ServiceReplacementOptions
- class ServiceQueueOptions(enum.Enum):
- DontQueueService = ... # type: QDBusConnectionInterface.ServiceQueueOptions
- QueueService = ... # type: QDBusConnectionInterface.ServiceQueueOptions
- ReplaceExistingService = ... # type: QDBusConnectionInterface.ServiceQueueOptions
- def disconnectNotify(self, a0: QtCore.QMetaMethod) -> None: ...
- def connectNotify(self, a0: QtCore.QMetaMethod) -> None: ...
- callWithCallbackFailed: typing.ClassVar[QtCore.pyqtSignal]
- serviceOwnerChanged: typing.ClassVar[QtCore.pyqtSignal]
- serviceUnregistered: typing.ClassVar[QtCore.pyqtSignal]
- serviceRegistered: typing.ClassVar[QtCore.pyqtSignal]
- def serviceCredentials(self, serviceName: str|None) -> QDBusReply: ...
- def startService(self, name: str|None) -> QDBusReply: ...
- def serviceUid(self, serviceName: str|None) -> QDBusReply: ...
- def servicePid(self, serviceName: str|None) -> QDBusReply: ...
- def registerService(self, serviceName: str|None, qoption: 'QDBusConnectionInterface.ServiceQueueOptions' = ..., roption: 'QDBusConnectionInterface.ServiceReplacementOptions' = ...) -> QDBusReply: ...
- def unregisterService(self, serviceName: str|None) -> QDBusReply: ...
- def serviceOwner(self, name: str|None) -> QDBusReply: ...
- def isServiceRegistered(self, serviceName: str|None) -> QDBusReply: ...
- def activatableServiceNames(self) -> QDBusReply: ...
- def registeredServiceNames(self) -> QDBusReply: ...
- class QDBusError(PyQt6.sip.simplewrapper):
- class ErrorType(enum.Enum):
- NoError = ... # type: QDBusError.ErrorType
- Other = ... # type: QDBusError.ErrorType
- Failed = ... # type: QDBusError.ErrorType
- NoMemory = ... # type: QDBusError.ErrorType
- ServiceUnknown = ... # type: QDBusError.ErrorType
- NoReply = ... # type: QDBusError.ErrorType
- BadAddress = ... # type: QDBusError.ErrorType
- NotSupported = ... # type: QDBusError.ErrorType
- LimitsExceeded = ... # type: QDBusError.ErrorType
- AccessDenied = ... # type: QDBusError.ErrorType
- NoServer = ... # type: QDBusError.ErrorType
- Timeout = ... # type: QDBusError.ErrorType
- NoNetwork = ... # type: QDBusError.ErrorType
- AddressInUse = ... # type: QDBusError.ErrorType
- Disconnected = ... # type: QDBusError.ErrorType
- InvalidArgs = ... # type: QDBusError.ErrorType
- UnknownMethod = ... # type: QDBusError.ErrorType
- TimedOut = ... # type: QDBusError.ErrorType
- InvalidSignature = ... # type: QDBusError.ErrorType
- UnknownInterface = ... # type: QDBusError.ErrorType
- InternalError = ... # type: QDBusError.ErrorType
- UnknownObject = ... # type: QDBusError.ErrorType
- InvalidService = ... # type: QDBusError.ErrorType
- InvalidObjectPath = ... # type: QDBusError.ErrorType
- InvalidInterface = ... # type: QDBusError.ErrorType
- InvalidMember = ... # type: QDBusError.ErrorType
- UnknownProperty = ... # type: QDBusError.ErrorType
- PropertyReadOnly = ... # type: QDBusError.ErrorType
- def __init__(self, other: 'QDBusError') -> None: ...
- def swap(self, other: 'QDBusError') -> None: ...
- @staticmethod
- def errorString(error: 'QDBusError.ErrorType') -> str: ...
- def isValid(self) -> bool: ...
- def message(self) -> str: ...
- def name(self) -> str: ...
- def type(self) -> 'QDBusError.ErrorType': ...
- class QDBusObjectPath(PyQt6.sip.simplewrapper):
- @typing.overload
- def __init__(self) -> None: ...
- @typing.overload
- def __init__(self, objectPath: str|None) -> None: ...
- @typing.overload
- def __init__(self, a0: 'QDBusObjectPath') -> None: ...
- def __ge__(self, rhs: 'QDBusObjectPath') -> bool: ...
- def __eq__(self, other: object): ...
- def __ne__(self, other: object): ...
- def __lt__(self, rhs: 'QDBusObjectPath') -> bool: ...
- def swap(self, other: 'QDBusObjectPath') -> None: ...
- def __hash__(self) -> int: ...
- def setPath(self, objectPath: str|None) -> None: ...
- def path(self) -> str: ...
- class QDBusSignature(PyQt6.sip.simplewrapper):
- @typing.overload
- def __init__(self) -> None: ...
- @typing.overload
- def __init__(self, dBusSignature: str|None) -> None: ...
- @typing.overload
- def __init__(self, a0: 'QDBusSignature') -> None: ...
- def __ge__(self, rhs: 'QDBusSignature') -> bool: ...
- def __eq__(self, other: object): ...
- def __ne__(self, other: object): ...
- def __lt__(self, rhs: 'QDBusSignature') -> bool: ...
- def swap(self, other: 'QDBusSignature') -> None: ...
- def __hash__(self) -> int: ...
- def setSignature(self, dBusSignature: str|None) -> None: ...
- def signature(self) -> str: ...
- class QDBusVariant(PyQt6.sip.simplewrapper):
- @typing.overload
- def __init__(self) -> None: ...
- @typing.overload
- def __init__(self, dBusVariant: typing.Any) -> None: ...
- @typing.overload
- def __init__(self, a0: 'QDBusVariant') -> None: ...
- def __ne__(self, other: object): ...
- def __eq__(self, other: object): ...
- def swap(self, other: 'QDBusVariant') -> None: ...
- def setVariant(self, dBusVariant: typing.Any) -> None: ...
- def variant(self) -> typing.Any: ...
- class QDBusInterface(QDBusAbstractInterface):
- def __init__(self, service: str|None, path: str|None, interface: str|None = ..., connection: QDBusConnection = ..., parent: QtCore.QObject|None = ...) -> None: ...
- class QDBusMessage(PyQt6.sip.simplewrapper):
- class MessageType(enum.Enum):
- InvalidMessage = ... # type: QDBusMessage.MessageType
- MethodCallMessage = ... # type: QDBusMessage.MessageType
- ReplyMessage = ... # type: QDBusMessage.MessageType
- ErrorMessage = ... # type: QDBusMessage.MessageType
- SignalMessage = ... # type: QDBusMessage.MessageType
- @typing.overload
- def __init__(self) -> None: ...
- @typing.overload
- def __init__(self, other: 'QDBusMessage') -> None: ...
- def isInteractiveAuthorizationAllowed(self) -> bool: ...
- def setInteractiveAuthorizationAllowed(self, enable: bool) -> None: ...
- @staticmethod
- def createTargetedSignal(service: str|None, path: str|None, interface: str|None, name: str|None) -> 'QDBusMessage': ...
- def swap(self, other: 'QDBusMessage') -> None: ...
- def __lshift__(self, arg: typing.Any) -> 'QDBusMessage': ...
- def arguments(self) -> list[typing.Any]: ...
- def setArguments(self, arguments: collections.abc.Iterable[typing.Any]) -> None: ...
- def autoStartService(self) -> bool: ...
- def setAutoStartService(self, enable: bool) -> None: ...
- def isDelayedReply(self) -> bool: ...
- def setDelayedReply(self, enable: bool) -> None: ...
- def isReplyRequired(self) -> bool: ...
- def signature(self) -> str: ...
- def type(self) -> 'QDBusMessage.MessageType': ...
- def errorMessage(self) -> str: ...
- def errorName(self) -> str: ...
- def member(self) -> str: ...
- def interface(self) -> str: ...
- def path(self) -> str: ...
- def service(self) -> str: ...
- @typing.overload
- def createErrorReply(self, name: str|None, msg: str|None) -> 'QDBusMessage': ...
- @typing.overload
- def createErrorReply(self, error: QDBusError) -> 'QDBusMessage': ...
- @typing.overload
- def createErrorReply(self, type: QDBusError.ErrorType, msg: str|None) -> 'QDBusMessage': ...
- @typing.overload
- def createReply(self, arguments: collections.abc.Iterable[typing.Any] = ...) -> 'QDBusMessage': ...
- @typing.overload
- def createReply(self, argument: typing.Any) -> 'QDBusMessage': ...
- @typing.overload
- @staticmethod
- def createError(name: str|None, msg: str|None) -> 'QDBusMessage': ...
- @typing.overload
- @staticmethod
- def createError(error: QDBusError) -> 'QDBusMessage': ...
- @typing.overload
- @staticmethod
- def createError(type: QDBusError.ErrorType, msg: str|None) -> 'QDBusMessage': ...
- @staticmethod
- def createMethodCall(service: str|None, path: str|None, interface: str|None, method: str|None) -> 'QDBusMessage': ...
- @staticmethod
- def createSignal(path: str|None, interface: str|None, name: str|None) -> 'QDBusMessage': ...
- class QDBusPendingCall(PyQt6.sip.simplewrapper):
- def __init__(self, other: 'QDBusPendingCall') -> None: ...
- def swap(self, other: 'QDBusPendingCall') -> None: ...
- @staticmethod
- def fromCompletedCall(message: QDBusMessage) -> 'QDBusPendingCall': ...
- @staticmethod
- def fromError(error: QDBusError) -> 'QDBusPendingCall': ...
- class QDBusPendingCallWatcher(QtCore.QObject, QDBusPendingCall):
- def __init__(self, call: QDBusPendingCall, parent: QtCore.QObject|None = ...) -> None: ...
- finished: typing.ClassVar[QtCore.pyqtSignal]
- def waitForFinished(self) -> None: ...
- def isFinished(self) -> bool: ...
- class QDBusServiceWatcher(QtCore.QObject):
- class WatchModeFlag(enum.Flag):
- WatchForRegistration = ... # type: QDBusServiceWatcher.WatchModeFlag
- WatchForUnregistration = ... # type: QDBusServiceWatcher.WatchModeFlag
- WatchForOwnerChange = ... # type: QDBusServiceWatcher.WatchModeFlag
- @typing.overload
- def __init__(self, parent: QtCore.QObject|None = ...) -> None: ...
- @typing.overload
- def __init__(self, service: str|None, connection: QDBusConnection, watchMode: 'QDBusServiceWatcher.WatchModeFlag' = ..., parent: QtCore.QObject|None = ...) -> None: ...
- serviceOwnerChanged: typing.ClassVar[QtCore.pyqtSignal]
- serviceUnregistered: typing.ClassVar[QtCore.pyqtSignal]
- serviceRegistered: typing.ClassVar[QtCore.pyqtSignal]
- def setConnection(self, connection: QDBusConnection) -> None: ...
- def connection(self) -> QDBusConnection: ...
- def setWatchMode(self, mode: 'QDBusServiceWatcher.WatchModeFlag') -> None: ...
- def watchMode(self) -> 'QDBusServiceWatcher.WatchModeFlag': ...
- def removeWatchedService(self, service: str|None) -> bool: ...
- def addWatchedService(self, newService: str|None) -> None: ...
- def setWatchedServices(self, services: collections.abc.Iterable[str|None]) -> None: ...
- def watchedServices(self) -> list[str]: ...
- class QDBusUnixFileDescriptor(PyQt6.sip.simplewrapper):
- @typing.overload
- def __init__(self) -> None: ...
- @typing.overload
- def __init__(self, fileDescriptor: int) -> None: ...
- @typing.overload
- def __init__(self, other: 'QDBusUnixFileDescriptor') -> None: ...
- def swap(self, other: 'QDBusUnixFileDescriptor') -> None: ...
- @staticmethod
- def isSupported() -> bool: ...
- def setFileDescriptor(self, fileDescriptor: int) -> None: ...
- def fileDescriptor(self) -> int: ...
- def isValid(self) -> bool: ...
- class QDBusPendingReply(QDBusPendingCall):
- @typing.overload
- def __init__(self) -> None: ...
- @typing.overload
- def __init__(self, other: 'QDBusPendingReply') -> None: ...
- @typing.overload
- def __init__(self, call: QDBusPendingCall) -> None: ...
- @typing.overload
- def __init__(self, reply: QDBusMessage) -> None: ...
- def value(self, type: typing.Any = ...) -> typing.Any: ...
- def waitForFinished(self) -> None: ...
- def reply(self) -> QDBusMessage: ...
- def isValid(self) -> bool: ...
- def isFinished(self) -> bool: ...
- def isError(self) -> bool: ...
- def error(self) -> QDBusError: ...
- def argumentAt(self, index: int) -> typing.Any: ...
- class QDBusReply(PyQt6.sip.simplewrapper):
- @typing.overload
- def __init__(self, reply: QDBusMessage) -> None: ...
- @typing.overload
- def __init__(self, call: QDBusPendingCall) -> None: ...
- @typing.overload
- def __init__(self, error: QDBusError) -> None: ...
- @typing.overload
- def __init__(self, other: 'QDBusReply') -> None: ...
- def value(self, type: typing.Any = ...) -> typing.Any: ...
- def isValid(self) -> bool: ...
- def error(self) -> QDBusError: ...
|