Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xtgetactionlist(3) [x11r4 man page]

XtGetActionList(3)						   XT FUNCTIONS 						XtGetActionList(3)

NAME
XtGetActionList - obtain class action list SYNTAX
void XtGetActionList(WidgetClass widget_class, XtActionList* actions_return, Cardinal* num_actions_return); ARGUMENTS
widget_class Specifies the widget class whose actions are to be returned. actions_return Returns the action list. num_actions_return Returns the number of action procedures declared by the class. DESCRIPTION
XtGetActionList returns the action table defined by the specified widget class. This table does not include actions defined by the super- classes. If widget_class is not initialized, or is not coreWidgetClass or a subclass thereof, or if the class does not define any actions, *actions_return will be NULL and *num_actions_return will be zero. If *actions_return is non-NULL the client is responsible for freeing the table using XtFree when it is no longer needed. SEE ALSO
X Toolkit Intrinsics - C Language Interface Xlib - C Language X Interface X Version 11 libXt 1.0.5 XtGetActionList(3)

Check Out this Related Man Page

XtGetResourceList(3)						   XT FUNCTIONS 					      XtGetResourceList(3)

NAME
XtGetResourceList, XtGetConstraintResourceList - obtain resource list SYNTAX
void XtGetResourceList(WidgetClass class, XtResourceList *resources_return, Cardinal *num_resources_return); void XtGetConstraintResourceList(WidgetClass class, XtResourceList *resources_return, Cardinal *num_resources_return); ARGUMENTS
num_resources_return Specifies a pointer to where to store the number of entries in the resource list. resources_return Specifies a pointer to where to store the returned resource list. The caller must free this storage using XtFree when done with it. widget_class Specifies the widget class. DESCRIPTION
If XtGetResourceList is called before the widget class is initialized (that is, before the first widget of that class has been created), XtGetResourceList returns the resource list as specified in the widget class record. If it is called after the widget class has been ini- tialized, XtGetResourceList returns a merged resource list that contains the resources for all superclasses. The list returned by XtGet- ResourceList should be freed using XtFree when it is no longer needed. If XtGetConstraintResourceList is called before the widget class is initialized (that is, before the first widget of that class has been created), XtGetConstraintResourceList returns the resource list as specified in the widget class Constraint part record. If it is called after the widget class has been initialized, XtGetConstraintResourceList returns a merged resource list that contains the Constraint resources for all superclasses. If the specified class is not a subclass of constraintWidgetClass, *resources_return is set to NULL and *num_resources_return is set to zero. The list returned by XtGetConstraintResourceList should be freed using XtFree when it is no longer needed. SEE ALSO
XtGetSubresources(3Xt), XtOffset(3Xt) X Toolkit Intrinsics - C Language Interface Xlib - C Language X Interface X Version 11 libXt 1.0.5 XtGetResourceList(3)
Man Page

We Also Found This Discussion For You

1. UNIX for Advanced & Expert Users

Shopt -s histappend

What is the point of this? Whenever I close my shell it appends to the history file without adding this. I have never seen it overwrite my history file. # When the shell exits, append to the history file instead of overwriting it shopt -s histappend (3 Replies)
Discussion started by: cokedude
3 Replies