1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635
|
/*******************************************************************************
* *
* managedList.c -- User interface for reorderable list of records *
* *
* Copyright (c) 1991 Universities Research Association, Inc. *
* All rights reserved. *
* *
* This material resulted from work developed under a Government Contract and *
* is subject to the following license: The Government retaFins a paid-up, *
* nonexclusive, irrevocable worldwide license to reproduce, prepare derivative *
* works, perform publicly and display publicly by or for the Government, *
* including the right to distribute to other Government contractors. Neither *
* the United States nor the United States Department of Energy, nor any of *
* their employees, makes any warranty, express or implied, or assumes any *
* legal liability or responsibility for the accuracy, completeness, or *
* usefulness of any information, apparatus, product, or process disclosed, or *
* represents that its use would not infringe privately owned rights. *
* *
* Fermilab Nirvana GUI Library *
* November, 1995 *
* *
* Written by Mark Edel *
* *
*******************************************************************************/
#include <stdio.h>
#include <Xm/Form.h>
#include <Xm/List.h>
#include <Xm/PushB.h>
#include <Xm/RowColumn.h>
#include "misc.h"
#include "managedList.h"
/* Common data between the managed list callback functions */
typedef struct {
Widget listW, deleteBtn, copyBtn, moveUpBtn, moveDownBtn;
void *(*getDialogDataCB)(void *, int, int *, void *);
void *getDialogDataArg;
void (*setDialogDataCB)(void *, void *);
void *setDialogDataArg;
void *(*copyItemCB)(void *);
void (*freeItemCB)(void *);
int (*deleteConfirmCB)(int, void *);
void *deleteConfirmArg;
int maxItems;
int *nItems;
void **itemList;
int lastSelection;
} managedListData;
static void destroyCB(Widget w, XtPointer clientData, XtPointer callData);
static void deleteCB(Widget w, XtPointer clientData, XtPointer callData);
static void copyCB(Widget w, XtPointer clientData, XtPointer callData);
static void moveUpCB(Widget w, XtPointer clientData, XtPointer callData);
static void moveDownCB(Widget w, XtPointer clientData, XtPointer callData);
static int incorporateDialogData(managedListData *ml, int listPos,
int explicit);
static void updateDialogFromList(managedListData *ml, int selection);
static void updateListWidgetItem(managedListData *ml, int listPos);
static void listSelectionCB(Widget w, XtPointer clientData, XtPointer callData);
static int selectedListPosition(managedListData *ml);
static void selectItem(Widget listW, int itemIndex, int updateDialog);
/*
** Create a user interface to help manage a list of arbitrary data records
** which users can edit, add, delete, and reorder.
**
** The caller creates the overall dialog for presenting the data to the user,
** but embeds the list and button widgets created here (and list management
** code they activate) to handle the organization of the overall list.
**
** This routine creates a form widget containing the buttons and list widget
** with which the user interacts with the list data. ManageListAndButtons
** can be used alternatively to take advantage of the management code with a
** different arrangement of the widgets (this routine puts buttons in a
** column on the left, list on the right) imposed here.
**
** "args" and "argc" are passed to the form widget creation routine, so that
** attachments can be specified for embedding the form in a dialog.
**
** See ManageListAndButtons for a description of the remaining arguments.
*/
Widget CreateManagedList(Widget parent, char *name, Arg *args,
int argC, void **itemList, int *nItems, int maxItems, int nColumns,
void *(*getDialogDataCB)(void *, int, int *, void *),
void *getDialogDataArg, void (*setDialogDataCB)(void *, void *),
void *setDialogDataArg, void (*freeItemCB)(void *))
{
int ac;
Arg al[20];
XmString s1;
Widget form, rowCol, listW;
Widget deleteBtn, copyBtn, moveUpBtn, moveDownBtn;
XmString *placeholderTable;
char *placeholderStr;
form = XmCreateForm(parent, name, args, argC);
XtManageChild(form);
rowCol = XtVaCreateManagedWidget("mlRowCol", xmRowColumnWidgetClass, form,
XmNpacking, XmPACK_COLUMN,
XmNleftAttachment, XmATTACH_FORM,
XmNtopAttachment, XmATTACH_FORM,
XmNbottomAttachment, XmATTACH_FORM, 0);
deleteBtn = XtVaCreateManagedWidget("delete", xmPushButtonWidgetClass,
rowCol, XmNlabelString, s1=XmStringCreateSimple("Delete"), 0);
XmStringFree(s1);
copyBtn = XtVaCreateManagedWidget("copy", xmPushButtonWidgetClass, rowCol,
XmNlabelString, s1=XmStringCreateSimple("Copy"), 0);
XmStringFree(s1);
moveUpBtn = XtVaCreateManagedWidget("moveUp", xmPushButtonWidgetClass,
rowCol, XmNlabelString, s1=XmStringCreateSimple("Move ^"), 0);
XmStringFree(s1);
moveDownBtn = XtVaCreateManagedWidget("moveDown", xmPushButtonWidgetClass,
rowCol, XmNlabelString, s1=XmStringCreateSimple("Move v"), 0);
XmStringFree(s1);
/* AFAIK the only way to make a list widget n-columns wide is to make up
a fake initial string of that width, and create it with that */
placeholderStr = XtMalloc(nColumns+1);
memset(placeholderStr, 'm', nColumns);
placeholderStr[nColumns] = '\0';
placeholderTable = StringTable(1, placeholderStr);
XtFree(placeholderStr);
ac = 0;
XtSetArg(al[ac], XmNscrollBarDisplayPolicy, XmAS_NEEDED); ac++;
XtSetArg(al[ac], XmNlistSizePolicy, XmCONSTANT); ac++;
XtSetArg(al[ac], XmNitems, placeholderTable); ac++;
XtSetArg(al[ac], XmNitemCount, 1); ac++;
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_FORM); ac++;
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++;
XtSetArg(al[ac], XmNleftWidget, rowCol); ac++;
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++;
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_FORM); ac++;
listW = XmCreateScrolledList(form, "list", al, ac);
XtManageChild(listW);
FreeStringTable(placeholderTable);
return ManageListAndButtons(listW, deleteBtn, copyBtn, moveUpBtn,
moveDownBtn, itemList, nItems, maxItems, getDialogDataCB,
getDialogDataArg, setDialogDataCB, setDialogDataArg, freeItemCB);
}
/*
** Manage a list widget and a set of buttons which represent a list of
** records. The caller provides facilities for editing the records
** individually, and this code handles the organization of the overall list,
** such that the user can modify, add, and delete records, and re-order the
** list.
**
** The format for the list of records managed by this code should be an
** array of size "maxItems" of pointers to record structures. The records
** themselves can be of any format, but the first field of the structure
** must be a pointer to a character string which will be displayed as the
** item name in the list. The list "itemList", and the number of items
** "nItems" are automatically updated by the list management routines as the
** user makes changes.
**
** The caller must provide routines for transferring data to and from the
** dialog fields dedicated to displaying and editing records in the list.
** The callback "setDialogDataCB" must take the contents of the item pointer
** passed to it, and display the data it contains, erasing any previously
** displayed data. The format of the setDialogData callback is:
**
** void setDialogDataCB(void *item, void *cbArg)
**
** item: a pointer to the record to be displayed
**
** cbArg: an arbitrary argument passed on to the callback routine
**
** The callback "setDialogDataCB" must allocate (with XtMalloc) and return a
** new record reflecting the current contents of the dialog fields. It may
** do error checking on the data that the user has entered, and can abort
** whatever operation triggered the request by setting "abort" to True.
** This routine is called in a variety of contexts, such as the user
** clicking on a list item, or requesting that a copy be made of the current
** list item. To aide in communicating errors to the user, the boolean value
** "explicitRequest" distinguishes between the case where the user has
** specifically requested that the fields be read, and the case where he
** may be surprised that errors are being reported, and require further
** explanation. The format of the getDialogData callback is:
**
** void *getDialogDataCB(void *oldItem, int explicitRequest, int *abort,
** void *cbArg)
**
** oldItem: a pointer to the existing record being modified in the
** dialog, or NULL, if the user is modifying the "New" item.
**
** explicitRequest: True if the user directly asked for the records
** to be changed (as with an OK or Apply button). If a less direct
** process resulted in the request, the user might need extra
** explanation and possibly a chance to proceed using the existing
** stored data (to use the data from oldItem, the routine should
** make a new copy).
**
** abort: Can be set to True if the dialog fields contain errors.
** Setting abort to True, stops whetever process made the request
** for updating the data in the list from the displayed data, and
** forces the user to remain focused on the currently displayed
** item until he either gives up or gets it right.
**
** cbArg: arbitrary data, passed on from where the callback was
** established in the list creation routines
**
** The return value should be an allocated
**
** The callback "freeItemCB" should free the item passed to it:
**
** void freeItemCB(void *item, void *cbArg)
**
** item: a pointer to the record to be freed
**
** The difference between ManageListAndButtons and CreateManagedList, is that
** in this routine, the caller creates the list and button widgets and passes
** them here so that they be arranged explicitly, rather than relying on the
** default style imposed by CreateManagedList. ManageListAndButtons simply
** attaches the appropriate callbacks to process mouse and keyboard input from
** the widgets.
*/
Widget ManageListAndButtons(Widget listW, Widget deleteBtn, Widget copyBtn,
Widget moveUpBtn, Widget moveDownBtn, void **itemList, int *nItems,
int maxItems, void *(*getDialogDataCB)(void *, int, int *, void *),
void *getDialogDataArg, void (*setDialogDataCB)(void *, void *),
void *setDialogDataArg, void (*freeItemCB)(void *))
{
managedListData *ml;
/* Create a managedList data structure to hold information about the
widgets, callbacks, and current state of the list */
ml = (managedListData *)XtMalloc(sizeof(managedListData));
ml->listW = listW;
ml->deleteBtn = deleteBtn;
ml->copyBtn = copyBtn;
ml->moveUpBtn = moveUpBtn;
ml->moveDownBtn = moveDownBtn;
ml->getDialogDataCB = NULL;
ml->getDialogDataArg = setDialogDataArg;
ml->setDialogDataCB = NULL;
ml->setDialogDataArg = setDialogDataArg;
ml->freeItemCB = freeItemCB;
ml->deleteConfirmCB = NULL;
ml->deleteConfirmArg = NULL;
ml->nItems = nItems;
ml->maxItems = maxItems;
ml->itemList = itemList;
ml->lastSelection = 1;
/* Make the managed list data structure accessible from the list widget
pointer, and make sure it gets freed when the list is destroyed */
XtVaSetValues(ml->listW, XmNuserData, ml, 0);
XtAddCallback(ml->listW, XmNdestroyCallback, destroyCB, ml);
/* Add callbacks for button and list actions */
XtAddCallback(ml->deleteBtn, XmNactivateCallback, deleteCB, ml);
XtAddCallback(ml->copyBtn, XmNactivateCallback, copyCB, ml);
XtAddCallback(ml->moveUpBtn, XmNactivateCallback, moveUpCB, ml);
XtAddCallback(ml->moveDownBtn, XmNactivateCallback, moveDownCB, ml);
XtAddCallback(ml->listW, XmNbrowseSelectionCallback, listSelectionCB, ml);
/* Initialize the list and buttons (don't set up the callbacks until
this is done, so they won't get called on creation) */
updateDialogFromList(ml, -1);
ml->getDialogDataCB = getDialogDataCB;
ml->setDialogDataCB = setDialogDataCB;
return ml->listW;
}
/*
** Update the currently selected list item from the dialog fields, using
** the getDialogDataCB callback. "explicitRequest" is a boolean value
** passed to on to the getDialogDataCB callback to help set the tone for
** how error messages are presented (see ManageListAndButtons for more
** information).
*/
int UpdateManagedList(Widget listW, int explicitRequest)
{
managedListData *ml;
/* Recover the pointer to the managed list structure from the widget's
userData pointer */
XtVaGetValues(listW, XmNuserData, &ml, 0);
/* Make the update */
return incorporateDialogData(ml, selectedListPosition(ml), explicitRequest);
}
/*
** Update the displayed list and data to agree with a data list which has
** been changed externally (not by the ManagedList list manager).
*/
void ChangeManagedListData(Widget listW)
{
managedListData *ml;
/* Recover the pointer to the managed list structure from the widget's
userData pointer */
XtVaGetValues(listW, XmNuserData, &ml, 0);
updateDialogFromList(ml, -1);
}
/*
** Change the selected item in the managed list given the index into the
** list being managed.
*/
void SelectManagedListItem(Widget listW, int itemIndex)
{
selectItem(listW, itemIndex, True);
}
/*
** Return the index of the item currently selected in the list
*/
int ManagedListSelectedIndex(Widget listW)
{
managedListData *ml;
XtVaGetValues(listW, XmNuserData, &ml, 0);
return selectedListPosition(ml)-2;
}
/*
** Add a delete-confirmation callback to a managed list. This will be called
** when the user presses the Delete button on the managed list. The callback
** can put up a dialog, and optionally abort the operation by returning False.
*/
void AddDeleteConfirmCB(Widget listW, int (*deleteConfirmCB)(int, void *),
void *deleteConfirmArg)
{
managedListData *ml;
XtVaGetValues(listW, XmNuserData, &ml, 0);
ml->deleteConfirmCB = deleteConfirmCB;
ml->deleteConfirmArg = deleteConfirmArg;
}
/*
** Called on destruction of the list widget
*/
static void destroyCB(Widget w, XtPointer clientData, XtPointer callData)
{
/* Free the managed list data structure */
XtFree((char *)clientData);
}
/*
** Button callbacks: deleteCB, copyCB, moveUpCB, moveDownCB
*/
static void deleteCB(Widget w, XtPointer clientData, XtPointer callData)
{
managedListData *ml = (managedListData *)clientData;
int i, index, listPos;
/* get the selected list position and the item to be deleted */
listPos = selectedListPosition(ml);
index = listPos-2;
/* if there's a delete confirmation callback, call it first, and allow
it to request that the operation be aborted */
if (ml->deleteConfirmCB != NULL)
if (!(*ml->deleteConfirmCB)(index, ml->deleteConfirmArg))
return;
/* free the item and remove it from the list */
(*ml->freeItemCB)(ml->itemList[index]);
for (i=index; i<*ml->nItems-1; i++)
ml->itemList[i] = ml->itemList[i+1];
(*ml->nItems)--;
/* update the list widget and move the selection to the previous item
in the list and display the fields appropriate for that entry */
updateDialogFromList(ml, index-1);
}
static void copyCB(Widget w, XtPointer clientData, XtPointer callData)
{
managedListData *ml = (managedListData *)clientData;
int i, listPos, abort = False;
void *item;
/* get the selected list position and the item to be copied */
listPos = selectedListPosition(ml);
if (listPos == 1)
return; /* can't copy "new" */
/* Bring the entry up to date (could result in operation being canceled) */
item = (*ml->getDialogDataCB)(ml->itemList[listPos-2], False, &abort,
ml->getDialogDataArg);
if (abort)
return;
if (item != NULL) {
(*ml->freeItemCB)(ml->itemList[listPos-2]);
ml->itemList[listPos-2] = item;
}
/* Make a copy by requesting the data again */
item = (*ml->getDialogDataCB)(ml->itemList[listPos-2], True, &abort,
ml->getDialogDataArg);
/* add the item to the item list */
for (i= *ml->nItems; i>=listPos; i--)
ml->itemList[i] = ml->itemList[i-1];
ml->itemList[listPos-1] = item;
(*ml->nItems)++;
/* redisplay the list widget and select the new item */
updateDialogFromList(ml, listPos-1);
}
static void moveUpCB(Widget w, XtPointer clientData, XtPointer callData)
{
managedListData *ml = (managedListData *)clientData;
int index, listPos;
void *temp;
/* get the item index currently selected in the menu item list */
listPos = selectedListPosition(ml);
index = listPos-2;
/* Bring the item up to date with the dialog fields (It would be better
if this could be avoided, because user errors will be flagged here,
but it's not worth re-writing everything for such a trivial point) */
if (!incorporateDialogData(ml, ml->lastSelection, False))
return;
/* shuffle the item up in the menu item list */
temp = ml->itemList[index];
ml->itemList[index] = ml->itemList[index-1];
ml->itemList[index-1] = temp;
/* update the list widget and keep the selection on moved item */
updateDialogFromList(ml, index-1);
}
static void moveDownCB(Widget w, XtPointer clientData, XtPointer callData)
{
managedListData *ml = (managedListData *)clientData;
int index, listPos;
void *temp;
/* get the item index currently selected in the menu item list */
listPos = selectedListPosition(ml);
index = listPos-2;
/* Bring the item up to date with the dialog fields (I wish this could
be avoided) */
if (!incorporateDialogData(ml, ml->lastSelection, False))
return;
/* shuffle the item down in the menu item list */
temp = ml->itemList[index];
ml->itemList[index] = ml->itemList[index+1];
ml->itemList[index+1] = temp;
/* update the list widget and keep the selection on moved item */
updateDialogFromList(ml, index+1);
}
/*
** Called when the user clicks on an item in the list widget
*/
static void listSelectionCB(Widget w, XtPointer clientData, XtPointer callData)
{
managedListData *ml = (managedListData *)clientData;
int index, listPos = ((XmListCallbackStruct *)callData)->item_position;
/* Save the current dialog fields before overwriting them. If there's an
error, force the user to go back to the old selection and fix it
before proceeding */
if (ml->getDialogDataCB != NULL && ml->lastSelection != 0) {
if (!incorporateDialogData(ml, ml->lastSelection, False)) {
XmListDeselectAllItems(ml->listW);
XmListSelectPos(ml->listW, ml->lastSelection, False);
return;
}
/* reselect item because incorporateDialogData can alter selection */
selectItem(ml->listW, listPos-2, False);
}
ml->lastSelection = listPos;
/* Dim or un-dim buttons at bottom of dialog based on whether the
selected item is a menu entry, or "New" */
if (listPos == 1) {
XtSetSensitive(ml->copyBtn, False);
XtSetSensitive(ml->deleteBtn, False);
XtSetSensitive(ml->moveUpBtn, False);
XtSetSensitive(ml->moveDownBtn, False);
} else {
XtSetSensitive(ml->copyBtn, True);
XtSetSensitive(ml->deleteBtn, True);
XtSetSensitive(ml->moveUpBtn, listPos != 2);
XtSetSensitive(ml->moveDownBtn, listPos != *ml->nItems+1);
}
/* get the index of the item currently selected in the item list */
index = listPos - 2;
/* tell the caller to show the new item */
if (ml->setDialogDataCB != NULL)
(*ml->setDialogDataCB)(listPos==1 ? NULL : ml->itemList[index],
ml->setDialogDataArg);
}
/*
** Incorporate the current contents of the dialog fields into the list
** being managed, and if necessary change the display in the list widget.
** The data is obtained by calling the getDialogDataCB callback, which
** is allowed to reject whatever request triggered the update. If the
** request is rejected, the return value from this function will be False.
*/
static int incorporateDialogData(managedListData *ml, int listPos, int explicit)
{
int abort = False;
void *item;
/* Get the current contents of the dialog fields. Callback will set
abort to True if canceled */
item = (*ml->getDialogDataCB)(listPos == 1 ? NULL : ml->itemList[
listPos-2], explicit, &abort, ml->getDialogDataArg);
if (abort)
return False;
if (item == NULL) /* don't modify if fields are empty */
return True;
/* If the item is "new" add a new entry to the list, otherwise,
modify the entry with the text fields from the dialog */
if (listPos == 1) {
ml->itemList[(*ml->nItems)++] = item;
updateDialogFromList(ml, *ml->nItems - 1);
} else {
(*ml->freeItemCB)(ml->itemList[listPos-2]);
ml->itemList[listPos-2] = item;
updateListWidgetItem(ml, listPos);
}
return True;
}
/*
** Update the list widget to reflect the current contents of the managed item
** list, set the item that should now be highlighted, and call getDisplayed
** on the newly selected item to fill in the dialog fields.
*/
static void updateDialogFromList(managedListData *ml, int selection)
{
int i;
XmString *stringTable;
/* On many systems under Motif 1.1 the list widget can't handle items
being changed while anything is selected! */
XmListDeselectAllItems(ml->listW);
/* Fill in the list widget with the names from the item list */
stringTable = (XmString *)XtMalloc(sizeof(XmString) * (*ml->nItems+1));
stringTable[0] = XmStringCreateSimple("New");
for (i=0; i < *ml->nItems; i++)
stringTable[i+1] = XmStringCreateSimple(*(char **)ml->itemList[i]);
XtVaSetValues(ml->listW, XmNitems, stringTable,
XmNitemCount, *ml->nItems+1, 0);
for (i=0; i < *ml->nItems+1; i++)
XmStringFree(stringTable[i]);
XtFree((char *)stringTable);
/* Select the requested item (indirectly filling in the dialog fields),
but don't trigger an update of the last selected item from the current
dialog fields */
ml->lastSelection = 0;
selectItem(ml->listW, selection, True);
}
/*
** Update one item of the managed list widget to reflect the current contents
** of the managed item list.
*/
static void updateListWidgetItem(managedListData *ml, int listPos)
{
int savedPos;
XmString newString[1];
/* save the current selected position (Motif sometimes does stupid things
to the selection when a change is made, like selecting the new item
if it matches the name of currently selected one) */
savedPos = selectedListPosition(ml);
XmListDeselectAllItems(ml->listW);
/* update the list */
newString[0] = XmStringCreateSimple(*(char **)ml->itemList[listPos-2]);
XmListReplaceItemsPos(ml->listW, newString, 1, listPos);
XmStringFree(newString[0]);
/* restore the selected position */
XmListSelectPos(ml->listW, savedPos, False);
}
/*
** Get the position of the selection in the menu item list widget
*/
static int selectedListPosition(managedListData *ml)
{
int listPos;
int *posList = NULL, posCount = 0;
if (!XmListGetSelectedPos(ml->listW, &posList, &posCount)) {
fprintf(stderr, "Internal error (nothing selected)");
return 1;
}
listPos = *posList;
XtFree((char *)posList);
if (listPos < 1 || listPos > *ml->nItems+1) {
fprintf(stderr, "Internal error (XmList bad value)");
return 1;
}
return listPos;
}
/*
** Select an item in the list given the list (array) index value.
** If updateDialog is True, trigger a complete dialog update, which
** could potentially reject the change.
*/
static void selectItem(Widget listW, int itemIndex, int updateDialog)
{
int topPos, nVisible, selection = itemIndex+2;
/* Select the item */
XmListDeselectAllItems(listW);
XmListSelectPos(listW, selection, updateDialog);
/* If the selected item is not visible, scroll the list */
XtVaGetValues(listW, XmNtopItemPosition, &topPos, XmNvisibleItemCount,
&nVisible, 0);
if (selection < topPos)
XmListSetPos(listW, selection);
else if (selection >= topPos + nVisible)
XmListSetPos(listW, selection - nVisible + 1);
}
|