WidgetNode.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: WidgetNode.h,v 1.5 2001/02/09 02:03:53 xorgcvs Exp $ */
  2. /*
  3. Copyright 1990, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. */
  21. /* $XFree86: xc/lib/Xmu/WidgetNode.h,v 1.5 2001/01/17 19:42:57 dawes Exp $ */
  22. /*
  23.  * Author:  Jim Fulton, MIT X Consortium
  24.  */
  25. #ifndef _XmuWidgetNode_h
  26. #define _XmuWidgetNode_h
  27. #include <X11/Intrinsic.h>
  28. #include <X11/Xfuncproto.h>
  29. /*
  30.  * This is usually initialized by setting the first two fields and letting
  31.  * rest be implicitly nulled (by genlist.sh, for example)
  32.  */
  33. typedef struct _XmuWidgetNode {
  34.     char *label; /* mixed case name */
  35.     WidgetClass *widget_class_ptr; /* addr of widget class */
  36.     struct _XmuWidgetNode *superclass; /* superclass of widget_class */
  37.     struct _XmuWidgetNode *children, *siblings; /* subclass links */
  38.     char *lowered_label; /* lowercase version of label */
  39.     char *lowered_classname; /* lowercase version of class_name */
  40.     Bool have_resources; /* resources have been fetched */
  41.     XtResourceList resources; /* extracted resource database */
  42.     struct _XmuWidgetNode **resourcewn; /* where resources come from */
  43.     Cardinal nresources; /* number of resources */
  44.     XtResourceList constraints; /* extracted constraint resources */
  45.     struct _XmuWidgetNode **constraintwn;  /* where constraints come from */
  46.     Cardinal nconstraints; /* number of constraint resources */
  47.     XtPointer data; /* extra data */
  48. } XmuWidgetNode;
  49. #define XmuWnClass(wn) ((wn)->widget_class_ptr[0])
  50. #define XmuWnClassname(wn) (XmuWnClass(wn)->core_class.class_name)
  51. #define XmuWnSuperclass(wn) ((XmuWnClass(wn))->core_class.superclass)
  52. /* external interfaces */
  53. _XFUNCPROTOBEGIN
  54. void XmuWnInitializeNodes
  55. (
  56.  XmuWidgetNode *nodearray,
  57.  int nnodes
  58.  );
  59. void XmuWnFetchResources
  60. (
  61.  XmuWidgetNode *node,
  62.  Widget toplevel,
  63.  XmuWidgetNode *topnode
  64.  );
  65. int XmuWnCountOwnedResources
  66. (
  67.  XmuWidgetNode *node,
  68.  XmuWidgetNode *ownernode,
  69.  Bool constraints
  70.  );
  71. XmuWidgetNode *XmuWnNameToNode
  72. (
  73.  XmuWidgetNode *nodelist,
  74.  int nnodes,
  75.  _Xconst char *name
  76.  );
  77. _XFUNCPROTOEND
  78. #endif /* _XmuWidgetNode_h */