org.fife.ui
Interface DrawDnDIndicatorTabbedPane


public interface DrawDnDIndicatorTabbedPane

Tabbed panes who implement this interface will receive notification when a drop operation is pending over them, so they can draw an indicator rectangle where the dropped tab will occur.

Version:
0.5
Author:
Robert Futrell

Method Summary
 void clearDnDIndicatorRect()
          Clears the rectangle indicating where the new tab will be "dropped."
 void setDnDIndicatorRect(int x, int y, int width, int height)
          Sets the rectangle indicating where the new tab will be "dropped."
 

Method Detail

clearDnDIndicatorRect

void clearDnDIndicatorRect()
Clears the rectangle indicating where the new tab will be "dropped."

See Also:
setDnDIndicatorRect(int, int, int, int)

setDnDIndicatorRect

void setDnDIndicatorRect(int x,
                         int y,
                         int width,
                         int height)
Sets the rectangle indicating where the new tab will be "dropped."

Parameters:
x - The x-location of the rectangle.
y - The y-location of the rectangle.
width - The width of the rectangle.
height - The height of the rectangle.
See Also:
clearDnDIndicatorRect()