public class StyledTextDropTargetEffect extends DropTargetEffect
StyledText
.
Classes that wish to provide their own drag under effect for a StyledText
can extend this class, override the StyledTextDropTargetEffect.dragOver
method and override any other applicable methods in StyledTextDropTargetEffect
to
display their own drag under effect.
super
method to get the default drag under effect implementation.
The feedback value is either one of the FEEDBACK constants defined in
class DND
which is applicable to instances of this class,
or it must be built by bitwise OR'ing together
(that is, using the int
"|" operator) two or more
of those DND
effect constants.
DropTargetAdapter
,
DropTargetEvent
,
Sample code and further informationModifier and Type | Field and Description |
---|---|
(package private) static int |
CARET_WIDTH |
(package private) int |
currentOffset |
(package private) Listener |
paintListener |
(package private) static int |
SCROLL_HYSTERESIS |
(package private) static int |
SCROLL_TOLERANCE |
(package private) long |
scrollBeginTime |
(package private) int |
scrollX |
(package private) int |
scrollY |
Constructor and Description |
---|
StyledTextDropTargetEffect(StyledText styledText)
Creates a new
StyledTextDropTargetEffect to handle the drag under effect on the specified
StyledText . |
Modifier and Type | Method and Description |
---|---|
void |
dragEnter(DropTargetEvent event)
This implementation of
dragEnter provides a default drag under effect
for the feedback specified in event.feedback . |
void |
dragLeave(DropTargetEvent event)
This implementation of
dragLeave provides a default drag under effect
for the feedback specified in event.feedback . |
void |
dragOver(DropTargetEvent event)
This implementation of
dragOver provides a default drag under effect
for the feedback specified in event.feedback . |
void |
dropAccept(DropTargetEvent event)
This implementation of
dropAccept provides a default drag under effect
for the feedback specified in event.feedback . |
(package private) void |
refreshCaret(StyledText text,
int oldOffset,
int newOffset) |
getControl, getItem
dragOperationChanged, drop
static final int CARET_WIDTH
static final int SCROLL_HYSTERESIS
static final int SCROLL_TOLERANCE
int currentOffset
long scrollBeginTime
int scrollX
int scrollY
Listener paintListener
public StyledTextDropTargetEffect(StyledText styledText)
StyledTextDropTargetEffect
to handle the drag under effect on the specified
StyledText
.styledText
- the StyledText
over which the user positions the cursor to drop the datapublic void dragEnter(DropTargetEvent event)
dragEnter
provides a default drag under effect
for the feedback specified in event.feedback
.
For additional information see DropTargetAdapter.dragEnter
.
Subclasses that override this method should call super.dragEnter(event)
to get the default drag under effect implementation.dragEnter
in interface DropTargetListener
dragEnter
in class DropTargetAdapter
event
- the information associated with the drag start eventDropTargetAdapter
,
DropTargetEvent
public void dragLeave(DropTargetEvent event)
dragLeave
provides a default drag under effect
for the feedback specified in event.feedback
.
For additional information see DropTargetAdapter.dragLeave
.
Subclasses that override this method should call super.dragLeave(event)
to get the default drag under effect implementation.dragLeave
in interface DropTargetListener
dragLeave
in class DropTargetAdapter
event
- the information associated with the drag leave eventDropTargetAdapter
,
DropTargetEvent
public void dragOver(DropTargetEvent event)
dragOver
provides a default drag under effect
for the feedback specified in event.feedback
.
For additional information see DropTargetAdapter.dragOver
.
Subclasses that override this method should call super.dragOver(event)
to get the default drag under effect implementation.dragOver
in interface DropTargetListener
dragOver
in class DropTargetAdapter
event
- the information associated with the drag over eventDropTargetAdapter
,
DropTargetEvent
,
DND.FEEDBACK_SELECT
,
DND.FEEDBACK_SCROLL
void refreshCaret(StyledText text, int oldOffset, int newOffset)
public void dropAccept(DropTargetEvent event)
dropAccept
provides a default drag under effect
for the feedback specified in event.feedback
.
For additional information see DropTargetAdapter.dropAccept
.
Subclasses that override this method should call super.dropAccept(event)
to get the default drag under effect implementation.dropAccept
in interface DropTargetListener
dropAccept
in class DropTargetAdapter
event
- the information associated with the drop accept eventDropTargetAdapter
,
DropTargetEvent