Qyoto  4.0.7
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Properties
QtGui.IQButtonGroupSignals Interface Reference
Inheritance diagram for QtGui.IQButtonGroupSignals:
Collaboration diagram for QtGui.IQButtonGroupSignals:

Public Member Functions

void ButtonClicked (QAbstractButton button)
  More...
 
void ButtonClicked (int id)
  More...
 
void ButtonPressed (QAbstractButton button)
  More...
 
void ButtonPressed (int id)
  More...
 
void ButtonReleased (QAbstractButton button)
  More...
 
void ButtonReleased (int id)
  More...
 
- Public Member Functions inherited from QtCore.IQObjectSignals
void Destroyed (QObject obj=null)
  More...
 
void Destroyed ()
  More...
 

Member Function Documentation

void QtGui.IQButtonGroupSignals.ButtonClicked ( QAbstractButton  button)

This signal is emitted when the given button is clicked. A button is clicked when it is first pressed and then released, when its shortcut key is typed, or programmatically when QAbstractButton::click() or QAbstractButton::animateClick() is called.

See also checkedButton() and QAbstractButton::clicked().

void QtGui.IQButtonGroupSignals.ButtonClicked ( int  id)

This signal is emitted when a button with the given id is clicked.

See also checkedButton() and QAbstractButton::clicked().

void QtGui.IQButtonGroupSignals.ButtonPressed ( QAbstractButton  button)

This signal is emitted when the given button is pressed down.

This function was introduced in Qt 4.2.

See also QAbstractButton::pressed().

void QtGui.IQButtonGroupSignals.ButtonPressed ( int  id)

This signal is emitted when a button with the given id is pressed down.

This function was introduced in Qt 4.2.

See also QAbstractButton::pressed().

void QtGui.IQButtonGroupSignals.ButtonReleased ( QAbstractButton  button)

This signal is emitted when the given button is released.

This function was introduced in Qt 4.2.

See also QAbstractButton::released().

void QtGui.IQButtonGroupSignals.ButtonReleased ( int  id)

This signal is emitted when a button with the given id is released.

This function was introduced in Qt 4.2.

See also QAbstractButton::released().