Module qtjambi
Package io.qt.core

Class QMetaObject.AbstractPrivateSignal3<A,B,C>

Type Parameters:
A - The type of the first parameter of the signal.
B - The type of the second parameter of the signal.
C - The type of the third parameter of the signal.
Direct Known Subclasses:
QInstanceMemberSignals.PrivateSignal3, QMetaObject.AbstractPublicSignal3, QObject.PrivateSignal3, QStaticMemberSignals.PrivateSignal3
Enclosing class:
QMetaObject

public abstract static class QMetaObject.AbstractPrivateSignal3<A,B,C> extends QMetaObject.AbstractSignal
Supertype for all signals with three parameters.
  • Method Details

    • connect

      public final QMetaObject.Connection connect(QMetaObject.Slot0 slot, Qt.ConnectionType... type)
      Initializes a connection to the slot.
      Parameters:
      slot - the slot to be connected
      connectionType - type of connection
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
      QUninvokableSlotException - Raised if slot is annotated @QtUninvokable.
    • connect

      public final QMetaObject.Connection connect(QMetaObject.Slot1<? super A> slot, Qt.ConnectionType... type)
      Initializes a connection to the slot.
      Parameters:
      slot - the slot to be connected
      connectionType - type of connection
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
      QUninvokableSlotException - Raised if slot is annotated @QtUninvokable.
    • connect

      public final QMetaObject.Connection connect(QMetaObject.Slot2<? super A,? super B> slot, Qt.ConnectionType... type)
      Initializes a connection to the slot.
      Parameters:
      slot - the slot to be connected
      connectionType - type of connection
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
      QUninvokableSlotException - Raised if slot is annotated @QtUninvokable.
    • connect

      public final QMetaObject.Connection connect(QMetaObject.Slot3<? super A,? super B,? super C> slot, Qt.ConnectionType... type)
      Initializes a connection to the slot.
      Parameters:
      slot - the slot to be connected
      connectionType - type of connection
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
      QUninvokableSlotException - Raised if slot is annotated @QtUninvokable.
    • disconnect

      public final boolean disconnect(QMetaObject.Slot0 slot)
      Removes the connection between the given signal and slot.
      Parameters:
      slot - the slot to be disconnected
      Returns:
      true if successfully disconnected, or false otherwise.
    • disconnect

      public final boolean disconnect(QMetaObject.Slot1<? super A> slot)
      Removes the connection between the given signal and slot.
      Parameters:
      slot - the slot to be disconnected
      Returns:
      true if successfully disconnected, or false otherwise.
    • disconnect

      public final boolean disconnect(QMetaObject.Slot2<? super A,? super B> slot)
      Removes the connection between the given signal and slot.
      Parameters:
      slot - the slot to be disconnected
      Returns:
      true if successfully disconnected, or false otherwise.
    • disconnect

      public final boolean disconnect(QMetaObject.Slot3<? super A,? super B,? super C> slot)
      Removes the connection between the given signal and slot.
      Parameters:
      slot - the slot to be disconnected
      Returns:
      true if successfully disconnected, or false otherwise.
    • connect

      public final QMetaObject.Connection connect(QMetaObject.AbstractPublicSignal0 signalOut, Qt.ConnectionType... connectionType)
      Creates a connection from this signal to another. Whenever this signal is emitted, it will cause the second signal to be emitted as well.
      Parameters:
      signalOut - The second signal. This will be emitted whenever this signal is emitted.
      connectionType - One of the connection types defined in the Qt interface.
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
    • connect

      public final QMetaObject.Connection connect(QMetaObject.AbstractPublicSignal1<A> signalOut, Qt.ConnectionType... connectionType)
      Creates a connection from this signal to another. Whenever this signal is emitted, it will cause the second signal to be emitted as well.
      Parameters:
      signalOut - The second signal. This will be emitted whenever this signal is emitted.
      connectionType - One of the connection types defined in the Qt interface.
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
    • connect

      public final QMetaObject.Connection connect(QMetaObject.AbstractPublicSignal2<A,B> signalOut, Qt.ConnectionType... connectionType)
      Creates a connection from this signal to another. Whenever this signal is emitted, it will cause the second signal to be emitted as well.
      Parameters:
      signalOut - The second signal. This will be emitted whenever this signal is emitted.
      connectionType - One of the connection types defined in the Qt interface.
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
    • connect

      public final QMetaObject.Connection connect(QMetaObject.AbstractPublicSignal3<A,B,C> signalOut, Qt.ConnectionType... connectionType)
      Creates a connection from this signal to another. Whenever this signal is emitted, it will cause the second signal to be emitted as well.
      Parameters:
      signalOut - The second signal. This will be emitted whenever this signal is emitted.
      connectionType - One of the connection types defined in the Qt interface.
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
    • connect

      public final QMetaObject.Connection connect(QMetaObject.AbstractSignal4Default1<A,B,C,?> signalOut, Qt.ConnectionType... connectionType)
      Creates a connection from this signal to another. Whenever this signal is emitted, it will cause the second signal to be emitted as well.
      Parameters:
      signalOut - The second signal. This will be emitted whenever this signal is emitted.
      connectionType - One of the connection types defined in the Qt interface.
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
    • connect

      public final QMetaObject.Connection connect(QMetaObject.AbstractSignal5Default2<A,B,C,?,?> signalOut, Qt.ConnectionType... connectionType)
      Creates a connection from this signal to another. Whenever this signal is emitted, it will cause the second signal to be emitted as well.
      Parameters:
      signalOut - The second signal. This will be emitted whenever this signal is emitted.
      connectionType - One of the connection types defined in the Qt interface.
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
    • connect

      public final QMetaObject.Connection connect(QMetaObject.AbstractSignal6Default3<A,B,C,?,?,?> signalOut, Qt.ConnectionType... connectionType)
      Creates a connection from this signal to another. Whenever this signal is emitted, it will cause the second signal to be emitted as well.
      Parameters:
      signalOut - The second signal. This will be emitted whenever this signal is emitted.
      connectionType - One of the connection types defined in the Qt interface.
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
    • connect

      public final QMetaObject.Connection connect(QMetaObject.AbstractSignal7Default4<A,B,C,?,?,?,?> signalOut, Qt.ConnectionType... connectionType)
      Creates a connection from this signal to another. Whenever this signal is emitted, it will cause the second signal to be emitted as well.
      Parameters:
      signalOut - The second signal. This will be emitted whenever this signal is emitted.
      connectionType - One of the connection types defined in the Qt interface.
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
    • connect

      public final QMetaObject.Connection connect(QMetaObject.AbstractSignal8Default5<A,B,C,?,?,?,?,?> signalOut, Qt.ConnectionType... connectionType)
      Creates a connection from this signal to another. Whenever this signal is emitted, it will cause the second signal to be emitted as well.
      Parameters:
      signalOut - The second signal. This will be emitted whenever this signal is emitted.
      connectionType - One of the connection types defined in the Qt interface.
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
    • connect

      public final QMetaObject.Connection connect(QMetaObject.AbstractSignal9Default6<A,B,C,?,?,?,?,?,?> signalOut, Qt.ConnectionType... connectionType)
      Creates a connection from this signal to another. Whenever this signal is emitted, it will cause the second signal to be emitted as well.
      Parameters:
      signalOut - The second signal. This will be emitted whenever this signal is emitted.
      connectionType - One of the connection types defined in the Qt interface.
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
    • disconnect

      public final boolean disconnect(QMetaObject.AbstractPublicSignal0 signalOut)
      Disconnects a signal from another signal if the two were previously connected by a call to connect. A call to this function will assure that the emission of the first signal will not cause the emission of the second.
      Parameters:
      signalOut - The second signal.
      Returns:
      true if the two signals were successfully disconnected, or false otherwise.
    • disconnect

      public final boolean disconnect(QMetaObject.AbstractPublicSignal1<A> signalOut)
      Disconnects a signal from another signal if the two were previously connected by a call to connect. A call to this function will assure that the emission of the first signal will not cause the emission of the second.
      Parameters:
      signalOut - The second signal.
      Returns:
      true if the two signals were successfully disconnected, or false otherwise.
    • disconnect

      public final boolean disconnect(QMetaObject.AbstractPublicSignal2<A,B> signalOut)
      Disconnects a signal from another signal if the two were previously connected by a call to connect. A call to this function will assure that the emission of the first signal will not cause the emission of the second.
      Parameters:
      signalOut - The second signal.
      Returns:
      true if the two signals were successfully disconnected, or false otherwise.
    • disconnect

      public final boolean disconnect(QMetaObject.AbstractPublicSignal3<A,B,C> signalOut)
      Disconnects a signal from another signal if the two were previously connected by a call to connect. A call to this function will assure that the emission of the first signal will not cause the emission of the second.
      Parameters:
      signalOut - The second signal.
      Returns:
      true if the two signals were successfully disconnected, or false otherwise.
    • disconnect

      public final boolean disconnect(QMetaObject.AbstractSignal4Default1<A,B,C,?> signalOut)
      Disconnects a signal from another signal if the two were previously connected by a call to connect. A call to this function will assure that the emission of the first signal will not cause the emission of the second.
      Parameters:
      signalOut - The second signal.
      Returns:
      true if the two signals were successfully disconnected, or false otherwise.
    • disconnect

      public final boolean disconnect(QMetaObject.AbstractSignal5Default2<A,B,C,?,?> signalOut)
      Disconnects a signal from another signal if the two were previously connected by a call to connect. A call to this function will assure that the emission of the first signal will not cause the emission of the second.
      Parameters:
      signalOut - The second signal.
      Returns:
      true if the two signals were successfully disconnected, or false otherwise.
    • disconnect

      public final boolean disconnect(QMetaObject.AbstractSignal6Default3<A,B,C,?,?,?> signalOut)
      Disconnects a signal from another signal if the two were previously connected by a call to connect. A call to this function will assure that the emission of the first signal will not cause the emission of the second.
      Parameters:
      signalOut - The second signal.
      Returns:
      true if the two signals were successfully disconnected, or false otherwise.
    • disconnect

      public final boolean disconnect(QMetaObject.AbstractSignal7Default4<A,B,C,?,?,?,?> signalOut)
      Disconnects a signal from another signal if the two were previously connected by a call to connect. A call to this function will assure that the emission of the first signal will not cause the emission of the second.
      Parameters:
      signalOut - The second signal.
      Returns:
      true if the two signals were successfully disconnected, or false otherwise.
    • disconnect

      public final boolean disconnect(QMetaObject.AbstractSignal8Default5<A,B,C,?,?,?,?,?> signalOut)
      Disconnects a signal from another signal if the two were previously connected by a call to connect. A call to this function will assure that the emission of the first signal will not cause the emission of the second.
      Parameters:
      signalOut - The second signal.
      Returns:
      true if the two signals were successfully disconnected, or false otherwise.
    • disconnect

      public final boolean disconnect(QMetaObject.AbstractSignal9Default6<A,B,C,?,?,?,?,?,?> signalOut)
      Disconnects a signal from another signal if the two were previously connected by a call to connect. A call to this function will assure that the emission of the first signal will not cause the emission of the second.
      Parameters:
      signalOut - The second signal.
      Returns:
      true if the two signals were successfully disconnected, or false otherwise.