java.lang.Object
io.qt.internal.QtJambiSignals.AbstractSignal
io.qt.core.QMetaObject.AbstractSignal
- Direct Known Subclasses:
QDeclarableSignals.AbstractPrivateGenericSignal
,QMetaObject.AbstractPrivateSignal0
,QMetaObject.AbstractPrivateSignal1
,QMetaObject.AbstractPrivateSignal2
,QMetaObject.AbstractPrivateSignal3
,QMetaObject.AbstractPrivateSignal4
,QMetaObject.AbstractPrivateSignal5
,QMetaObject.AbstractPrivateSignal6
,QMetaObject.AbstractPrivateSignal7
,QMetaObject.AbstractPrivateSignal8
,QMetaObject.AbstractPrivateSignal9
,QMetaObject.DisposedSignal
- Enclosing class:
- QMetaObject
public abstract static class QMetaObject.AbstractSignal extends QtJambiSignals.AbstractSignal
Supertype of all signals in QtJambi.
-
Method Summary
Modifier and Type Method Description QMetaObject.Connection
connect(Object receiver, String method, Qt.ConnectionType... type)
Connects the signal to a method in an object.boolean
disconnect()
Removes all connections from this signal.boolean
disconnect(QMetaObject.Connection connection)
Removes the given connection from this signal.boolean
disconnect(Object receiver)
Removes any connection from this signal to the specified receiving objectboolean
disconnect(Object receiver, String method)
Disconnects the signal from a method in an object if the two were previously connected by a call to connect.Methods inherited from class io.qt.internal.QtJambiSignals.AbstractSignal
addConnection, addConnection, addConnectionToSlotObject, addConnectionToSlotObject, addConnectionToSlotObject, addConnectionToSlotObject, addConnectionToSlotObject, addConnectionToSlotObject, addConnectionToSlotObject, addConnectionToSlotObject, addConnectionToSlotObject, addConnectionToSlotObject, addConnectionToSlotObject, argumentTypes, checkConnection, containingObject, emitSignal, fullName, methodIndex, name, removeConnection, removeConnection, removeConnectionToSlotObject, toString
-
Method Details
-
connect
public final QMetaObject.Connection connect(Object receiver, String method, Qt.ConnectionType... type)Connects the signal to a method in an object. Whenever it is emitted, the method will be invoked on the given object.- Parameters:
receiver
- The object that owns the methodmethod
- The signature of the method excluding return type and argument names, such as "setText(String)".connectionType
- One of the connection types defined in the Qt interface.- Throws:
QNoSuchSlotException
- Raised if the method passed in the slot object was not foundRuntimeException
- Raised if the signal object could not be successfully introspected or if the signatures of the signal and slot are incompatible.
-
disconnect
Disconnects the signal from a method in an object if the two were previously connected by a call to connect.- Parameters:
receiver
- The object to which the signal is connectedmethod
- The method in the receiver object to which the signal is connected- Returns:
- true if the connection was successfully removed, otherwise false. The method will return false if the connection has not been previously established by a call to connect.
- Throws:
QNoSuchSlotException
- Raised if the method passed in the slot object was not found
-
disconnect
Removes any connection from this signal to the specified receiving object- Parameters:
receiver
- The object to which the signal has connections- Returns:
- true if any connection was successfully removed, otherwise false. The method will return false if no connection has previously been establish to the receiver.
- See Also:
disconnect(Object, String)
-
disconnect
public final boolean disconnect()Removes all connections from this signal.- Returns:
- True if the disconnection was successful.
- See Also:
disconnect(Object, String)
-
disconnect
Removes the given connection from this signal.- Parameters:
connection
- the connection to be removed- Returns:
- true if the disconnection was successful.
-