diff options
| author | Peter Penz <[email protected]> | 2011-08-08 23:41:18 +0200 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2011-08-09 16:22:36 +0200 |
| commit | 3957884bf2e44619a4ed35ba0ffead519988885b (patch) | |
| tree | d8a5bf1a015cc6001adb4afc5f0f1da721908a22 /src/kitemviews/kitemlistcontroller.h | |
| parent | 4692eb7c96f57328479862c0d17d7945b4e87188 (diff) | |
Improvements for selections, smooth scrolling, tooltips and info-panel
Diffstat (limited to 'src/kitemviews/kitemlistcontroller.h')
| -rw-r--r-- | src/kitemviews/kitemlistcontroller.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/kitemviews/kitemlistcontroller.h b/src/kitemviews/kitemlistcontroller.h index 86f2b4ea6..092a7bc62 100644 --- a/src/kitemviews/kitemlistcontroller.h +++ b/src/kitemviews/kitemlistcontroller.h @@ -101,6 +101,19 @@ public: signals: void itemClicked(int index, Qt::MouseButton button); + + /** + * Is emitted if the item with the index \p index gets hovered. + */ + void itemHovered(int index); + + /** + * Is emitted if the item with the index \p index gets unhovered. + * It is assured that the signal itemHovered() for this index + * has been emitted before. + */ + void itemUnhovered(int index); + void itemExpansionToggleClicked(int index); void modelChanged(KItemModelBase* current, KItemModelBase* previous); |
