BluezQt::PendingCall

Search for usage in LXR

BluezQt::PendingCall Class Reference

#include <BluezQt/PendingCall>

Inheritance diagram for BluezQt::PendingCall:

Public Types

enum  Error {
  NoError = 0 , NotReady = 1 , Failed = 2 , Rejected = 3 ,
  Canceled = 4 , InvalidArguments = 5 , AlreadyExists = 6 , DoesNotExist = 7 ,
  InProgress = 8 , NotInProgress = 9 , AlreadyConnected = 10 , ConnectFailed = 11 ,
  NotConnected = 12 , NotSupported = 13 , NotAuthorized = 14 , AuthenticationCanceled = 15 ,
  AuthenticationFailed = 16 , AuthenticationRejected = 17 , AuthenticationTimeout = 18 , ConnectionAttemptFailed = 19 ,
  InvalidLength = 20 , NotPermitted = 21 , DBusError = 98 , InternalError = 99 ,
  UnknownError = 100
}
 

Properties

int error
 
QString errorText
 
bool isFinished
 
QVariant userData
 
QVariant value
 
QVariantList values
 
- Properties inherited from QObject
 objectName
 

Signals

void finished (PendingCall *call)
 

Public Member Functions

 ~PendingCall () override
 
int error () const
 
QString errorText () const
 
bool isFinished () const
 
void setUserData (const QVariant &userData)
 
QVariant userData () const
 
QVariant value () const
 
QVariantList values () const
 
void waitForFinished ()
 
- Public Member Functions inherited from QObject
 QObject (QObject *parent)
 
QBindable< QStringbindableObjectName ()
 
bool blockSignals (bool block)
 
const QObjectListchildren () const const
 
QMetaObject::Connection connect (const QObject *sender, const char *signal, const char *method, Qt::ConnectionType type) const const
 
void deleteLater ()
 
void destroyed (QObject *obj)
 
bool disconnect (const char *signal, const QObject *receiver, const char *method) const const
 
bool disconnect (const QObject *receiver, const char *method) const const
 
void dumpObjectInfo () const const
 
void dumpObjectTree () const const
 
QList< QByteArraydynamicPropertyNames () const const
 
virtual bool event (QEvent *e)
 
virtual bool eventFilter (QObject *watched, QEvent *event)
 
findChild (const QString &name, Qt::FindChildOptions options) const const
 
QList< T > findChildren (const QRegularExpression &re, Qt::FindChildOptions options) const const
 
QList< T > findChildren (const QString &name, Qt::FindChildOptions options) const const
 
QList< T > findChildren (Qt::FindChildOptions options) const const
 
bool inherits (const char *className) const const
 
void installEventFilter (QObject *filterObj)
 
bool isQuickItemType () const const
 
bool isWidgetType () const const
 
bool isWindowType () const const
 
void killTimer (int id)
 
virtual const QMetaObjectmetaObject () const const
 
void moveToThread (QThread *targetThread)
 
QString objectName () const const
 
void objectNameChanged (const QString &objectName)
 
QObjectparent () const const
 
QVariant property (const char *name) const const
 
 Q_CLASSINFO (Name, Value)
 
 Q_EMIT Q_EMIT
 
 Q_ENUM (...)
 
 Q_ENUM_NS (...)
 
 Q_ENUMS (...)
 
 Q_FLAG (...)
 
 Q_FLAG_NS (...)
 
 Q_FLAGS (...)
 
 Q_GADGET Q_GADGET
 
 Q_GADGET_EXPORT (EXPORT_MACRO)
 
 Q_INTERFACES (...)
 
 Q_INVOKABLE Q_INVOKABLE
 
 Q_MOC_INCLUDE Q_MOC_INCLUDE
 
 Q_NAMESPACE Q_NAMESPACE
 
 Q_NAMESPACE_EXPORT (EXPORT_MACRO)
 
 Q_OBJECT Q_OBJECT
 
 Q_PROPERTY (...)
 
 Q_REVISION Q_REVISION
 
 Q_SET_OBJECT_NAME (Object)
 
 Q_SIGNAL Q_SIGNAL
 
 Q_SIGNALS Q_SIGNALS
 
 Q_SLOT Q_SLOT
 
 Q_SLOTS Q_SLOTS
 
qobject_cast (const QObject *object)
 
qobject_cast (QObject *object)
 
 QT_NO_NARROWING_CONVERSIONS_IN_CONNECT QT_NO_NARROWING_CONVERSIONS_IN_CONNECT
 
void removeEventFilter (QObject *obj)
 
void setObjectName (const QString &name)
 
void setObjectName (QAnyStringView name)
 
void setParent (QObject *parent)
 
bool setProperty (const char *name, const QVariant &value)
 
bool setProperty (const char *name, QVariant &&value)
 
bool signalsBlocked () const const
 
int startTimer (int interval, Qt::TimerType timerType)
 
int startTimer (std::chrono::milliseconds interval, Qt::TimerType timerType)
 
QThreadthread () const const
 

Additional Inherited Members

- Static Public Member Functions inherited from QObject
QMetaObject::Connection connect (const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type)
 
QMetaObject::Connection connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type)
 
QMetaObject::Connection connect (const QObject *sender, PointerToMemberFunction signal, const QObject *context, Functor functor, Qt::ConnectionType type)
 
QMetaObject::Connection connect (const QObject *sender, PointerToMemberFunction signal, const QObject *receiver, PointerToMemberFunction method, Qt::ConnectionType type)
 
