|
NAMEXmtDialogBindResourceList() - use Xmt automatic dialog data transfer features with widgets that are not dialogs.SYNOPSIS#include <Xmt/Dialog.h>
void XmtDialogBindResourceList(Widget w, XtResourceList resources, Cardinal num_resources) ARGUMENTSINPUTS
DESCRIPTIONIn order for the Xmt automatic dialog data transfer facilities to work, the widgets involved must be described with the xmtChildren syntax, and must have a resource list associated with them when they are created. Normally this resource list is supplied in a call to XmtBuildDialog() or XmtBuildQuery Dialog(). On occasion, however, you may want to use the Xmt automatic data-transfer mechanism with widgets that are not actually in dialog boxes, or for some other reason are not created with these special functions.You can, in fact, use the dialog data transfer mechanisms with any widgets described with the xmtChildren resource, but in order to do so, you must associate an XtResourceList with them by calling XmtDialogBindResourceList(). This function associates the resource list resources with the widget (generally a shell widget) w. You must call this function before you create the children of w with XmtCreateChildren() or some other function. SEE ALSOChapter 29, Custom Dialogs and Automatic Dialog Management, XmtBuildDialog(), XmtBuildQueryDialog(), XmtDialogCancelCallback(), XmtDialogDo(), XmtDialogDoSync(), XmtDialogGetDataAddress(), XmtDialogGetDialogValues(), XmtDialogOkayCallback(), XmtDialogSetDialogValues(), XmtDialogSetReturnValue().
Visit the GSP FreeBSD Man Page Interface. |