Module qtjambi
Package io.qt.widgets

Class QComboBox.MultiSignal_activated

java.lang.Object
io.qt.core.QObject.MultiSignal
io.qt.widgets.QComboBox.MultiSignal_activated
Enclosing class:
QComboBox

public final class QComboBox.MultiSignal_activated extends QObject.MultiSignal

Wrapper class for overloaded signals:

  • activated(const QString & arg__1)
  • activated(int index)
  • Method Details

    • overload

      @QtAllowedTypeSet(java.lang.String.class) @QtAllowedTypeSet(int.class) public final <A> QObject.Signal1<A> overload(Class<A> type1) throws QNoSuchSignalException

      Provides an overloaded signal by parameter type.

      The only valid calls are:

      • activated.overload(java.lang.String.class)
      • activated.overload(int.class)

      QNoSuchSignalException is thrown otherwise.

      Type Parameters:
      A - signal parameter type
      Parameters:
      type1 - value of type A
      Returns:
      overloaded signal
      Throws:
      QNoSuchSignalException - if signal is not available
    • connect

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

      public final <A> boolean disconnect(QMetaObject.Slot1<A> 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 <A> QMetaObject.Connection connect(QMetaObject.Connectable1<A> signal, Qt.ConnectionType ... connectionType) throws QNoSuchSignalException
      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:
      signal - 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.
      QNoSuchSignalException
    • disconnect

      public final <A> boolean disconnect(QMetaObject.Connectable1<A> signal)
      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:
      signal - The second signal.
      Returns:
      true if the two signals were successfully disconnected, or false otherwise.
    • connect

      public final <A> QMetaObject.Connection connect(QMetaObject.AbstractPublicSignal1<A> signal, Qt.ConnectionType ... connectionType) throws QNoSuchSignalException
      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:
      signal - 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.
      QNoSuchSignalException
    • disconnect

      public final <A> boolean disconnect(QMetaObject.AbstractPublicSignal1<A> signal)
      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:
      signal - The second signal.
      Returns:
      true if the two signals were successfully disconnected, or false otherwise.
    • emit

      public final void emit(String arg__1)
    • emit

      public final void emit(int index)