Lines Matching refs:visible

58  * 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, int minimum,
415 setValues(value, visible, minimum, maximum);
517 * and synchronously sets the minimum, maximum, visible amount,
532 // minimum, maximum, visible amount, and value is enforced.
552 * visible amount, and the current scroll bar value)
558 * and synchronously sets the minimum, maximum, visible amount,
576 // minimum, maximum, visible amount, and value is enforced.
596 * visible amount, and the current scroll bar value)
602 * and synchronously sets the minimum, maximum, visible amount,
628 // minimum, maximum, visible amount, and value is enforced.
633 * Gets the visible amount of this scroll bar.
636 * the visible amount is used to represent the range of values
637 * that are currently visible. The size of the scroll bar's
639 * visual representation of the relationship of the visible
641 * Note that depending on platform, the value of the visible amount property
650 * @return the visible amount of this scroll bar
668 * Sets the visible amount of this scroll bar.
671 * the visible amount is used to represent the range of values
672 * that are currently visible. The size of the scroll bar's
674 * visual representation of the relationship of the visible
676 * Note that depending on platform, the value of the visible amount property
685 * If the visible amount supplied is less than <code>one</code>
693 * and synchronously sets the minimum, maximum, visible amount,
697 * @param newAmount the new visible amount
704 // minimum, maximum, visible amount, and value is enforced.
863 * @param visible is the visible amount of the scroll bar
871 public void setValues(int value, int visible, int minimum, int maximum) {
886 if (visible > (int) maxMinusMin) {
887 visible = (int) maxMinusMin;
889 if (visible < 1) {
890 visible = 1;
896 if (value > maximum - visible) {
897 value = maximum - visible;
902 this.visibleAmount = visible;