| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- # The PEP 484 type hints stub file for the QtRemoteObjects 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
- from PyQt6 import QtNetwork
- # 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 QRemoteObjectSourceLocationInfo(PyQt6.sip.simplewrapper):
- hostUrl = ... # type: QtCore.QUrl
- typeName = ... # type: str|None
- @typing.overload
- def __init__(self) -> None: ...
- @typing.overload
- def __init__(self, typeName_: str|None, hostUrl_: QtCore.QUrl) -> None: ...
- @typing.overload
- def __init__(self, a0: 'QRemoteObjectSourceLocationInfo') -> None: ...
- def __ne__(self, other: object): ...
- def __eq__(self, other: object): ...
- class QtRemoteObjects(PyQt6.sip.simplewrapper):
- class InitialAction(enum.Enum):
- FetchRootSize = ... # type: QtRemoteObjects.InitialAction
- PrefetchData = ... # type: QtRemoteObjects.InitialAction
- class QAbstractItemModelReplica(QtCore.QAbstractItemModel):
- initialized: typing.ClassVar[QtCore.pyqtSignal]
- def setRootCacheSize(self, rootCacheSize: int) -> None: ...
- def rootCacheSize(self) -> int: ...
- def hasData(self, index: QtCore.QModelIndex, role: int) -> bool: ...
- def isInitialized(self) -> bool: ...
- def roleNames(self) -> dict[int, QtCore.QByteArray]: ...
- def availableRoles(self) -> list[int]: ...
- def flags(self, index: QtCore.QModelIndex) -> QtCore.Qt.ItemFlag: ...
- def headerData(self, section: int, orientation: QtCore.Qt.Orientation, role: int) -> typing.Any: ...
- def columnCount(self, parent: QtCore.QModelIndex = ...) -> int: ...
- def rowCount(self, parent: QtCore.QModelIndex = ...) -> int: ...
- def hasChildren(self, parent: QtCore.QModelIndex = ...) -> bool: ...
- def index(self, row: int, column: int, parent: QtCore.QModelIndex = ...) -> QtCore.QModelIndex: ...
- def parent(self, index: QtCore.QModelIndex) -> QtCore.QModelIndex: ...
- def setData(self, index: QtCore.QModelIndex, value: typing.Any, role: int = ...) -> bool: ...
- def data(self, index: QtCore.QModelIndex, role: int = ...) -> typing.Any: ...
- def selectionModel(self) -> QtCore.QItemSelectionModel|None: ...
- class QRemoteObjectReplica(QtCore.QObject):
- class State(enum.Enum):
- Uninitialized = ... # type: QRemoteObjectReplica.State
- Default = ... # type: QRemoteObjectReplica.State
- Valid = ... # type: QRemoteObjectReplica.State
- Suspect = ... # type: QRemoteObjectReplica.State
- SignatureMismatch = ... # type: QRemoteObjectReplica.State
- notified: typing.ClassVar[QtCore.pyqtSignal]
- stateChanged: typing.ClassVar[QtCore.pyqtSignal]
- initialized: typing.ClassVar[QtCore.pyqtSignal]
- def setNode(self, node: 'QRemoteObjectNode|None') -> None: ...
- def node(self) -> 'QRemoteObjectNode|None': ...
- def state(self) -> 'QRemoteObjectReplica.State': ...
- def isInitialized(self) -> bool: ...
- def waitForSource(self, timeout: int = ...) -> bool: ...
- def isReplicaValid(self) -> bool: ...
- class QRemoteObjectDynamicReplica(QRemoteObjectReplica): ...
- class QRemoteObjectAbstractPersistedStore(QtCore.QObject):
- def __init__(self, parent: QtCore.QObject|None = ...) -> None: ...
- def restoreProperties(self, repName: str|None, repSig: QtCore.QByteArray|bytes|bytearray|memoryview) -> list[typing.Any]: ...
- def saveProperties(self, repName: str|None, repSig: QtCore.QByteArray|bytes|bytearray|memoryview, values: collections.abc.Iterable[typing.Any]) -> None: ...
- class QRemoteObjectNode(QtCore.QObject):
- class ErrorCode(enum.Enum):
- NoError = ... # type: QRemoteObjectNode.ErrorCode
- RegistryNotAcquired = ... # type: QRemoteObjectNode.ErrorCode
- RegistryAlreadyHosted = ... # type: QRemoteObjectNode.ErrorCode
- NodeIsNoServer = ... # type: QRemoteObjectNode.ErrorCode
- ServerAlreadyCreated = ... # type: QRemoteObjectNode.ErrorCode
- UnintendedRegistryHosting = ... # type: QRemoteObjectNode.ErrorCode
- OperationNotValidOnClientNode = ... # type: QRemoteObjectNode.ErrorCode
- SourceNotRegistered = ... # type: QRemoteObjectNode.ErrorCode
- MissingObjectName = ... # type: QRemoteObjectNode.ErrorCode
- HostUrlInvalid = ... # type: QRemoteObjectNode.ErrorCode
- ProtocolMismatch = ... # type: QRemoteObjectNode.ErrorCode
- ListenFailed = ... # type: QRemoteObjectNode.ErrorCode
- SocketAccessError = ... # type: QRemoteObjectNode.ErrorCode
- @typing.overload
- def __init__(self, parent: QtCore.QObject|None = ...) -> None: ...
- @typing.overload
- def __init__(self, registryAddress: QtCore.QUrl, parent: QtCore.QObject|None = ...) -> None: ...
- def timerEvent(self, a0: QtCore.QTimerEvent|None) -> None: ...
- heartbeatIntervalChanged: typing.ClassVar[QtCore.pyqtSignal]
- error: typing.ClassVar[QtCore.pyqtSignal]
- remoteObjectRemoved: typing.ClassVar[QtCore.pyqtSignal]
- remoteObjectAdded: typing.ClassVar[QtCore.pyqtSignal]
- def setHeartbeatInterval(self, interval: int) -> None: ...
- def heartbeatInterval(self) -> int: ...
- def lastError(self) -> 'QRemoteObjectNode.ErrorCode': ...
- def setPersistedStore(self, persistedStore: QRemoteObjectAbstractPersistedStore|None) -> None: ...
- def persistedStore(self) -> QRemoteObjectAbstractPersistedStore|None: ...
- def registry(self) -> 'QRemoteObjectRegistry|None': ...
- def waitForRegistry(self, timeout: int = ...) -> bool: ...
- def setRegistryUrl(self, registryAddress: QtCore.QUrl) -> bool: ...
- def registryUrl(self) -> QtCore.QUrl: ...
- def acquireModel(self, name: str|None, action: QtRemoteObjects.InitialAction = ..., rolesHint: collections.abc.Iterable[int] = ...) -> QAbstractItemModelReplica|None: ...
- def acquireDynamic(self, name: str|None) -> QRemoteObjectDynamicReplica|None: ...
- def instances(self, typeName: str) -> list[str]: ...
- def setName(self, name: str|None) -> None: ...
- def addClientSideConnection(self, ioDevice: QtCore.QIODevice|None) -> None: ...
- def connectToNode(self, address: QtCore.QUrl) -> bool: ...
- class QRemoteObjectHostBase(QRemoteObjectNode):
- class AllowedSchemas(enum.Enum):
- BuiltInSchemasOnly = ... # type: QRemoteObjectHostBase.AllowedSchemas
- AllowExternalRegistration = ... # type: QRemoteObjectHostBase.AllowedSchemas
- def reverseProxy(self) -> bool: ...
- def proxy(self, registryUrl: QtCore.QUrl, hostUrl: QtCore.QUrl = ...) -> bool: ...
- def addHostSideConnection(self, ioDevice: QtCore.QIODevice|None) -> None: ...
- def disableRemoting(self, remoteObject: QtCore.QObject|None) -> bool: ...
- @typing.overload
- def enableRemoting(self, object: QtCore.QObject|None, name: str|None = ...) -> bool: ...
- @typing.overload
- def enableRemoting(self, model: QtCore.QAbstractItemModel|None, name: str|None, roles: collections.abc.Iterable[int], selectionModel: QtCore.QItemSelectionModel|None = ...) -> bool: ...
- def setName(self, name: str|None) -> None: ...
- class QRemoteObjectHost(QRemoteObjectHostBase):
- @typing.overload
- def __init__(self, parent: QtCore.QObject|None = ...) -> None: ...
- @typing.overload
- def __init__(self, address: QtCore.QUrl, registryAddress: QtCore.QUrl = ..., allowedSchemas: QRemoteObjectHostBase.AllowedSchemas = ..., parent: QtCore.QObject|None = ...) -> None: ...
- @typing.overload
- def __init__(self, address: QtCore.QUrl, parent: QtCore.QObject|None) -> None: ...
- @staticmethod
- def setLocalServerOptions(options: QtNetwork.QLocalServer.SocketOption) -> None: ...
- hostUrlChanged: typing.ClassVar[QtCore.pyqtSignal]
- def setHostUrl(self, hostAddress: QtCore.QUrl, allowedSchemas: QRemoteObjectHostBase.AllowedSchemas = ...) -> bool: ...
- def hostUrl(self) -> QtCore.QUrl: ...
- class QRemoteObjectRegistryHost(QRemoteObjectHostBase):
- def __init__(self, registryAddress: QtCore.QUrl = ..., parent: QtCore.QObject|None = ...) -> None: ...
- def setRegistryUrl(self, registryUrl: QtCore.QUrl) -> bool: ...
- class QRemoteObjectRegistry(QRemoteObjectReplica):
- remoteObjectRemoved: typing.ClassVar[QtCore.pyqtSignal]
- remoteObjectAdded: typing.ClassVar[QtCore.pyqtSignal]
- def sourceLocations(self) -> dict[str, QRemoteObjectSourceLocationInfo]: ...
|