Searched refs:VERTICAL (Results 1 - 25 of 102) sorted by relevance

12345

/openjdk9/jdk/test/java/awt/Component/Headless/
H A DHeadlessScrollbar.java57 s = new Scrollbar(Scrollbar.VERTICAL);
75 s = new Scrollbar(Scrollbar.VERTICAL, 1, 10, 0, 100);
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/
H A DSwingConstants.java109 public static final int VERTICAL = 1; field in interface:SwingConstants
H A DJScrollBar.java122 case VERTICAL:
126 throw new IllegalArgumentException("orientation must be one of: VERTICAL, HORIZONTAL");
142 * @exception IllegalArgumentException if orientation is not one of VERTICAL, HORIZONTAL
196 this(VERTICAL);
252 * @return VERTICAL or HORIZONTAL
262 * Set the scrollbar's orientation to either VERTICAL or
266 * @exception IllegalArgumentException if orientation is not one of VERTICAL, HORIZONTAL
270 "JScrollBar.VERTICAL",
283 ((oldValue == VERTICAL)
284 ? AccessibleState.VERTICAL
[all...]
H A DJProgressBar.java255 * either {@code SwingConstants.VERTICAL} or
370 * Returns {@code SwingConstants.VERTICAL} or
375 * @return <code>HORIZONTAL</code> or <code>VERTICAL</code>
385 * which must be {@code SwingConstants.VERTICAL} or
389 * @param newOrientation <code>HORIZONTAL</code> or <code>VERTICAL</code>
399 case VERTICAL:
407 ((oldOrientation == VERTICAL)
408 ? AccessibleState.VERTICAL
410 ((orientation == VERTICAL)
411 ? AccessibleState.VERTICAL
[all...]
H A DGroupLayout.java36 import static javax.swing.SwingConstants.VERTICAL;
704 linkSize(SwingConstants.VERTICAL, components);
723 * {@code SwingConstants.VERTICAL}
728 * {@code SwingConstants.VERTICAL}
746 } else if (axis == SwingConstants.VERTICAL) {
747 glAxis = VERTICAL;
750 "SwingConstants.HORIZONTAL or SwingConstants.VERTICAL");
779 registerComponents(verticalGroup, VERTICAL);
884 verticalGroup.getPreferredSize(VERTICAL));
902 verticalGroup.getMinimumSize(VERTICAL));
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/java/awt/
H A DAdjustable.java49 @Native public static final int VERTICAL = 1; field in interface:Adjustable
59 * either {@code HORIZONTAL}, {@code VERTICAL},
H A DScrollbar.java51 * redSlider=new Scrollbar(Scrollbar.VERTICAL, 0, 1, 0, 255);
176 public static final int VERTICAL = 1; field in class:Scrollbar
229 * orientation can be either : {@code VERTICAL} or
313 * <td>{@code Scrollbar.VERTICAL}</td>
362 this(VERTICAL, 0, 10, 0, 100);
370 * or {@code Scrollbar.VERTICAL},
390 * or {@code Scrollbar.VERTICAL},
414 case VERTICAL:
451 * {@code Scrollbar.VERTICAL}
463 * {@code Scrollbar.VERTICAL}
[all...]
H A DGridBagConstraints.java75 public static final int VERTICAL = 3; field in class:GridBagConstraints
468 * {@code VERTICAL}: Make the component tall enough to fill its
661 return (fill == BOTH || fill == VERTICAL);
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/
H A DProgressBarPanel.java37 public static final int VERTICAL = 0; field in class:ProgressBarPanel
41 this(VERTICAL);
44 /** LayoutType is either VERTICAL or HORIZONTAL */
47 if (layoutType == VERTICAL) {
/openjdk9/jdk/test/java/awt/Mixing/AWT_Mixing/
H A DJScrollBarInGlassPaneOverlapping.java55 JScrollBar ch = new JScrollBar(JScrollBar.VERTICAL);
H A DJScrollBarOverlapping.java54 JScrollBar ch = new JScrollBar(JScrollBar.VERTICAL);
/openjdk9/jdk/test/java/beans/XMLEncoder/
H A Djava_awt_GridBagConstraints.java47 gbc.fill = GridBagConstraints.VERTICAL;
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKConstants.java116 VERTICAL enum constant in enum:GTKConstants.Orientation
/openjdk9/jdk/test/javax/swing/JSlider/6579827/
H A Dbug6579827.java57 JSlider slider = new JSlider(JSlider.VERTICAL, 0, 100, 0);
/openjdk9/jdk/src/java.desktop/share/classes/sun/awt/
H A DRepaintArea.java53 private static final int VERTICAL = 1; field in class:RepaintArea
101 addTo = (r.width > r.height) ? HORIZONTAL : VERTICAL;
205 if (!subtract(ra.paintRects[VERTICAL], ra.paintRects[HORIZONTAL])) {
206 subtract(ra.paintRects[HORIZONTAL], ra.paintRects[VERTICAL]);
209 if (ra.paintRects[HORIZONTAL] != null && ra.paintRects[VERTICAL] != null) {
210 Rectangle paintRect = ra.paintRects[HORIZONTAL].union(ra.paintRects[VERTICAL]);
213 * ra.paintRects[HORIZONTAL].height - ra.paintRects[VERTICAL].width
214 * ra.paintRects[VERTICAL].height;
218 ra.paintRects[VERTICAL] = null;
/openjdk9/jdk/src/java.desktop/macosx/classes/com/apple/laf/
H A DAquaPopupMenuSeparatorUI.java50 if (((JSeparator)c).getOrientation() == SwingConstants.VERTICAL) {
66 if (((JSeparator)c).getOrientation() == SwingConstants.VERTICAL) {
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/metal/
H A DMetalSeparatorUI.java76 if ( ((JSeparator)c).getOrientation() == JSeparator.VERTICAL )
96 if ( ((JSeparator)c).getOrientation() == JSeparator.VERTICAL )
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsToolBarSeparatorUI.java58 boolean vertical = ((JSeparator)c).getOrientation() == SwingConstants.VERTICAL;
65 if (((JSeparator)c).getOrientation() == SwingConstants.VERTICAL) {
76 if (((JSeparator)c).getOrientation() == SwingConstants.VERTICAL) {
84 boolean vertical = ((JSeparator)c).getOrientation() == SwingConstants.VERTICAL;
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicSeparatorUI.java123 if ( ((JSeparator)c).getOrientation() == JSeparator.VERTICAL )
143 if ( ((JSeparator)c).getOrientation() == JSeparator.VERTICAL )
/openjdk9/jdk/src/java.desktop/windows/classes/sun/awt/windows/
H A DWScrollbarPeer.java39 if (((Scrollbar)target).getOrientation() == Scrollbar.VERTICAL) {
40 return new Dimension(getScrollbarSize(Scrollbar.VERTICAL), 50);
/openjdk9/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/drivers/scrolling/
H A DJSpinnerDriver.java56 return SwingConstants.VERTICAL;
89 return SwingConstants.VERTICAL;
H A DScrollPaneDriver.java124 isScrollbarVisible(Scrollbar.VERTICAL)
134 } else if (orientation == Scrollbar.VERTICAL) {
/openjdk9/jdk/test/javax/swing/JSlider/6794831/
H A Dbug6794831.java79 slider.setOrientation(JSlider.VERTICAL);
88 slider.setOrientation(JSlider.VERTICAL);
/openjdk9/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DXScrollPanePeer.java42 public static final int VERTICAL = 1 << 0; field in class:XScrollPanePeer
53 int active=VERTICAL;
233 scroll(x, y, VERTICAL | HORIZONTAL);
245 if (adj.getOrientation() == Adjustable.VERTICAL) {
254 if (adj.getOrientation() == Adjustable.VERTICAL) {
255 scroll(-1, v, VERTICAL);
263 scroll(x, y, VERTICAL | HORIZONTAL);
306 if ((flag & VERTICAL) != 0) {
489 active = VERTICAL;
503 if (active == VERTICAL) {
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/javax/accessibility/
H A DAccessibleState.java291 * @see #VERTICAL
296 public static final AccessibleState VERTICAL field in class:AccessibleState

Completed in 161 milliseconds

12345