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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: SmeLine.h,v 1.4 94/04/17 20:12:53 kit Exp $
  3.  *
  4. Copyright (c) 1989  X Consortium
  5. Permission is hereby granted, free of charge, to any person obtaining a copy
  6. of this software and associated documentation files (the "Software"), to deal
  7. in the Software without restriction, including without limitation the rights
  8. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. copies of the Software, and to permit persons to whom the Software is
  10. furnished to do so, subject to the following conditions:
  11. The above copyright notice and this permission notice shall be included in
  12. all copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  16. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  17. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  18. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  19. Except as contained in this notice, the name of the X Consortium shall not be
  20. used in advertising or otherwise to promote the sale, use or other dealings
  21. in this Software without prior written authorization from the X Consortium.
  22.  *
  23.  */
  24. /*
  25.  * SmeLine.h - Public Header file for SmeLine object.
  26.  *
  27.  * This is the public header file for the Athena SmeLine object.
  28.  * It is intended to be used with the simple menu widget.  
  29.  *
  30.  * Date:    April 3, 1989
  31.  *
  32.  * By:      Chris D. Peterson
  33.  *          MIT X Consortium 
  34.  *          kit@expo.lcs.mit.edu
  35.  */
  36. #ifndef _SmeLine_h
  37. #define _SmeLine_h
  38. #include <X11/Xaw3d/Sme.h>
  39. #include <X11/Xmu/Converters.h>
  40. /****************************************************************
  41.  *
  42.  * SmeLine Object
  43.  *
  44.  ****************************************************************/
  45. /* Menu Entry Resources:
  46.  Name      Class RepType Default Value
  47.  ----      ----- ------- -------------
  48.  callback            Callback Pointer NULL
  49.  destroyCallback     Callback Pointer NULL
  50.  height      Height Dimension 0
  51.  sensitive      Sensitive Boolean True
  52.  width      Width Dimension 0
  53.  x      Position Position 0n
  54.  y      Position Position 0
  55. */
  56. #define XtCLineWidth "LineWidth"
  57. #define XtCStipple "Stipple"
  58. #define XtNlineWidth "lineWidth"
  59. #define XtNstipple "stipple"
  60. typedef struct _SmeLineClassRec* SmeLineObjectClass;
  61. typedef struct _SmeLineRec*         SmeLineObject;
  62. extern WidgetClass smeLineObjectClass;
  63. #endif /* _SmeLine_h */