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

Public Member Functions

void EditTextChanged (string text)
  More...
 
void Activated (int index)
  More...
 
void Activated (string text)
  More...
 
void Highlighted (int index)
  More...
 
void Highlighted (string text)
  More...
 
void CurrentIndexChanged (int index)
  More...
 
void CurrentIndexChanged (string text)
  More...
 
void TextChanged (string arg1)
 
- Public Member Functions inherited from QtGui.IQWidgetSignals
void CustomContextMenuRequested (QPoint pos)
  More...
 
- Public Member Functions inherited from QtCore.IQObjectSignals
void Destroyed (QObject obj=null)
  More...
 
void Destroyed ()
  More...
 

Member Function Documentation

void QtGui.IQComboBoxSignals.Activated ( int  index)

This signal is sent when the user chooses an item in the combobox. The item's index is passed. Note that this signal is sent even when the choice is not changed. If you need to know when the choice actually changes, use signal currentIndexChanged().

void QtGui.IQComboBoxSignals.Activated ( string  text)

This signal is sent when the user chooses an item in the combobox. The item's text is passed. Note that this signal is sent even when the choice is not changed. If you need to know when the choice actually changes, use signal currentIndexChanged().

void QtGui.IQComboBoxSignals.CurrentIndexChanged ( int  index)

This signal is sent whenever the currentIndex in the combobox changes either through user interaction or programmatically. The item's index is passed or -1 if the combobox becomes empty or the currentIndex was reset.

This function was introduced in Qt 4.1.

void QtGui.IQComboBoxSignals.CurrentIndexChanged ( string  text)

This signal is sent whenever the currentIndex in the combobox changes either through user interaction or programmatically. The item's text is passed.

This function was introduced in Qt 4.1.

void QtGui.IQComboBoxSignals.EditTextChanged ( string  text)

This signal is emitted when the text in the combobox's line edit widget is changed. The new text is specified by text.

void QtGui.IQComboBoxSignals.Highlighted ( int  index)

This signal is sent when an item in the combobox popup list is highlighted by the user. The item's index is passed.

void QtGui.IQComboBoxSignals.Highlighted ( string  text)

This signal is sent when an item in the combobox popup list is highlighted by the user. The item's text is passed.

void QtGui.IQComboBoxSignals.TextChanged ( string  arg1)