org.kde.koala

Interface KIconViewSignals

public interface KIconViewSignals

Method Summary
voiddoubleClicked(QIconViewItem item, QPoint pos)
This signal gets emitted whenever the user double clicks into the iconview.
voidexecuted(QIconViewItem item)
This signal is emitted whenever the user executes an iconview item.
voidexecuted(QIconViewItem item, QPoint pos)
This signal is emitted whenever the user executes an iconview item.
voidheld(QIconViewItem item)
This signal is emitted whenever the user hold something on an iconview during a drag'n'drop.

Method Detail

doubleClicked

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

Parameters: item is the pointer to the clicked iconview item. pos is the position where the user has clicked, and Note that you may not delete any QIconViewItem 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 iconview.

executed

public void executed(QIconViewItem item)
This signal is emitted whenever the user executes an iconview 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 iconview item. Note that you may not delete any QIconViewItem objects in slots connected to this signal.

UNKNOWN: This signal is emitted whenever the user executes an iconview item.

executed

public void executed(QIconViewItem item, QPoint pos)
This signal is emitted whenever the user executes an iconview 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 iconview item. pos is the position where the user has clicked Note that you may not delete any QIconViewItem objects in slots connected to this signal.

UNKNOWN: This signal is emitted whenever the user executes an iconview item.

held

public void held(QIconViewItem item)
This signal is emitted whenever the user hold something on an iconview during a drag'n'drop.

Parameters: item is the pointer to the iconview item the hold event occur. Note that you may not delete any QIconViewItem objects in slots connected to this signal.

UNKNOWN: This signal is emitted whenever the user hold something on an iconview during a drag'n'drop.