Lines Matching refs:active
127 * Information about what's selected or active, if any.
138 int active; /* Index of "active" element (the one that
395 listPtr->active = 0;
472 ListboxRedrawRange(listPtr, listPtr->active, listPtr->active);
477 listPtr->active = index;
478 ListboxRedrawRange(listPtr, listPtr->active, listPtr->active);
1151 * If this is the active element, underline it.
1154 if ((i == listPtr->active) && (listPtr->flags & GOT_FOCUS)) {
1372 if (index <= listPtr->active) {
1373 listPtr->active += argc;
1374 if ((listPtr->active >= listPtr->numElements)
1376 listPtr->active = listPtr->numElements-1;
1495 if (listPtr->active > last) {
1496 listPtr->active -= count;
1497 } else if (listPtr->active >= first) {
1498 listPtr->active = first;
1499 if ((listPtr->active >= listPtr->numElements)
1501 listPtr->active = listPtr->numElements-1;
1670 if ((c == 'a') && (strncmp(string, "active", length) == 0)
1672 *indexPtr = listPtr->active;
1713 "\": must be active, anchor, end, @x,y, or a number",