KTextEditor
#include <movingrangefeedback.h>
Public Member Functions | |
MovingRangeFeedback () | |
virtual | ~MovingRangeFeedback () |
virtual void | caretEnteredRange (MovingRange *range, View *view) |
virtual void | caretExitedRange (MovingRange *range, View *view) |
virtual void | mouseEnteredRange (MovingRange *range, View *view) |
virtual void | mouseExitedRange (MovingRange *range, View *view) |
virtual void | rangeEmpty (MovingRange *range) |
virtual void | rangeInvalid (MovingRange *range) |
Detailed Description
A class which provides notifications of state changes to a MovingRange.
This class provides notifications of changes to the position or contents of a MovingRange.
Before destruction, you must unregister the feedback class from any range using it.
- Since
- 4.5
Definition at line 48 of file movingrangefeedback.h.
Constructor & Destructor Documentation
MovingRangeFeedback::MovingRangeFeedback | ( | ) |
Default constructor.
Definition at line 28 of file movingrangefeedback.cpp.
|
virtual |
Virtual destructor.
Definition at line 33 of file movingrangefeedback.cpp.
Member Function Documentation
|
virtual |
The caret on view entered range
.
- Parameters
-
range pointer to the range which generated the notification. view view over which the mouse moved to generate the notification
Definition at line 53 of file movingrangefeedback.cpp.
|
virtual |
The caret on view exited range
.
- Parameters
-
range pointer to the range which generated the notification. view view over which the mouse moved to generate the notification
Definition at line 57 of file movingrangefeedback.cpp.
|
virtual |
The mouse cursor on view entered range
.
- Parameters
-
range pointer to the range which generated the notification. view view over which the mouse moved to generate the notification
Definition at line 45 of file movingrangefeedback.cpp.
|
virtual |
The mouse cursor on view exited range
.
- Parameters
-
range pointer to the range which generated the notification. view view over which the mouse moved to generate the notification
Definition at line 49 of file movingrangefeedback.cpp.
|
virtual |
The range is now empty (ie.
the start and end cursors are the same). If the range has invalidateIfEmpty set, this will never be emitted, but instead rangeInvalid is triggered. You may delete the range inside this method, but don't alter the range here (for example by using setRange).
- Parameters
-
range pointer to the range which generated the notification.
Definition at line 37 of file movingrangefeedback.cpp.
|
virtual |
The range is now invalid (ie.
the start and end cursors are invalid). You may delete the range inside this method, but don't alter the range here (for example by using setRange).
- Parameters
-
range pointer to the range which generated the notification.
Definition at line 41 of file movingrangefeedback.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:31:42 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.