Package org.cytoscape.application.swing
Interface CyNetworkViewDesktopMgr
-
public interface CyNetworkViewDesktopMgrInterface for managing CyNetworkViews within the desktop where they reside.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCyNetworkViewDesktopMgr.ArrangeType
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidarrangeWindows(CyNetworkViewDesktopMgr.ArrangeType arrangeType)Request the desktop view manager to tile (or untile) the current network windows.RectanglegetBounds(CyNetworkView view)Deprecated.This method has been deprecated in version 3.4.DimensiongetDesktopViewAreaSize()Deprecated.This method has been deprecated in version 3.4.voidsetBounds(CyNetworkView view, Rectangle bounds)Deprecated.This method has been deprecated in version 3.4 and does not do anything anymore.
-
-
-
Method Detail
-
getDesktopViewAreaSize
@Deprecated Dimension getDesktopViewAreaSize()
Deprecated.This method has been deprecated in version 3.4.Return the size of the desktop view area where all CyNetworkViews reside.- Returns:
- Dimension of the width x height (pixels) of the desktop view area.
-
getBounds
@Deprecated Rectangle getBounds(CyNetworkView view)
Deprecated.This method has been deprecated in version 3.4.Get the existing bounds of a given CyNetworkView within the desktop view area.- Parameters:
view- the CyNetworkView for which to obtain the bounds.- Returns:
- a Rectangle whose x,y position is the upper left corner of view and whose width and height are the dimensions of view.
-
setBounds
@Deprecated void setBounds(CyNetworkView view, Rectangle bounds)
Deprecated.This method has been deprecated in version 3.4 and does not do anything anymore.Set the bounds of a given CyNetworkView within the desktop view area.- Parameters:
view- the CyNetworkView for which to set the bounds.bounds- a Rectangle whose x,y position is the desired upper left corner of view and whose width and height are the desired dimensions of view.
-
arrangeWindows
void arrangeWindows(CyNetworkViewDesktopMgr.ArrangeType arrangeType)
Request the desktop view manager to tile (or untile) the current network windows.- Parameters:
arrangeType- the type of tiling to use. A ArrangeTYpe of CASCADE will revert to cascade (i.e. non-tiled) windows
-
-