QMetaObject::Connection connect (const QObject *sender, PointerToMemberFunction signal, Functor functor)
 
bool disconnect (const QMetaObject::Connection &connection)
 
bool disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *method)
 
bool disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method)
 
bool disconnect (const QObject *sender, PointerToMemberFunction signal, const QObject *receiver, PointerToMemberFunction method)
 
QString tr (const char *sourceText, const char *disambiguation, int n)
 
- Public Attributes inherited from QObject
typedef QObjectList
 
- Protected Member Functions inherited from QObject
virtual void childEvent (QChildEvent *event)
 
virtual void connectNotify (const QMetaMethod &signal)
 
virtual void customEvent (QEvent *event)
 
virtual void disconnectNotify (const QMetaMethod &signal)
 
bool isSignalConnected (const QMetaMethod &signal) const const
 
int receivers (const char *signal) const const
 
QObjectsender () const const
 
int senderSignalIndex () const const
 
virtual void timerEvent (QTimerEvent *event)
 

Detailed Description

Pending method call.

This class represents a pending method call. It is a convenient wrapper around QDBusPendingReply and QDBusPendingCallWatcher.

Definition at line 34 of file pendingcall.h.

Member Enumeration Documentation

◆ Error

Known error types.

Enumerator
NoError 

Indicates there is no error.

NotReady 

Indicates that the device is not ready.

Failed 

Indicates that the action have failed.

Rejected 

Indicates that the action was rejected.

Canceled 

Indicates that the action was canceled.

InvalidArguments 

Indicates that invalid arguments were passed.

AlreadyExists 

Indicates that an agent or pairing record already exists.

DoesNotExist 

Indicates that an agent, service or pairing operation does not exists.

InProgress 

Indicates that the action is already in progress.

NotInProgress 

Indicates that the action is not in progress.

AlreadyConnected 

Indicates that the device is already connected.

ConnectFailed 

Indicates that the connection to the device have failed.

NotConnected 

Indicates that the device is not connected.

NotSupported 

Indicates that the action is not supported.

NotAuthorized 

Indicates that the caller is not authorized to do the action.

AuthenticationCanceled 

Indicates that the authentication was canceled.

AuthenticationFailed 

Indicates that the authentication have failed.

AuthenticationRejected 

Indicates that the authentication was rejected.

AuthenticationTimeout 

Indicates that the authentication timed out.

ConnectionAttemptFailed 

Indicates that the connection attempt have failed.

InvalidLength 

Indicates that the data provided generates a data packet which is too long.

NotPermitted 

Indicates that the action is not permitted (e.g.

maximum reached or socket locked).

DBusError 

Indicates an error with D-Bus.

InternalError 

Indicates an internal error.

UnknownError 

Indicates an unknown error.

Definition at line 49 of file pendingcall.h.

Property Documentation

◆ error

int BluezQt::PendingCall::error
read

Definition at line 40 of file pendingcall.h.

◆ errorText

QString BluezQt::PendingCall::errorText
read

Definition at line 41 of file pendingcall.h.

◆ isFinished

bool BluezQt::PendingCall::isFinished
read

Definition at line 42 of file pendingcall.h.

◆ userData

QVariant BluezQt::PendingCall::userData
readwrite

Definition at line 43 of file pendingcall.h.

◆ value

QVariant BluezQt::PendingCall::value
read

Definition at line 38 of file pendingcall.h.

◆ values

QVariantList BluezQt::PendingCall::values
read

Definition at line 39 of file pendingcall.h.

Constructor & Destructor Documentation

◆ ~PendingCall()

BluezQt::PendingCall::~PendingCall ( )
overridedefault

Destroys a PendingCall object.

Member Function Documentation

◆ error()

int BluezQt::PendingCall::error ( ) const

Returns an error code.

Returns
error code
See also
Error

Definition at line 304 of file pendingcall.cpp.

◆ errorText()

QString BluezQt::PendingCall::errorText ( ) const

Returns an error text.

Returns
error text

Definition at line 309 of file pendingcall.cpp.

◆ finished

void BluezQt::PendingCall::finished ( PendingCall * call)
signal

Indicates that the call have finished.

◆ isFinished()

bool BluezQt::PendingCall::isFinished ( ) const

Returns whether the call is finished.

Returns
true if call is finished

Definition at line 314 of file pendingcall.cpp.

◆ setUserData()

void BluezQt::PendingCall::setUserData ( const QVariant & userData)

Sets the user data of the call.

Parameters
userDatauser data

Definition at line 334 of file pendingcall.cpp.

◆ userData()

QVariant BluezQt::PendingCall::userData ( ) const

Returns the user data of the call.

Returns
user data of call

Definition at line 329 of file pendingcall.cpp.

◆ value()

QVariant BluezQt::PendingCall::value ( ) const

Returns a first return value of the call.

Returns
first return value

Definition at line 291 of file pendingcall.cpp.

◆ values()

QVariantList BluezQt::PendingCall::values ( ) const

Returns all values of the call.

Returns
all return values

Definition at line 299 of file pendingcall.cpp.

◆ waitForFinished()

void BluezQt::PendingCall::waitForFinished ( )

Waits for the call to finish.

Warning
This method blocks until the call finishes!

Definition at line 322 of file pendingcall.cpp.


The documentation for this class was generated from the following files:
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:13:52 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.