Lines Matching refs:pd

249             XtPerDisplay pd = _XtGetPerDisplay(dpy);
252 for (i = 0; i < pd->ext_select_count; i++) {
253 if (type >= pd->ext_select_list[i].min &&
254 type <= pd->ext_select_list[i].max) {
255 CallExtensionSelector(widget, pd->ext_select_list + i,
259 if (type < pd->ext_select_list[i].min)
394 XtPerDisplay pd = _XtGetPerDisplay(dpy);
397 for (i = 0; i < pd->ext_select_count; i++) {
398 if (type >= pd->ext_select_list[i].min &&
399 type <= pd->ext_select_list[i].max) {
400 CallExtensionSelector(widget, pd->ext_select_list + i,
404 if (type < pd->ext_select_list[i].min)
724 _XtAllocWWTable(XtPerDisplay pd)
735 pd->WWtable = tab;
739 _XtFreeWWTable(register XtPerDisplay pd)
743 for (pair = pd->WWtable->pairs; pair; pair = next) {
747 XtFree((char *) pd->WWtable->entries);
748 XtFree((char *) pd->WWtable);
971 XtPerDisplay pd = _XtGetPerDisplay(dpy);
983 AddExposureToRectangularRegion(event, pd->region);
985 XtAddExposureToRegion(event, pd->region);
992 SendExposureEvent(event, widget, pd);
1036 AddExposureToRectangularRegion(&event_return, pd->region);
1038 XtAddExposureToRegion(&event_return, pd->region);
1044 AddExposureToRectangularRegion(&event_return, pd->region);
1046 XtAddExposureToRegion(&event_return, pd->region);
1052 SendExposureEvent(event, widget, pd);
1128 * pd - the per display information for this widget.
1133 SendExposureEvent(XEvent *event, Widget widget, XtPerDisplay pd)
1140 XClipBox(pd->region, &rect);
1153 (*expose) (widget, event, pd->region);
1154 (void) XIntersectRegion(nullRegion, pd->region, pd->region);
1431 XtPerDisplay pd;
1467 pd = _XtGetPerDisplay(event->xany.display);
1470 pd->last_timestamp = time;
1471 pd->last_event = *event;
1473 if (pd->dispatcher_list) {
1474 dispatch = pd->dispatcher_list[event->type];
1712 register XtPerDisplay pd;
1718 pd = _XtGetPerDisplay(dpy);
1720 list = pd->dispatcher_list;
1723 list = pd->dispatcher_list = NewDispatcherList();
1743 XtPerDisplay pd;
1756 pd = _XtGetPerDisplay(dpy);
1758 for (i = 0; i < pd->ext_select_count; i++) {
1759 ExtSelectRec *e = &pd->ext_select_list[i];
1777 pd->ext_select_count++;
1778 pd->ext_select_list = XtReallocArray(pd->ext_select_list,
1779 (Cardinal) pd->ext_select_count,
1781 for (i = pd->ext_select_count - 1; i > 0; i--) {
1782 if (pd->ext_select_list[i - 1].min > min_event_type) {
1783 pd->ext_select_list[i] = pd->ext_select_list[i - 1];
1788 pd->ext_select_list[i].min = min_event_type;
1789 pd->ext_select_list[i].max = max_event_type;
1790 pd->ext_select_list[i].proc = proc;
1791 pd->ext_select_list[i].client_data = client_data;
1800 XtPerDisplay pd;
1807 pd = _XtGetPerDisplay(XtDisplay(widget));
1809 for (i = 0; i < pd->ext_select_count; i++) {
1810 CallExtensionSelector(widget, pd->ext_select_list + i, FALSE);