Searched defs:focus (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DRadialGradientPaint.java42 * specify a separate focus point within that circle, which controls the
43 * location of the first color of the gradient. By default the focus is
46 * This paint will map the first color of the gradient to the focus point,
49 * from the focus point to the circumference will thus span all the gradient
52 * Specifying a focus point outside of the radius of the circle will cause
54 * the edge of the circle in the direction of the focus point.
56 * the specified focus point.
80 * from the focus point. The following figure shows that the distance AB
86 * the user sets the focus so that it coincides with the center of the circle,
103 * {@code RadialGradientPaint}, where the center and focus point
155 private final Point2D focus; field in class:RadialGradientPaint
401 RadialGradientPaint(Point2D center, float radius, Point2D focus, float[] fractions, Color[] colors, CycleMethod cycleMethod) argument
451 RadialGradientPaint(Point2D center, float radius, Point2D focus, float[] fractions, Color[] colors, CycleMethod cycleMethod, ColorSpaceType colorSpace, AffineTransform gradientTransform) argument
[all...]
H A DContainer.java77 * <b>Note</b>: For details on the focus subsystem, see
78 * <a href="http://java.sun.com/docs/books/tutorial/uiswing/misc/focus.html">
122 * The focus traversal policy that will manage keyboard traversal of this
123 * Container's children, if this Container is a focus cycle root. If the
124 * value is null, this Container inherits its policy from its focus-cycle-
128 * focus-cycle-root children that have no keyboard-traversal policy of
129 * their own (as will, recursively, their focus-cycle-root children).
131 * If this Container is not a focus cycle root, the value will be
133 * Containers until this Container is made a focus cycle root.
142 * Indicates whether this Component is the root of a focus traversa
4855 private Component focus; field in class:LightweightDispatcher
[all...]
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLSelectElement.java153 * Removes keyboard focus from this element.
158 * Gives keyboard focus to this element.
160 public void focus(); method in interface:HTMLSelectElement
H A DHTMLTextAreaElement.java128 * Removes keyboard focus from this element.
133 * Gives keyboard focus to this element.
135 public void focus(); method in interface:HTMLTextAreaElement
H A DHTMLAnchorElement.java131 * Removes keyboard focus from this element.
136 * Gives keyboard focus to this element.
138 public void focus(); method in interface:HTMLAnchorElement
H A DHTMLInputElement.java202 * Removes keyboard focus from this element.
207 * Gives keyboard focus to this element.
209 public void focus(); method in interface:HTMLInputElement
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifIconFactory.java379 private Color focus = UIManager.getColor("windowBorder"); field in class:MotifIconFactory.MenuArrowIcon
401 g.setColor(focus);
416 g.setColor(focus);
H A DMotifBorders.java91 private Color focus; field in class:MotifBorders.FocusBorder
94 public FocusBorder(Color control, Color focus) { argument
96 this.focus = focus;
101 g.setColor(focus);
117 protected Color focus = UIManager.getColor("activeCaptionBorder"); field in class:MotifBorders.ButtonBorder
122 public ButtonBorder(Color shadow, Color highlight, Color darkShadow, Color focus) { argument
126 this.focus = focus;
169 g.setColor(focus);
196 ToggleButtonBorder(Color shadow, Color highlight, Color darkShadow, Color focus) argument
229 MenuBarBorder(Color shadow, Color highlight, Color darkShadow, Color focus) argument
567 drawBezel(Graphics g, int x, int y, int w, int h, boolean isPressed, boolean hasFocus, Color shadow, Color highlight, Color darkShadow, Color focus) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSplitPaneUI.java104 * Keys to use for forward focus traversal when the JComponent is
105 * managing focus.
110 * Keys to use for backward focus traversal when the JComponent is
111 * managing focus.
368 // focus forward traversal key
376 // focus backward traversal key
465 // sets the focus forward and backward traversal keys to null
2193 Component focus = manager.getFocusOwner();
2194 Component focusOn = getNextSide(splitPane, focus);
2196 // don't change the focus i
2209 getNextSide(JSplitPane splitPane, Component focus) argument
[all...]
H A DBasicTabbedPaneUI.java65 protected Color focus; field in class:BasicTabbedPaneUI
167 * Tab that has focus.
365 focus = UIManager.getColor("TabbedPane.focus");
397 focus = null;
1142 g.setColor(focus);
1973 // Just move focus (not selection)
2010 * Returns the index of the tab that has focus.
2012 * @return index of tab that has focus
3641 // request focus
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXTextAreaPeer.java1135 Color focus = SystemColor.activeCaptionBorder; field in class:XTextAreaPeer.AWTTextPane
1152 g.setColor(focus);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java58 protected Color focus; field in class:AquaTabbedPaneCopyFromBasicUI
159 * Tab that has focus.
360 focus = UIManager.getColor("TabbedPane.focus");
384 focus = null;
1062 g.setColor(focus);
1837 // Just move focus (not selection)
1873 * Returns the index of the tab that has focus.
1875 * @return index of tab that has focus
3389 // request focus
[all...]

Completed in 203 milliseconds