Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
RectObj(3)		    Library Functions Manual		      RectObj(3)

NAME
     RectObj -- The RectObj widget class

SYNOPSIS
     #include <Xm/Xm.h>

DESCRIPTION
     RectObj  is never instantiated.  Its sole purpose is as a supporting super-
     class for other widget classes.

   Classes
     RectObj inherits behavior and a resource from Object.

     The class pointer is rectObjClass.

     The class name is RectObj.

   New Resources
     The following table defines a set of widget resources used by the	program-
     mer  to  specify  data. The programmer can also set the resource values for
     the inherited classes to set attributes for this widget. To reference a re-
     source by name or by class in a .Xdefaults file, remove the XmN or XmC pre-
     fix and use the remaining letters. To specify one of the defined values for
     a resource in a .Xdefaults file, remove the Xm prefix and use the remaining
     letters (in either lowercase or uppercase, but include any underscores  be-
     tween  words).   The  codes  in the access column indicate if the given re-
     source can be set at creation time (C), set by using XtSetValues  (S),  re-
     trieved by using XtGetValues (G), or is not applicable (N/A).

     +----------------------------------------------------------------------+
     |			    |  RectObj Resource Set	 |	   |	    |
     | Name		    | Class	     | Type	 | Default | Access |
     +----------------------+----------------+-----------+---------+--------+
     | XmNancestorSensitive | XmCSensitive   | Boolean	 | dynamic | G	    |
     +----------------------+----------------+-----------+---------+--------+
     | XmNborderWidth	    | XmCBorderWidth | Dimension | 1	   | CSG    |
     +----------------------+----------------+-----------+---------+--------+
     | XmNheight	    | XmCHeight      | Dimension | dynamic | CSG    |
     +----------------------+----------------+-----------+---------+--------+
     | XmNsensitive	    | XmCSensitive   | Boolean	 | True    | CSG    |
     +----------------------+----------------+-----------+---------+--------+
     | XmNwidth 	    | XmCWidth	     | Dimension | dynamic | CSG    |
     +----------------------+----------------+-----------+---------+--------+
     | XmNx		    | XmCPosition    | Position  | 0	   | CSG    |
     +----------------------+----------------+-----------+---------+--------+
     | XmNy		    | XmCPosition    | Position  | 0	   | CSG    |
     +----------------------+----------------+-----------+---------+--------+
     +----------------------+----------------+-----------+---------+--------+

     XmNancestorSensitive
	       Specifies whether the immediate parent of the gadget receives in-
	       put  events.  Use the function XtSetSensitive if you are changing
	       the argument to preserve data integrity (see XmNsensitive).   The
	       default	is  the bitwise AND of the parent's XmNsensitive and Xm-
	       NancestorSensitive resources.

     XmNborderWidth
	       Specifies the width of the border  placed  around  the  RectObj's
	       rectangular display area.

     XmNheight Specifies  the  inside  height (excluding the border) of the Rec-
	       tObj's rectangular display area.

     XmNsensitive
	       Determines whether a RectObj receives input events.  If a RectObj
	       is sensitive, the parent dispatches to the gadget  all  keyboard,
	       mouse  button, motion, window enter/leave, and focus events.  In-
	       sensitive gadgets do not receive these events.  Use the	function
	       XtSetSensitive  to change the sensitivity argument.  Using XtSet-
	       Sensitive ensures that if a parent widget has XmNsensitive set to
	       False, the ancestor-sensitive flag of all its children is  appro-
	       priately set.

     XmNwidth  Specifies  the  inside  width  (excluding the border) of the Rec-
	       tObj's rectangular display area.

     XmNx      Specifies the x-coordinate of the upper left  outside  corner  of
	       the RectObj's rectangular display area.	The value is relative to
	       the upper left inside corner of the parent window.

     XmNy      Specifies  the  y-coordinate  of the upper left outside corner of
	       the RectObj's rectangular display area.	The value is relative to
	       the upper left inside corner of the parent window.

   Inherited Resources
     RectObj inherits behavior and a resource from Object. For a description  of
     this resource, refer to the Object reference page.

     +----------------------------------------------------------------------+
     |			  |    Object Resource Set	 |	   |	    |
     | Name		  | Class	| Type		 | Default | Access |
     +--------------------+-------------+----------------+---------+--------+
     | XmNdestroyCallback | XmCCallback | XtCallbackList | NULL    | C	    |
     +--------------------+-------------+----------------+---------+--------+
     +--------------------+-------------+----------------+---------+--------+

   Translations
     There are no translations for RectObj.

RELATED
     Object(3).

								      RectObj(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=RectObj&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help