| java.lang.Object java.awt.Component java.awt.Canvas websphinx.workbench.GraphLayout
All known Subclasses: websphinx.workbench.WebGraph,
Constructor Summary | |
public | GraphLayout() Make a GraphLayout. |
Method Summary | |
public synchronized void | addEdge(RenderedEdge edge) Add an edge. | public synchronized void | addNode(RenderedNode node) Add a node. | public synchronized void | changedGraph() Notify background thread that the graph has changed. | public synchronized void | clear() Erase the graph. | void | click(int x, int y, boolean rightClick) | void | createOffscreenArea(Dimension d) | void | drag(int x, int y) | void | drawArrowToBox(Graphics g, int x1, int y1, int x2, int y2, int wHalfBox, int hHalfBox, int head_length, int head_width, boolean thick) | void | drop(int x, int y) | protected void | finalize() | public synchronized GDAlgorithm | getAlgorithm() Get the graph-drawing algorithm in use. | public synchronized boolean | getAutomaticLayout() Test whether the graph is laid out automatically. | public synchronized Color | getEdgeColor() Get the edge color. | public synchronized FontMetrics | getFontMetrics() | public synchronized Graph | getGraph() Get the graph. | public synchronized int | getInterval() Get the refresh interval (measured in seconds). | public synchronized int | getIterations() Get the layout algorithm iterations per refresh. | public synchronized double | getNodeCharge() Get the node charge. | public synchronized Color | getNodeColor() Get the node background color. | public synchronized boolean | getQuiescent() Test whether the graph is quiescent (not changing in the background). | public synchronized double | getRestLength() Get the default rest length for new edges. | public synchronized boolean | getRunning() | public synchronized RenderedEdge | getSelectedEdge() Get edge currently under the mouse pointer, or null if no edge is under the mouse. | public synchronized RenderedNode | getSelectedNode() Get node currently under the mouse pointer, or null if no node is under the mouse. | public synchronized double | getSpringConstant() Get the spring constant. | public synchronized double | getThreshold() Get the threshold. | public synchronized Color | getTipColor() Get the popup tip color. | public boolean | handleEvent(Event event) | public synchronized boolean | imageUpdate(Image img, int infoflags, int x, int y, int width, int height) Handle a loaded image. | boolean | inLineSegment(int x, int y, int x1, int y1, int x2, int y2, int threshold) | void | leave() | public synchronized void | paint(Graphics g) | public Object | pick(int x, int y) Find the object (Node or Edge) at position (x,y) relative to the window. | public synchronized void | placeNodeOnGraph(RenderedNode n, double x, double y) | public synchronized void | placeNodeOnScreen(RenderedNode n, int x, int y) | void | point(int x, int y) | public synchronized void | removeEdge(RenderedEdge edge) Remove an edge. | public synchronized void | removeNode(RenderedNode node) Remove a node. | public synchronized void | repaint() Notify background thread that the view has changed. | synchronized void | resetAlgorithm() | public synchronized void | run() | public synchronized void | setAlgorithm(GDAlgorithm algorithm) Set the graph-drawing algorithm. | public synchronized void | setAutomaticLayout(boolean f) Set whether the graph is laid out automatically. | public synchronized void | setEdgeColor(Color edgeColor) Set the edge color. | public synchronized void | setFont(Font f) | public synchronized void | setGraph(Graph graph) Set the graph. | public synchronized void | setInterval(int interval) Set the refresh interval (in seconds). | public synchronized void | setIterations(int iterations) Set the layout algorithm iterations per refresh. | public synchronized void | setNodeCharge(double nodeCharge) Set the node charge. | public synchronized void | setNodeColor(Color nodeColor) Set the node background color. | public synchronized void | setRestLength(double restLength) Set the default rest length for new edges. | public synchronized void | setSpringConstant(double springConstant) Set the spring constant. | public synchronized void | setThreshold(double threshold) Set the threshold. | public synchronized void | setTipColor(Color tipColor) Set the popup tip color. | public void | showControlPanel() Show control panel for changing graph layout parameters. | public synchronized void | start() Start automatic graph layout (in the background). | public synchronized void | stop() Stop automatic graph layout. | public void | update(Graphics g) |
MULTIPLIER | final static int MULTIPLIER(Code) | | The body of the background thread. Clients should not call this
method.
|
algorithm | GDAlgorithm algorithm(Code) | | |
automaticLayout | boolean automaticLayout(Code) | | |
controlPanel | GraphLayoutControlPanel controlPanel(Code) | | |
dragOffsetXdragOffsetY | int dragOffsetXdragOffsetY(Code) | | |
iterations | int iterations(Code) | | |
nodeCharge | double nodeCharge(Code) | | |
originXoriginY | double originXoriginY(Code) | | |
quiescent | boolean quiescent(Code) | | |
restLength | double restLength(Code) | | |
scaleXscaleY | double scaleXscaleY(Code) | | |
springConstant | double springConstant(Code) | | |
threshold | double threshold(Code) | | |
tipXtipYtipWidthtipHeight | int tipXtipYtipWidthtipHeight(Code) | | |
GraphLayout | public GraphLayout()(Code) | | Make a GraphLayout.
|
changedGraph | public synchronized void changedGraph()(Code) | | Notify background thread that the graph has changed.
|
clear | public synchronized void clear()(Code) | | Erase the graph.
|
click | void click(int x, int y, boolean rightClick)(Code) | | |
drag | void drag(int x, int y)(Code) | | |
drawArrowToBox | void drawArrowToBox(Graphics g, int x1, int y1, int x2, int y2, int wHalfBox, int hHalfBox, int head_length, int head_width, boolean thick)(Code) | | |
drop | void drop(int x, int y)(Code) | | |
getAlgorithm | public synchronized GDAlgorithm getAlgorithm()(Code) | | Get the graph-drawing algorithm in use.
|
getAutomaticLayout | public synchronized boolean getAutomaticLayout()(Code) | | Test whether the graph is laid out automatically.
|
getEdgeColor | public synchronized Color getEdgeColor()(Code) | | Get the edge color.
|
getGraph | public synchronized Graph getGraph()(Code) | | Get the graph.
|
getInterval | public synchronized int getInterval()(Code) | | Get the refresh interval (measured in seconds).
|
getIterations | public synchronized int getIterations()(Code) | | Get the layout algorithm iterations per refresh.
|
getNodeCharge | public synchronized double getNodeCharge()(Code) | | Get the node charge.
|
getNodeColor | public synchronized Color getNodeColor()(Code) | | Get the node background color.
|
getQuiescent | public synchronized boolean getQuiescent()(Code) | | Test whether the graph is quiescent (not changing in the background).
|
getRestLength | public synchronized double getRestLength()(Code) | | Get the default rest length for new edges.
|
getRunning | public synchronized boolean getRunning()(Code) | | Test whether the graph layout thread is running in the background
|
getSelectedEdge | public synchronized RenderedEdge getSelectedEdge()(Code) | | Get edge currently under the mouse pointer, or null if no edge is under the mouse.
|
getSelectedNode | public synchronized RenderedNode getSelectedNode()(Code) | | Get node currently under the mouse pointer, or null if no node is under the mouse.
|
getSpringConstant | public synchronized double getSpringConstant()(Code) | | Get the spring constant.
|
getThreshold | public synchronized double getThreshold()(Code) | | Get the threshold.
|
getTipColor | public synchronized Color getTipColor()(Code) | | Get the popup tip color.
|
handleEvent | public boolean handleEvent(Event event)(Code) | | |
imageUpdate | public synchronized boolean imageUpdate(Image img, int infoflags, int x, int y, int width, int height)(Code) | | Handle a loaded image.
|
inLineSegment | boolean inLineSegment(int x, int y, int x1, int y1, int x2, int y2, int threshold)(Code) | | |
pick | public Object pick(int x, int y)(Code) | | Find the object (Node or Edge) at position (x,y) relative to the window.
Parameters: x - X position Parameters: y - Y position topmost object under (x,y), or null if none |
placeNodeOnGraph | public synchronized void placeNodeOnGraph(RenderedNode n, double x, double y)(Code) | | |
placeNodeOnScreen | public synchronized void placeNodeOnScreen(RenderedNode n, int x, int y)(Code) | | |
point | void point(int x, int y)(Code) | | |
repaint | public synchronized void repaint()(Code) | | Notify background thread that the view has changed.
|
resetAlgorithm | synchronized void resetAlgorithm()(Code) | | |
run | public synchronized void run()(Code) | | |
setAlgorithm | public synchronized void setAlgorithm(GDAlgorithm algorithm)(Code) | | Set the graph-drawing algorithm.
|
setAutomaticLayout | public synchronized void setAutomaticLayout(boolean f)(Code) | | Set whether the graph is laid out automatically.
|
setEdgeColor | public synchronized void setEdgeColor(Color edgeColor)(Code) | | Set the edge color.
|
setFont | public synchronized void setFont(Font f)(Code) | | |
setGraph | public synchronized void setGraph(Graph graph)(Code) | | Set the graph.
|
setInterval | public synchronized void setInterval(int interval)(Code) | | Set the refresh interval (in seconds).
|
setIterations | public synchronized void setIterations(int iterations)(Code) | | Set the layout algorithm iterations per refresh.
|
setNodeCharge | public synchronized void setNodeCharge(double nodeCharge)(Code) | | Set the node charge.
|
setNodeColor | public synchronized void setNodeColor(Color nodeColor)(Code) | | Set the node background color.
|
setRestLength | public synchronized void setRestLength(double restLength)(Code) | | Set the default rest length for new edges.
|
setSpringConstant | public synchronized void setSpringConstant(double springConstant)(Code) | | Set the spring constant.
|
setThreshold | public synchronized void setThreshold(double threshold)(Code) | | Set the threshold.
|
setTipColor | public synchronized void setTipColor(Color tipColor)(Code) | | Set the popup tip color.
|
showControlPanel | public void showControlPanel()(Code) | | Show control panel for changing graph layout parameters.
|
start | public synchronized void start()(Code) | | Start automatic graph layout (in the background).
|
stop | public synchronized void stop()(Code) | | Stop automatic graph layout.
|
Methods inherited from java.awt.Component | public boolean action(Event evt, Object what)(Code)(Java Doc) public void add(PopupMenu popup)(Code)(Java Doc) public synchronized void addComponentListener(ComponentListener l)(Code)(Java Doc) public synchronized void addFocusListener(FocusListener l)(Code)(Java Doc) public void addHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc) public void addHierarchyListener(HierarchyListener l)(Code)(Java Doc) public synchronized void addInputMethodListener(InputMethodListener l)(Code)(Java Doc) public synchronized void addKeyListener(KeyListener l)(Code)(Java Doc) public synchronized void addMouseListener(MouseListener l)(Code)(Java Doc) public synchronized void addMouseMotionListener(MouseMotionListener l)(Code)(Java Doc) public synchronized void addMouseWheelListener(MouseWheelListener l)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public synchronized void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public synchronized void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void applyComponentOrientation(ComponentOrientation orientation)(Code)(Java Doc) public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc) public Rectangle bounds()(Code)(Java Doc) public int checkImage(Image image, ImageObserver observer)(Code)(Java Doc) public int checkImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc) protected AWTEvent coalesceEvents(AWTEvent existingEvent, AWTEvent newEvent)(Code)(Java Doc) public boolean contains(int x, int y)(Code)(Java Doc) public boolean contains(Point p)(Code)(Java Doc) public Image createImage(ImageProducer producer)(Code)(Java Doc) public Image createImage(int width, int height)(Code)(Java Doc) public VolatileImage createVolatileImage(int width, int height)(Code)(Java Doc) public VolatileImage createVolatileImage(int width, int height, ImageCapabilities caps) throws AWTException(Code)(Java Doc) public void deliverEvent(Event e)(Code)(Java Doc) public void disable()(Code)(Java Doc) final protected void disableEvents(long eventsToDisable)(Code)(Java Doc) final public void dispatchEvent(AWTEvent e)(Code)(Java Doc) public void doLayout()(Code)(Java Doc) public void enable()(Code)(Java Doc) public void enable(boolean b)(Code)(Java Doc) final protected void enableEvents(long eventsToEnable)(Code)(Java Doc) public void enableInputMethods(boolean enable)(Code)(Java Doc) protected void firePropertyChange(String propertyName, Object oldValue, Object newValue)(Code)(Java Doc) protected void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc) protected void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, byte oldValue, byte newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, char oldValue, char newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, short oldValue, short newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, long oldValue, long newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, float oldValue, float newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, double oldValue, double newValue)(Code)(Java Doc) public AccessibleContext getAccessibleContext()(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) public Color getBackground()(Code)(Java Doc) public int getBaseline(int width, int height)(Code)(Java Doc) public BaselineResizeBehavior getBaselineResizeBehavior()(Code)(Java Doc) public Rectangle getBounds()(Code)(Java Doc) public Rectangle getBounds(Rectangle rv)(Code)(Java Doc) public ColorModel getColorModel()(Code)(Java Doc) public Component getComponentAt(int x, int y)(Code)(Java Doc) public Component getComponentAt(Point p)(Code)(Java Doc) public synchronized ComponentListener[] getComponentListeners()(Code)(Java Doc) public ComponentOrientation getComponentOrientation()(Code)(Java Doc) public Cursor getCursor()(Code)(Java Doc) public synchronized DropTarget getDropTarget()(Code)(Java Doc) public Container getFocusCycleRootAncestor()(Code)(Java Doc) public synchronized FocusListener[] getFocusListeners()(Code)(Java Doc) public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc) public boolean getFocusTraversalKeysEnabled()(Code)(Java Doc) public Font getFont()(Code)(Java Doc) public FontMetrics getFontMetrics(Font font)(Code)(Java Doc) public Color getForeground()(Code)(Java Doc) public Graphics getGraphics()(Code)(Java Doc) public GraphicsConfiguration getGraphicsConfiguration()(Code)(Java Doc) public int getHeight()(Code)(Java Doc) public synchronized HierarchyBoundsListener[] getHierarchyBoundsListeners()(Code)(Java Doc) public synchronized HierarchyListener[] getHierarchyListeners()(Code)(Java Doc) public boolean getIgnoreRepaint()(Code)(Java Doc) public InputContext getInputContext()(Code)(Java Doc) public synchronized InputMethodListener[] getInputMethodListeners()(Code)(Java Doc) public InputMethodRequests getInputMethodRequests()(Code)(Java Doc) public synchronized KeyListener[] getKeyListeners()(Code)(Java Doc) public T[] getListeners(Class<T> listenerType)(Code)(Java Doc) public Locale getLocale()(Code)(Java Doc) public Point getLocation()(Code)(Java Doc) public Point getLocation(Point rv)(Code)(Java Doc) public Point getLocationOnScreen()(Code)(Java Doc) public Dimension getMaximumSize()(Code)(Java Doc) public Dimension getMinimumSize()(Code)(Java Doc) public synchronized MouseListener[] getMouseListeners()(Code)(Java Doc) public synchronized MouseMotionListener[] getMouseMotionListeners()(Code)(Java Doc) public Point getMousePosition() throws HeadlessException(Code)(Java Doc) public synchronized MouseWheelListener[] getMouseWheelListeners()(Code)(Java Doc) public String getName()(Code)(Java Doc) public Container getParent()(Code)(Java Doc) public ComponentPeer getPeer()(Code)(Java Doc) public Dimension getPreferredSize()(Code)(Java Doc) public synchronized PropertyChangeListener[] getPropertyChangeListeners()(Code)(Java Doc) public synchronized PropertyChangeListener[] getPropertyChangeListeners(String propertyName)(Code)(Java Doc) public Dimension getSize()(Code)(Java Doc) public Dimension getSize(Dimension rv)(Code)(Java Doc) public Toolkit getToolkit()(Code)(Java Doc) final public Object getTreeLock()(Code)(Java Doc) public int getWidth()(Code)(Java Doc) public int getX()(Code)(Java Doc) public int getY()(Code)(Java Doc) public boolean gotFocus(Event evt, Object what)(Code)(Java Doc) public boolean handleEvent(Event evt)(Code)(Java Doc) public boolean hasFocus()(Code)(Java Doc) public void hide()(Code)(Java Doc) public boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h)(Code)(Java Doc) public boolean inside(int x, int y)(Code)(Java Doc) public void invalidate()(Code)(Java Doc) public boolean isBackgroundSet()(Code)(Java Doc) public boolean isCursorSet()(Code)(Java Doc) public boolean isDisplayable()(Code)(Java Doc) public boolean isDoubleBuffered()(Code)(Java Doc) public boolean isEnabled()(Code)(Java Doc) public boolean isFocusCycleRoot(Container container)(Code)(Java Doc) public boolean isFocusOwner()(Code)(Java Doc) public boolean isFocusTraversable()(Code)(Java Doc) public boolean isFocusable()(Code)(Java Doc) public boolean isFontSet()(Code)(Java Doc) public boolean isForegroundSet()(Code)(Java Doc) public boolean isLightweight()(Code)(Java Doc) public boolean isMaximumSizeSet()(Code)(Java Doc) public boolean isMinimumSizeSet()(Code)(Java Doc) public boolean isOpaque()(Code)(Java Doc) public boolean isPreferredSizeSet()(Code)(Java Doc) public boolean isShowing()(Code)(Java Doc) public boolean isValid()(Code)(Java Doc) public boolean isVisible()(Code)(Java Doc) public boolean keyDown(Event evt, int key)(Code)(Java Doc) public boolean keyUp(Event evt, int key)(Code)(Java Doc) public void layout()(Code)(Java Doc) public void list()(Code)(Java Doc) public void list(PrintStream out)(Code)(Java Doc) public void list(PrintStream out, int indent)(Code)(Java Doc) public void list(PrintWriter out)(Code)(Java Doc) public void list(PrintWriter out, int indent)(Code)(Java Doc) public Component locate(int x, int y)(Code)(Java Doc) public Point location()(Code)(Java Doc) public boolean lostFocus(Event evt, Object what)(Code)(Java Doc) public Dimension minimumSize()(Code)(Java Doc) public boolean mouseDown(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseDrag(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseEnter(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseExit(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseMove(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseUp(Event evt, int x, int y)(Code)(Java Doc) public void move(int x, int y)(Code)(Java Doc) public void nextFocus()(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) public void paintAll(Graphics g)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) public boolean postEvent(Event e)(Code)(Java Doc) public Dimension preferredSize()(Code)(Java Doc) public boolean prepareImage(Image image, ImageObserver observer)(Code)(Java Doc) public boolean prepareImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc) public void print(Graphics g)(Code)(Java Doc) public void printAll(Graphics g)(Code)(Java Doc) protected void processComponentEvent(ComponentEvent e)(Code)(Java Doc) protected void processEvent(AWTEvent e)(Code)(Java Doc) protected void processFocusEvent(FocusEvent e)(Code)(Java Doc) protected void processHierarchyBoundsEvent(HierarchyEvent e)(Code)(Java Doc) protected void processHierarchyEvent(HierarchyEvent e)(Code)(Java Doc) protected void processInputMethodEvent(InputMethodEvent e)(Code)(Java Doc) protected void processKeyEvent(KeyEvent e)(Code)(Java Doc) protected void processMouseEvent(MouseEvent e)(Code)(Java Doc) protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc) protected void processMouseWheelEvent(MouseWheelEvent e)(Code)(Java Doc) public void remove(MenuComponent popup)(Code)(Java Doc) public synchronized void removeComponentListener(ComponentListener l)(Code)(Java Doc) public synchronized void removeFocusListener(FocusListener l)(Code)(Java Doc) public void removeHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc) public void removeHierarchyListener(HierarchyListener l)(Code)(Java Doc) public synchronized void removeInputMethodListener(InputMethodListener l)(Code)(Java Doc) public synchronized void removeKeyListener(KeyListener l)(Code)(Java Doc) public synchronized void removeMouseListener(MouseListener l)(Code)(Java Doc) public synchronized void removeMouseMotionListener(MouseMotionListener l)(Code)(Java Doc) public synchronized void removeMouseWheelListener(MouseWheelListener l)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public synchronized void removePropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public synchronized void removePropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void repaint()(Code)(Java Doc) public void repaint(long tm)(Code)(Java Doc) public void repaint(int x, int y, int width, int height)(Code)(Java Doc) public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc) public void requestFocus()(Code)(Java Doc) protected boolean requestFocus(boolean temporary)(Code)(Java Doc) public boolean requestFocusInWindow()(Code)(Java Doc) protected boolean requestFocusInWindow(boolean temporary)(Code)(Java Doc) public void reshape(int x, int y, int width, int height)(Code)(Java Doc) public void resize(int width, int height)(Code)(Java Doc) public void resize(Dimension d)(Code)(Java Doc) public void setBackground(Color c)(Code)(Java Doc) public void setBounds(int x, int y, int width, int height)(Code)(Java Doc) public void setBounds(Rectangle r)(Code)(Java Doc) public void setComponentOrientation(ComponentOrientation o)(Code)(Java Doc) public void setCursor(Cursor cursor)(Code)(Java Doc) public synchronized void setDropTarget(DropTarget dt)(Code)(Java Doc) public void setEnabled(boolean b)(Code)(Java Doc) public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFocusTraversalKeysEnabled(boolean focusTraversalKeysEnabled)(Code)(Java Doc) public void setFocusable(boolean focusable)(Code)(Java Doc) public void setFont(Font f)(Code)(Java Doc) public void setForeground(Color c)(Code)(Java Doc) public void setIgnoreRepaint(boolean ignoreRepaint)(Code)(Java Doc) public void setLocale(Locale l)(Code)(Java Doc) public void setLocation(int x, int y)(Code)(Java Doc) public void setLocation(Point p)(Code)(Java Doc) public void setMaximumSize(Dimension maximumSize)(Code)(Java Doc) public void setMinimumSize(Dimension minimumSize)(Code)(Java Doc) public void setName(String name)(Code)(Java Doc) public void setPreferredSize(Dimension preferredSize)(Code)(Java Doc) public void setSize(int width, int height)(Code)(Java Doc) public void setSize(Dimension d)(Code)(Java Doc) public void setVisible(boolean b)(Code)(Java Doc) public void show()(Code)(Java Doc) public void show(boolean b)(Code)(Java Doc) public Dimension size()(Code)(Java Doc) public String toString()(Code)(Java Doc) public void transferFocus()(Code)(Java Doc) public void transferFocusBackward()(Code)(Java Doc) public void transferFocusUpCycle()(Code)(Java Doc) public void update(Graphics g)(Code)(Java Doc) public void validate()(Code)(Java Doc)
|
|
|