Searched defs:hsb (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DScrollPaneLayout.java85 protected JScrollBar hsb; field in class:ScrollPaneLayout
174 hsb = sp.getHorizontalScrollBar();
236 hsb = (JScrollBar)addSingletonComponent(hsb, c);
275 else if (c == hsb) {
276 hsb = null;
394 return hsb;
563 if ((hsb != null) && (hsbPolicy != HORIZONTAL_SCROLLBAR_NEVER)) {
565 prefHeight += hsb.getPreferredSize().height;
573 prefHeight += hsb
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollPanePeer.java49 XHorizontalScrollbar hsb; field in class:XScrollPanePeer
78 hsb = new XHorizontalScrollbar(this);
101 hsb.setValues(0, w, 0, w, unitIncrement, Math.max(1, (int)(w * 0.90)));
102 hsb.setSize(w, hsbSpace-SCROLLBAR_INSET);
193 hsb.setValues(hsb.getValue(), vis, 0, max);
194 hsb.setBlockIncrement((int)(hsb.getVisibleAmount() * .90));
195 hsb.setSize(width-vsbSpace, hsbSpace-SCROLLBAR_INSET);
197 // hadj.setVisibleAmount(hsb
[all...]
H A DListHelper.java71 private XHorizontalScrollbar hsb; // null if unsupported field in class:ListHelper
115 hsb = new XHorizontalScrollbar(this);
116 hsb.setValues(0, 0, 0, 0, 1, 1);
370 public XHorizontalScrollbar getHSB() { return hsb; }
386 assert hsb != null : "Horiz scrollbar is visible, yet is null?";
422 // FIXME: check if added item makes a hsb necessary (if supported, that of course)
435 else if ((sb == hsb) && hsbVis) {
466 else if ((XHorizontalScrollbar)obj == hsb) {
467 hsb.setValue(v);
484 XHorizontalScrollbar hsb) {
619 doWheelScroll(XVerticalScrollbar vsb, XHorizontalScrollbar hsb, MouseWheelEvent e) argument
[all...]
H A DXListPeer.java69 XHorizontalScrollbar hsb; field in class:XListPeer
211 hsb = new XHorizontalScrollbar(this);
212 hsb.setValues(0, 0, 0, 0, HORIZ_SCROLL_AMT, HORIZ_SCROLL_AMT);
369 if (scrollbar == hsb) {
466 hsb.setValues(hsb.getValue(), vis, hsb.getMinimum(), maximum);
486 hsb.setValues(hsb.getValue(), vis, hsb
[all...]

Completed in 47 milliseconds