Searched defs:visible (Results 26 - 50 of 58) sorted by relevance

123

/openjdk7/jdk/test/java/awt/Focus/AutoRequestFocusTest/
H A DAutoRequestFocusToFrontTest.java372 private static void showWindows(Window win, Window[] wins, final boolean visible) { argument
379 if (visible) {
393 setVisible(auxFrame, visible);
395 if (visible) {
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXWarningWindow.java352 public void xSetVisible(boolean visible) { argument
353 super.xSetVisible(visible);
384 public void setSecurityWarningVisible(boolean visible, boolean doSchedule) { argument
385 if (visible) {
H A DXScrollbar.java74 int width, height; // Dimensions of the visible part of the parent window
559 * visible amount </LI>
560 * <LI> The visible amount must be greater than 1 and less than or equal
566 * @param visible is the amount visible per page
570 synchronized void setValues(int value, int visible, int minimum, int maximum) { argument
574 if (visible > maximum - minimum) {
575 visible = maximum - minimum;
577 if (visible < 1) {
578 visible
603 setValues(int value, int visible, int minimum, int maximum, int unitSize, int blockSize) argument
[all...]
H A DXBaseWindow.java55 VISIBLE = "visible", // whether it is visible by default
63 boolean visible; field in class:XBaseWindow
136 visible = Boolean.TRUE.equals(params.get(VISIBLE));
621 public void xSetVisible(boolean visible) { argument
622 if (log.isLoggable(PlatformLogger.FINE)) log.fine("Setting visible on " + this + " to " + visible);
625 this.visible = visible;
626 if (visible) {
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DJTreeTable.java75 public void setRootVisible(boolean visible) { argument
76 tree.setRootVisible(visible);
93 // Install a tableModel representing the visible rows in the tree.
281 * Sublcassed to translate the graphics such that the last visible
296 * TreeCellRenderer method. Overridden to update the visible row.
/openjdk7/jdk/src/share/classes/java/awt/
H A DScrollbar.java58 * can be used to represent the amount of text that is visible.
66 * is the <em>visible amount</em>. The horizontal scroll bar
75 * <code>maximum</code> minus the <code>visible amount</code>.
77 * 300 and the <code>visible amount</code> is 60, the actual maximum
318 * <td>visible amount</td>
319 * <td>visible amount of the scroll bar's range,
381 * initial value, visible amount, and minimum and maximum values.
393 * @param visible the visible amount of the scroll bar, typically
404 public Scrollbar(int orientation, int value, int visible, in argument
871 setValues(int value, int visible, int minimum, int maximum) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DPlatformWindow.java56 public void setVisible(boolean visible); argument
H A DLWComponentPeer.java110 private boolean visible = false; field in class:LWComponentPeer
731 if (visible == v) {
734 visible = v;
747 if (visible) {
757 return visible;
1274 * Finds a top-most visible component for the given point. The location is
1347 * peer must be visible, and it must be in a container that is visible and
H A DLWWindowPeer.java254 protected void setVisibleImpl(final boolean visible) { argument
255 if (!visible && warningWindow != null) {
259 super.setVisibleImpl(visible);
261 platformWindow.setVisible(visible);
265 if (visible) {
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformEmbeddedFrame.java132 public void setVisible(boolean visible) {} argument
H A DCViewPlatformEmbeddedFrame.java86 public void setVisible(boolean visible) { argument
87 CWrapper.NSView.setHidden(view.getAWTView(), !visible);
H A DCWarningWindow.java122 public void setVisible(boolean visible, boolean doSchedule) { argument
134 if (visible) {
215 return visible;
220 public void setVisible(boolean visible) { argument
225 if (!visible) {
234 if (visible) {
240 this.visible = visible;
243 if (visible) {
H A DCFileDialog.java119 public void setVisible(boolean visible) { argument
120 if (visible) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassReader.java1497 * @param visible <tt>true</tt> if the annotations to be read are visible
1505 final boolean visible,
1529 av = mv.visitParameterAnnotation(i, readUTF8(v, buf), visible);
1501 readParameterAnnotations( int v, final String desc, final char[] buf, final boolean visible, final MethodVisitor mv) argument
H A DClassWriter.java390 * The runtime visible annotations of this class.
657 final boolean visible)
666 if (visible) {
655 visitAnnotation( final String desc, final boolean visible) argument
H A DMethodWriter.java220 * The runtime visible annotations of this method. May be <tt>null</tt>.
230 * The runtime visible parameter annotations of this method. May be
504 final boolean visible)
513 if (visible) {
526 final boolean visible)
541 if (visible) {
502 visitAnnotation( final String desc, final boolean visible) argument
523 visitParameterAnnotation( final int parameter, final String desc, final boolean visible) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_InputMethod.cpp370 (JNIEnv *env, jobject self, jobject peer, jboolean visible)
395 visible ? IMC_OPENSTATUSWINDOW : IMC_CLOSESTATUSWINDOW, 0);
369 Java_sun_awt_windows_WInputMethod_setStatusWindowVisible(JNIEnv *env, jobject self, jobject peer, jboolean visible) argument
H A Dawt_Scrollbar.cpp39 jint visible; member in struct:SetValuesStruct
326 int minPos, maxPos; // thumb positions (max depends on visible amount)
358 // Meaningful maximum position is maximum - visible.
451 si.nPage = svs->visible;
464 svs->value, svs->visible, svs->min, svs->max,
517 jint value, jint visible,
525 svs->visible = visible;
516 Java_sun_awt_windows_WScrollbarPeer_setValues(JNIEnv *env, jobject self, jint value, jint visible, jint minimum, jint maximum) argument
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextServicesSupport.java73 * @param visible The initial visibility.
77 public BeanContextServicesSupport(BeanContextServices peer, Locale lcle, boolean dTime, boolean visible) { argument
78 super(peer, lcle, dTime, visible);
H A DBeanContextSupport.java99 * @param visible The initial visibility.
103 public BeanContextSupport(BeanContext peer, Locale lcle, boolean dTime, boolean visible) { argument
108 okToUseGui = visible;
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWInputMethod.java376 // this may happen when an input method window is made visible
618 private native void setStatusWindowVisible(WComponentPeer peer, boolean visible); argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJPopupMenu.java672 * become visible.
748 * @param b true to make the popup visible, or false to
752 * description: Makes the popup visible
790 firePropertyChange("visible", Boolean.FALSE, Boolean.TRUE);
797 firePropertyChange("visible", Boolean.TRUE, Boolean.FALSE);
845 * Returns true if the popup menu is visible (currently
1235 if (propertyName == "visible") {
1248 * Handles popup "visible" PropertyChangeEvent
1250 private void handlePopupIsVisibleEvent(boolean visible) { argument
1251 if (visible) {
[all...]
H A DGroupLayout.java284 * If true, components that are not visible are treated as though they
387 * non-visible components should not be treated as part of the
427 * indicates that if {@code component} is not visible it should
3598 private boolean visible; field in class:GroupLayout.ComponentInfo
3632 return visible;
3649 if (visible != newVisible) {
3650 visible = newVisible;
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultCaret.java63 * text component is editable, the caret will become visible when focus
173 * The caret doesn't try to keep itself visible by scrolling
181 * also tries to keep itself visible by calling
272 * the caret visible. Since how this should be done
340 * focus. This is implemented to set the caret to visible
880 * Checks whether the current selection is visible.
882 * @return true if the selection is visible
907 * Indicates whether or not the caret is currently visible. As the
912 * be visible, and <code>isVisible</code> indicates whether or not
913 * the caret <b>is</b> actually visible
1563 boolean visible; field in class:DefaultCaret
[all...]
H A DDefaultEditorKit.java1422 Rectangle visible = target.getVisibleRect();
1423 Rectangle newVis = new Rectangle(visible);
1427 visible, SwingConstants.VERTICAL, direction);
1428 int initialY = visible.y;
1445 initialY + scrollAmount, visible.height);
1449 if (visible.contains(dotBounds.x, dotBounds.y)) {
1450 // Dot is currently visible, base the new
1457 // Dot isn't visible, choose the top or the bottom
1465 x, newVis.y + visible.height));
1470 // Make sure the new visible locatio
1532 getAdjustedY(JTextComponent text, Rectangle visible, int index) argument
[all...]

Completed in 141 milliseconds

123