Module qtjambi
Package io.qt.core

Class QDeclarableSignals.AbstractPrivateGenericSignal

java.lang.Object
io.qt.core.QMetaObject.AbstractSignal
io.qt.core.QDeclarableSignals.AbstractPrivateGenericSignal
All Implemented Interfaces:
QMetaObject.Signal
Direct Known Subclasses:
QDeclarableSignals.GenericSignal, QDeclarableSignals.PrivateGenericSignal
Enclosing class:
QDeclarableSignals

public abstract static class QDeclarableSignals.AbstractPrivateGenericSignal extends QMetaObject.AbstractSignal
Use this signal class to declare a local signal.
  • Method Details

    • connect

      public final QMetaObject.Connection connect(QMetaObject.GenericSlot slot, Qt.ConnectionType ... connectionType)
      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.
    • disconnect

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

      public final QMetaObject.Connection connect(QMetaObject.GenericConnectable signal, Qt.ConnectionType ... connectionType)
      Initializes a connection to the signal.
      Parameters:
      signal - the signal to be connected
      connectionType - type of connection
      Returns:
      connection if successful or null otherwise
      Throws:
      QMisfittingSignatureException - Raised if their signatures are incompatible.
    • disconnect

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