Lines Matching refs:top
101 Offset(scrollbar.top), XtRFloat, (XtPointer)&floatZero},
223 /* Fill the area specified by top and bottom with the given pattern. */
236 static void FillArea(w, top, bottom, thumb)
238 Position top, bottom;
241 Dimension length = bottom-top;
250 w->scrollbar.gc, top, 1, length,
254 1, top, w->core.width-2, length);
260 XClearArea(XtDisplay(w), XtWindow(w), top, 1,
264 top, w->core.width-2, length, FALSE);
270 /* Paint the thumb in the area specified by w->top and
281 newtop = w->scrollbar.length * w->scrollbar.top;
439 if (dw->scrollbar.top < 0.0 || dw->scrollbar.top > 1.0)
440 dw->scrollbar.top = w->scrollbar.top;
458 if (w->scrollbar.top != dw->scrollbar.top ||
715 w->scrollbar.top = FractionLoc(w, x, y);
737 XtCallCallbacks( gw, XtNthumbProc, *(XtPointer*)&w->scrollbar.top);
738 XtCallCallbacks( gw, XtNjumpProc, (XtPointer)&w->scrollbar.top);
754 double top, double shown)
756 float top, float shown)
759 void XawScrollbarSetThumb( gw, top, shown )
761 float top, shown;
768 w->scrollbar.top = (top > 1.0) ? 1.0 :
769 (top >= 0.0) ? top :
770 w->scrollbar.top;