Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xtgetresourcelist(3) [hpux man page]

XtGetResourceList()													       XtGetResourceList()

Name
  XtGetResourceList - get the resource list of a widget class.

Synopsis
  void XtGetResourceList(object_class, resources_return, num_resources_return);
	 WidgetClass object_class;
	 XtResourceList *resources_return;
	 Cardinal *num_resources_return;

Inputs
  object_class
	 Specifies the object class to be queried; may be objectClass or any subclass.

Outputs
  resources_return
	 Returns the resource list.

  num_resources_return
	 Returns the number of entries in the resource list.

Description
  XtGetResourceList() returns the corePart resource list of the specified widget or object class.  If it is called before the widget class is
  initialized it returns the resource list as specified in the widget class record.  If it is called after the widget class has been initial-
  ized,  it returns a merged resource list that includes the resources for all superclasses.  The list returned by XtGetResourceList() should
  be freed using XtFree() when it is no longer needed.

Usage
  Most applications will never need to query the a widget class for the resources it supports.	This function is intended to  support  inter-
  face builders and applications like editres which allow the use to view the available resources and set them interactively.

  To get the constraint resources of a widget class, use XtGetConstraintResourceList().

Structures
  XtResource is defined as follows:

     typedef struct _XtResource {
	String	  resource_name;  /* Resource name */
	String	  resource_class; /* Resource class */
	String	  resource_type;  /* Representation type desired */
	Cardinal  resource_size;  /* Size in bytes of representation */
	Cardinal  resource_offset;/* Offset from base to put resource value */
	String	  default_type;   /* Representation type of specified default */
	XtPointer default_addr;   /* Address of resource default value */
     } XtResource, *XtResourceList;

See Also
  XtGetConstraintResourceList(1).

Xt - Resource Management												       XtGetResourceList()

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(3), XtOffset(3) X Toolkit Intrinsics - C Language Interface Xlib - C Language X Interface X Version 11 libXt 1.1.3 XtGetResourceList(3)
Man Page