|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Direction | |
net.infonode.docking | Core classes for the docking windows framework. |
net.infonode.docking.drop | Drop filter classes for docking windows. |
net.infonode.docking.properties | Property classes for docking windows. |
net.infonode.gui.componentpainter | Package for component painters. |
net.infonode.properties.gui.util | Utility GUI classes for properties. |
net.infonode.properties.types | Classes for property types. |
net.infonode.tabbedpanel | Core classes for creating and using tabbed panels and tabs |
net.infonode.tabbedpanel.theme | Themes with different looks for both TabbedPanel and TitledTab |
net.infonode.tabbedpanel.titledtab | TitledTab is a tab type with support for text, icon and a custom Swing component |
net.infonode.util | Common utility classes |
Uses of Direction in net.infonode.docking |
Methods in net.infonode.docking that return Direction | |
Direction |
WindowBar.getDirection()
Returns the window bar direction in the root window it is a member of |
Direction |
RootWindow.getClosestWindowBar(DockingWindow window)
Returns the direction of the closest enabled window bar to a docking window. |
Direction |
DockingWindow.getPreferredMinimizeDirection()
Gets the preferred minimize direction of this window. |
Methods in net.infonode.docking with parameters of type Direction | |
WindowBar |
RootWindow.getWindowBar(Direction direction)
Returns the window bar in the direction. |
void |
FloatingWindow.minimize(Direction direction)
Floating window cannot be minimized |
void |
DockingWindow.setPreferredMinimizeDirection(Direction direction)
Sets the preferred minimize direction of this window. |
SplitWindow |
DockingWindow.split(DockingWindow splitWithWindow,
Direction direction,
float dividerLocation)
Splits this window in the given direction. |
void |
DockingWindow.minimize(Direction direction)
Minimizes this window to a WindowBar located in direction. |
void |
DockingWindow.minimizeWithAbort(Direction direction)
Same as DockingWindow.minimize(Direction) , but the DockingWindowListener.windowMinimizing(DockingWindow) method of
the window listeners will be called before minimizing the window, giving them the possibility to abort the minimize
operation. |
Uses of Direction in net.infonode.docking.drop |
Methods in net.infonode.docking.drop that return Direction | |
Direction |
SplitDropInfo.getSplitDirection()
Returns the current split direction i.e. in what direction the drop window should be split. |
Constructors in net.infonode.docking.drop with parameters of type Direction | |
SplitDropInfo(DockingWindow window,
DockingWindow dropWindow,
Point point,
Direction splitDirection)
|
Uses of Direction in net.infonode.docking.properties |
Methods in net.infonode.docking.properties that return Direction | |
Direction |
ViewTitleBarProperties.getOrientation()
Returns the orientation i.e. on what side of the view's content the title bar will be placed |
Direction |
ViewTitleBarProperties.getDirection()
Returns the layout direction The icon, text and components are laid out in a line that will be rotated in the given direction. |
Methods in net.infonode.docking.properties with parameters of type Direction | |
static WindowBarProperties |
WindowBarProperties.createDefault(Direction location)
Creates a property object which inherits the default property values. |
ViewTitleBarProperties |
ViewTitleBarProperties.setOrientation(Direction orientation)
Sets the orientation i.e. on what side of the view's content the title bar will be placed |
ViewTitleBarProperties |
ViewTitleBarProperties.setDirection(Direction direction)
Sets the layout direction The icon, text and components are laid out in a line that will be rotated in the given direction. |
Uses of Direction in net.infonode.gui.componentpainter |
Methods in net.infonode.gui.componentpainter with parameters of type Direction | |
void |
ComponentPainter.paint(Component component,
Graphics g,
int x,
int y,
int width,
int height,
Direction direction,
boolean horizontalFlip,
boolean verticalFlip)
Paints an area in a specific direction and optinally flipped horizontally and/or vertically. |
void |
AbstractComponentPainter.paint(Component component,
Graphics g,
int x,
int y,
int width,
int height,
Direction direction,
boolean horizontalFlip,
boolean verticalFlip)
|
void |
GradientComponentPainter.paint(Component component,
Graphics g,
int x,
int y,
int width,
int height,
Direction direction,
boolean horizontalFlip,
boolean verticalFlip)
|
void |
SolidColorComponentPainter.paint(Component component,
Graphics g,
int x,
int y,
int width,
int height,
Direction direction,
boolean horizontalFlip,
boolean verticalFlip)
|
Uses of Direction in net.infonode.properties.gui.util |
Methods in net.infonode.properties.gui.util that return Direction | |
Direction |
ShapedPanelProperties.getDirection()
Gets the direction of the shaped panel. |
Methods in net.infonode.properties.gui.util with parameters of type Direction | |
ShapedPanelProperties |
ShapedPanelProperties.setDirection(Direction direction)
Sets the direction of the shaped panel. |
void |
ComponentProperties.applyTo(JComponent component,
Direction insetsDirection)
Applies the property values to a component and rotates the insets in the given direction. |
Uses of Direction in net.infonode.properties.types |
Methods in net.infonode.properties.types that return Direction | |
Direction |
DirectionProperty.get(Object valueContainer)
Returns the Direction value of this property in a value container. |
Methods in net.infonode.properties.types with parameters of type Direction | |
void |
DirectionProperty.set(Object valueContainer,
Direction direction)
Sets the Direction value of this property in a value container. |
Uses of Direction in net.infonode.tabbedpanel |
Methods in net.infonode.tabbedpanel that return Direction | |
Direction |
TabbedPanelProperties.getTabAreaOrientation()
Gets the tab area orientation, i.e. if the tab area should be placed up, down, left or right of the content area |
Methods in net.infonode.tabbedpanel with parameters of type Direction | |
TabbedPanelProperties |
TabbedPanelProperties.setTabAreaOrientation(Direction direction)
Sets the tab area orientation, i.e. if the tab area should be placed up, down, left or right of the content area. |
Uses of Direction in net.infonode.tabbedpanel.theme |
Methods in net.infonode.tabbedpanel.theme with parameters of type Direction | |
Color |
LookAndFeelTheme.getBorderColor(Direction d)
|
Uses of Direction in net.infonode.tabbedpanel.titledtab |
Methods in net.infonode.tabbedpanel.titledtab that return Direction | |
Direction |
TitledTabStateProperties.getDirection()
Gets the direction, i.e. the line layout of the titled tab components. |
Methods in net.infonode.tabbedpanel.titledtab with parameters of type Direction | |
TitledTabStateProperties |
TitledTabStateProperties.setDirection(Direction direction)
Sets the direction, i.e. the line layout of the titled tab's components. |
Uses of Direction in net.infonode.util |
Fields in net.infonode.util declared as Direction | |
static Direction |
Direction.UP
Up direction. |
static Direction |
Direction.RIGHT
Right direction. |
static Direction |
Direction.DOWN
Down direction. |
static Direction |
Direction.LEFT
Left direction. |
static Direction[] |
Direction.DIRECTIONS
Array containing all directions. |
Methods in net.infonode.util that return Direction | |
Direction |
Direction.getNextCW()
Returns the direction that is one quarter of a revolution clock wise. |
Direction |
Direction.getNextCCW()
Returns the direction that is one quarter of a revolution counter clock wise. |
Direction |
Direction.getOpposite()
Returns the opposite direction. |
static Direction[] |
Direction.getDirections()
Gets all directions. |
static Direction |
Direction.decode(ObjectInputStream in)
Decodes a direction from a stream. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |