SignalEvent Class

class QStateMachine::SignalEvent

The SignalEvent class represents a Qt signal event. More...

Public Functions

SignalEvent(QObject *sender, int signalIndex, const QList<QVariant> &arguments)
virtual ~SignalEvent()
QList<QVariant> arguments() const
QObject *sender() const
int signalIndex() const

Detailed Description

\inmoduleQtStateMachine

\since4.6 \ingroup statemachine

A signal event is generated by a QStateMachine in response to a Qt signal. The QSignalTransition class provides a transition associated with a signal event. QStateMachine::SignalEvent is part of Qt State Machine Framework.

The sender() function returns the object that generated the signal. The signalIndex() function returns the index of the signal. The arguments() function returns the arguments of the signal.

See also QSignalTransition.

Member Function Documentation

SignalEvent::SignalEvent(QObject *sender, int signalIndex, const QList<QVariant> &arguments)

\internal

Constructs a new SignalEvent object with the given sender, signalIndex and arguments.

[virtual noexcept] SignalEvent::~SignalEvent()

Destroys this SignalEvent.

QList<QVariant> SignalEvent::arguments() const

Returns the arguments of the signal.

QObject *SignalEvent::sender() const

Returns the object that emitted the signal.

See also QObject::sender().

int SignalEvent::signalIndex() const

Returns the index of the signal.

See also QMetaObject::indexOfSignal() and QMetaObject::method().