org.kde.koala

Interface KListBoxSignals

public interface KListBoxSignals

Method Summary
voiddoubleClicked(QListBoxItem item, QPoint pos)
This signal gets emitted whenever the user double clicks into the listbox.
voidexecuted(QListBoxItem item)
Emitted whenever the user executes an listbox item.
voidexecuted(QListBoxItem item, QPoint pos)
Emitted whenever the user executes an listbox item.

Method Detail

doubleClicked

public void doubleClicked(QListBoxItem item, QPoint pos)
This signal gets emitted whenever the user double clicks into the listbox.

Parameters: item The pointer to the clicked listbox item. pos The position where the user has clicked. Note that you may not delete any QListBoxItem objects in slots connected to this signal. This signal is more or less here for the sake of completeness. You should normally not need to use this. In most cases it's better to use executed() instead.

UNKNOWN: This signal gets emitted whenever the user double clicks into the listbox.

executed

public void executed(QListBoxItem item)
Emitted whenever the user executes an listbox item. That means depending on the KDE wide Single Click/Double Click setting the user clicked or double clicked on that item.

Parameters: item is the pointer to the executed listbox item. Note that you may not delete any QListBoxItem objects in slots connected to this signal.

UNKNOWN: Emitted whenever the user executes an listbox item.

executed

public void executed(QListBoxItem item, QPoint pos)
Emitted whenever the user executes an listbox item. That means depending on the KDE wide Single Click/Double Click setting the user clicked or double clicked on that item.

Parameters: item is the pointer to the executed listbox item. pos is the position where the user has clicked Note that you may not delete any QListBoxItem objects in slots connected to this signal.

UNKNOWN: Emitted whenever the user executes an listbox item.