Uses of Class
org.peace_tools.generic.dndTabs.DnDTabbedPane.Location

Packages that use DnDTabbedPane.Location
org.peace_tools.generic.dndTabs Provides generic functionality to organize GUI as dockable tabs. 
 

Uses of DnDTabbedPane.Location in org.peace_tools.generic.dndTabs
 

Fields in org.peace_tools.generic.dndTabs declared as DnDTabbedPane.Location
private  DnDTabbedPane.Location DnDTabbedPane.dockCue
          This instance variable is used to track if this DndTabbedPane should paint a outline on itself to indicate where a tab being dragged will be docked with respect to this window.
 

Fields in org.peace_tools.generic.dndTabs with type parameters of type DnDTabbedPane.Location
private  java.util.ArrayList<DnDTabbedPane.Location> DnDTabPos.path
          Vector to maintain path from center pane to the desired position of a tab.
 

Methods in org.peace_tools.generic.dndTabs that return DnDTabbedPane.Location
 DnDTabbedPane.Location DnDTabbedPane.getDockCue()
          This method can be used to determine the current docking cue associated with this DndTabPane.
protected  DnDTabbedPane.Location DnDTabHandler.getLocation(int x, int y)
          Helper method used to determine where a given x and y coordinates (typically the mouse pointer positions) is with respect to the DnDTabbedPane that owns this handler.
static DnDTabbedPane.Location DnDTabbedPane.Location.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DnDTabbedPane.Location[] DnDTabbedPane.Location.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.peace_tools.generic.dndTabs with parameters of type DnDTabbedPane.Location
 DnDTabbedPane DnDTabbedPane.createSplitPane(java.lang.String title, javax.swing.Icon icon, java.awt.Component c, DnDTabbedPane.Location location)
          This method may be used to manually add components either directly to this tabbed pane or around this tabbed pane.
 DnDTabbedPane DnDTabbedPane.createSplitPane(java.lang.String title, javax.swing.Icon icon, java.awt.Component c, DnDTabbedPane.Location location, double gravity)
          This method may be used to manually add components either directly to this tabbed pane or around this tabbed pane.
 DnDTabbedPane DnDTabbedPane.createSplitPane(java.lang.String title, javax.swing.Icon icon, java.awt.Component c, DnDTabbedPane.Location location, double gravity, int size)
          This method may be used to manually add components either directly to this tabbed pane or around this tabbed pane.
protected  java.awt.Component DnDTabPos.getPosition(java.awt.Component permTab, DnDTabbedPane.Location[] direction)
          Traverse saved position information as much as possible.
 void DnDTabbedPane.setDockCue(DnDTabbedPane.Location cue)
          This method must be used to set/clear the current docking cue associated with this DndTabPane.
static javax.swing.JSplitPane DnDTabbedPane.setSplitWindow(java.awt.Container parent, DnDTabbedPane.Location location, java.awt.Component window1, java.awt.Component window2, int prefWidth, int prefHeight, java.awt.Dimension area)
          This is a utility method that is used by both DnDTabbedPane and DnDTabPos to create a JSplitPane containing two components organized in a specific manner to occupy a given preferred width/height depending on the type of orientation.