diff options
| author | Peter Penz <[email protected]> | 2008-10-22 06:11:59 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-10-22 06:11:59 +0000 |
| commit | cb928888f7e8b0450fc8c4cf0dd4f5ea3c46eb42 (patch) | |
| tree | 11f24e2eddef75394832fed82415aa6ad1b004f8 /src/dolphincontroller.h | |
| parent | 4516323b9b63893792395ff065fb09239828add9 (diff) | |
* don't show a tooltip if a rubberband selection is done
* hide a tooltip if a drag operation has been started
BUG: 173148
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=874641
Diffstat (limited to 'src/dolphincontroller.h')
| -rw-r--r-- | src/dolphincontroller.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/dolphincontroller.h b/src/dolphincontroller.h index 312cea3cc..fd1b04ffc 100644 --- a/src/dolphincontroller.h +++ b/src/dolphincontroller.h @@ -64,6 +64,7 @@ class QWidget; * - emitItemEntered() * - emitViewportEntered() * - replaceUrlByClipboard() + * - hideToolTip() * * The communication of the abstract view to the view implementations is done by: * - setUrl() @@ -204,6 +205,9 @@ public: * nothing will be done. */ void replaceUrlByClipboard(); + + /** Emits the signal hideToolTip(). */ + void emitHideToolTip(); /** * Returns the file item for the proxy index \a index of the view \a view. @@ -334,6 +338,11 @@ signals: * must connect to this signal if it supports zooming. */ void zoomLevelChanged(int level); + + /** + * Is emitted if the abstract view should hide an open tooltip. + */ + void hideToolTip(); private slots: void updateOpenTabState(); |
