NAME
XmuNewCvtStringToWidget − convert string to widget without caching.
SYNOPSIS
#include <X11/Xmu/Converters> static XtConvertArgRec parentCvtArg[] = {
{XtWidgetBaseOffset, (XtPointer)XtOffsetOf(WidgetRec,core.parent),
sizeof(Widget)} }; XtSetTypeConverter(XtRString, XtRWidget, XmuNewCvtStringToWidget,
parentCvtArg, XtNumber(parentCvtArg), XtCacheNone, NULL);
AVAILABILITY
Release 5 and later.
DESCRIPTION
This converter is identical in functionality to XmuCvtStringToWidget, except that it is a new-style converter, allowing the specification of a cache type at the time of registration. Most widgets will not cache the results of this converter, as the application may dynamically create and destroy widgets, which would cause cached values to become illegal.
SEE ALSO
XtSetTypeConverter(1), XmuCvtFunctionToCallback(6), XmuCvtStringToMisc(6).