HomeSort by: relevance | last modified time | path
    Searched defs:scroll (Results 1 - 13 of 13) sorted by relevancy

  /xsrc/external/mit/libXaw/dist/examples/
scrollbar.c 39 Widget toplevel,box,label,scroll,command; local
58 scroll = XtVaCreateManagedWidget("scroller",
65 XtAddCallback(scroll, XtNscrollProc, scroll_cb, label);
66 XtAddCallback(scroll,XtNjumpProc,jump_cb,label);
  /xsrc/external/mit/xman/dist/
ScrollByLP.h 63 use_right; /* put scroll bar on right side of window. */
96 ScrollByLinePart scroll; member in struct:_ScrollByLineRec
  /xsrc/external/mit/xmessage/dist/
makeform.c 252 Widget label, scroll; local
256 * A Text widget is used for the automatic scroll bars.
276 /* add in the height of any horizontal scroll bar */
277 scroll = XtVaCreateWidget("hScrollbar", scrollbarWidgetClass, text,
280 XtVaGetValues(scroll, XtNheight, &scroll_size,
282 XtDestroyWidget(scroll);
300 /* add in the width of any vertical scroll bar */
301 scroll = XtVaCreateWidget("vScrollbar", scrollbarWidgetClass, text,
303 XtVaGetValues(scroll, XtNwidth, &scroll_size,
305 XtDestroyWidget(scroll);
    [all...]
  /xsrc/external/mit/xedit/dist/
options.c 263 XawTextScrollMode scroll; local
310 XtSetArg(args[0], XtNscrollVertical, &scroll);
312 XtSetArg(args[0], XtNscrollVertical, scroll == XawtextScrollNever ?
316 XtSetArg(args[0], XtNscrollHorizontal, &scroll);
318 XtSetArg(args[0], XtNscrollHorizontal, scroll == XawtextScrollNever ?
  /xsrc/external/mit/MesaLib/dist/src/freedreno/perfcntrs/
fdperf.c 442 static int scroll = 0; local
450 if ((current_cntr - scroll) > (max - 1)) {
451 scroll = current_cntr - (max - 1);
452 } else if ((current_cntr - 1) < scroll) {
453 scroll = current_cntr - 1;
465 if ((scroll <= row) && ((row - scroll) < max))
466 redraw_group_header(win, row - scroll, group->group->name);
471 if ((scroll <= row) && ((row - scroll) < max)
535 int cnt = 0, current = 0, scroll; local
    [all...]
  /xsrc/external/mit/xedit/dist/lisp/
xedit.c 1137 XawTextScrollMode scroll; local
1144 scroll = state == NIL ? XawtextScrollNever : XawtextScrollAlways;
1145 XtSetArg(arg[0], XtNscrollHorizontal, scroll);
1149 XtSetArg(arg[0], XtNscrollHorizontal, &scroll);
1151 state = scroll == XawtextScrollAlways ? T : NIL;
1554 XawTextScrollMode scroll; local
1561 scroll = state == NIL ? XawtextScrollNever : XawtextScrollAlways;
1562 XtSetArg(arg[0], XtNscrollVertical, scroll);
1566 XtSetArg(arg[0], XtNscrollVertical, &scroll);
1568 state = scroll == XawtextScrollAlways ? T : NIL
    [all...]
  /xsrc/external/mit/xorg-server/dist/dix/
getevents.c 285 dce->valuators[i].scroll = slave->valuator->axes[i].scroll;
627 * Lots of possible separate button scroll events (horiz + vert)
628 * Lots of possible separate raw button scroll events (horiz + vert)
746 /* reset last.scroll to avoid a button storm */
747 valuator_mask_set_double(dev->last.scroll, valuator, 0);
1496 * Generate events for each scroll axis that changed between before/after
1504 * @param[in,out] last Last scroll state posted in absolute coords (modified
1526 if (dev->valuator->axes[axis].scroll.type == SCROLL_TYPE_NONE)
1533 incr = ax->scroll.increment
1619 ValuatorMask scroll; local
    [all...]
  /xsrc/external/mit/xorg-server/dist/include/
eventstr.h 200 ScrollInfo scroll; /**< Smooth scrolling info */ member in struct:_DeviceChangedEvent::__anon10225
inputstr.h 82 * Scroll types for ::SetScrollValuator and the scroll type in the
277 ScrollInfo scroll; member in struct:_AxisInfo
611 ValuatorMask *scroll; member in struct:_DeviceIntRec::__anon10243
  /xsrc/external/mit/xf86-input-synaptics/dist/src/
synapticsstr.h 215 int last_x; /* last x-scroll position */
216 int last_y; /* last y-scroll position */
217 double delta_x; /* accumulated horiz scroll delta */
218 double delta_y; /* accumulated vert scroll delta */
219 double last_a; /* last angle-scroll position */
220 CARD32 last_millis; /* time last scroll event posted */
225 int packets_this_scroll; /* Events received for this scroll */
226 } scroll; member in struct:_SynapticsPrivateRec
240 Bool vert_scroll_edge_on; /* Keeps track of currently active scroll modes */
241 Bool horiz_scroll_edge_on; /* Keeps track of currently active scroll modes *
    [all...]
  /xsrc/external/mit/libXaw/dist/src/
Text.c 1554 * vlines - number of lines to scroll vertically
1555 * hpixels - number of pixels to scroll horizontally
1559 * Allows vertical and horizontal scroll at the same time.
1569 Bool scroll; local
1578 if ((scroll = ctx->core.background_pixmap == XtUnspecifiedPixmap) == True) {
1582 scroll = False;
1631 scroll = False;
1659 scroll = False;
1674 if (!hpixels && scroll) {
1680 * Rebuild the line table, doing the vertical scroll
1856 Bool scroll = True; local
3418 Bool visible, scroll; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/imgui/
imgui.cpp 115 - Use mouse wheel to scroll.
2511 Scroll = ImVec2(0.0f, 0.0f);
2787 // (b) So that we can scroll up/down past clipped items. This adds a small O(N) cost to regular navigation requests unfortunately, but it is still limited to one window.
2948 wrap_pos_x += window->Pos.x - window->Scroll.x; // wrap_pos_x is provided is window local space
3261 // If a child window has the ImGuiWindowFlags_NoScrollWithMouse flag, we give a chance to scroll its parent (unless either ImGuiWindowFlags_NoInputs or ImGuiWindowFlags_NoScrollbar are also set).
3287 SetWindowScrollY(scroll_window, scroll_window->Scroll.y - g.IO.MouseWheel * scroll_amount);
3294 SetWindowScrollX(scroll_window, scroll_window->Scroll.x - g.IO.MouseWheelH * scroll_amount);
4411 // When browsing a window that has no activable items (scroll only) we keep a highlight on the child
4566 sz.x = (float)(int)((window->SizeContentsExplicit.x != 0.0f) ? window->SizeContentsExplicit.x : (window->DC.CursorMaxPos.x - window->Pos.x + window->Scroll.x));
4567 sz.y = (float)(int)((window->SizeContentsExplicit.y != 0.0f) ? window->SizeContentsExplicit.y : (window->DC.CursorMaxPos.y - window->Pos.y + window->Scroll.y))
4620 ImVec2 scroll = window->Scroll; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/imgui/
imgui.cpp 115 - Use mouse wheel to scroll.
2511 Scroll = ImVec2(0.0f, 0.0f);
2787 // (b) So that we can scroll up/down past clipped items. This adds a small O(N) cost to regular navigation requests unfortunately, but it is still limited to one window.
2948 wrap_pos_x += window->Pos.x - window->Scroll.x; // wrap_pos_x is provided is window local space
3261 // If a child window has the ImGuiWindowFlags_NoScrollWithMouse flag, we give a chance to scroll its parent (unless either ImGuiWindowFlags_NoInputs or ImGuiWindowFlags_NoScrollbar are also set).
3287 SetWindowScrollY(scroll_window, scroll_window->Scroll.y - g.IO.MouseWheel * scroll_amount);
3294 SetWindowScrollX(scroll_window, scroll_window->Scroll.x - g.IO.MouseWheelH * scroll_amount);
4411 // When browsing a window that has no activable items (scroll only) we keep a highlight on the child
4566 sz.x = (float)(int)((window->SizeContentsExplicit.x != 0.0f) ? window->SizeContentsExplicit.x : (window->DC.CursorMaxPos.x - window->Pos.x + window->Scroll.x));
4567 sz.y = (float)(int)((window->SizeContentsExplicit.y != 0.0f) ? window->SizeContentsExplicit.y : (window->DC.CursorMaxPos.y - window->Pos.y + window->Scroll.y))
4620 ImVec2 scroll = window->Scroll; local
    [all...]

Completed in 27 milliseconds