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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. * $XConsortium: LabelP.h,v 1.29 94/04/17 20:12:14 kaleb Exp $
  3. */
  4. /***********************************************************
  5. Copyright (c) 1987, 1988, 1994  X Consortium
  6. Permission is hereby granted, free of charge, to any person obtaining a copy
  7. of this software and associated documentation files (the "Software"), to deal
  8. in the Software without restriction, including without limitation the rights
  9. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. copies of the Software, and to permit persons to whom the Software is
  11. furnished to do so, subject to the following conditions:
  12. The above copyright notice and this permission notice shall be included in
  13. all copies or substantial portions of the Software.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  17. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  18. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  19. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  20. Except as contained in this notice, the name of the X Consortium shall not be
  21. used in advertising or otherwise to promote the sale, use or other dealings
  22. in this Software without prior written authorization from the X Consortium.
  23. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  24.                         All Rights Reserved
  25. Permission to use, copy, modify, and distribute this software and its 
  26. documentation for any purpose and without fee is hereby granted, 
  27. provided that the above copyright notice appear in all copies and that
  28. both that copyright notice and this permission notice appear in 
  29. supporting documentation, and that the name of Digital not be
  30. used in advertising or publicity pertaining to distribution of the
  31. software without specific, written prior permission.  
  32. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  33. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  34. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  35. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  36. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  37. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  38. SOFTWARE.
  39. ******************************************************************/
  40. /* 
  41.  * LabelP.h - Private definitions for Label widget
  42.  * 
  43.  */
  44. #ifndef _XawLabelP_h
  45. #define _XawLabelP_h
  46. /***********************************************************************
  47.  *
  48.  * Label Widget Private Data
  49.  *
  50.  ***********************************************************************/
  51. #include <X11/Xaw3d/Label.h>
  52. #include <X11/Xaw3d/ThreeDP.h>
  53. /* New fields for the Label widget class record */
  54. typedef struct {int foo;} LabelClassPart;
  55. /* Full class record declaration */
  56. typedef struct _LabelClassRec {
  57.     CoreClassPart core_class;
  58.     SimpleClassPart simple_class;
  59.     ThreeDClassPart     threeD_class;
  60.     LabelClassPart label_class;
  61. } LabelClassRec;
  62. extern LabelClassRec labelClassRec;
  63. /* New fields for the Label widget record */
  64. typedef struct {
  65.     /* resources */
  66.     Pixel foreground;
  67.     XFontStruct *font;
  68.     XFontSet fontset;
  69.     char *label;
  70.     XtJustify justify;
  71.     Dimension internal_width;
  72.     Dimension internal_height;
  73.     Pixmap pixmap;
  74.     Boolean resize;
  75.     unsigned char encoding;
  76.     Pixmap left_bitmap;
  77.     /* private state */
  78.     GC normal_GC;
  79.     GC          gray_GC;
  80.     Pixmap stipple;
  81.     Position label_x;
  82.     Position label_y;
  83.     Dimension label_width;
  84.     Dimension label_height;
  85.     Dimension label_len;
  86.     int lbm_y; /* where in label */
  87.     unsigned int lbm_width, lbm_height;  /* size of pixmap */
  88. } LabelPart;
  89. /****************************************************************
  90.  *
  91.  * Full instance record declaration
  92.  *
  93.  ****************************************************************/
  94. typedef struct _LabelRec {
  95.     CorePart core;
  96.     SimplePart simple;
  97.     ThreeDPart  threeD;
  98.     LabelPart label;
  99. } LabelRec;
  100. #define LEFT_OFFSET(lw) ((lw)->label.left_bitmap 
  101.  ? (lw)->label.lbm_width + (lw)->label.internal_width 
  102.  : 0)
  103. #endif /* _XawLabelP_h */