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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XConsortium: Template.h,v 1.6 94/04/17 20:12:59 converse Exp $ */
  2. /*
  3. Copyright (c) 1987  X Consortium
  4. Permission is hereby granted, free of charge, to any person obtaining a copy
  5. of this software and associated documentation files (the "Software"), to deal
  6. in the Software without restriction, including without limitation the rights
  7. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. copies of the Software, and to permit persons to whom the Software is
  9. furnished to do so, subject to the following conditions:
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  15. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  16. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  17. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of the X Consortium shall not be
  19. used in advertising or otherwise to promote the sale, use or other dealings
  20. in this Software without prior written authorization from the X Consortium.
  21. */
  22. #ifndef _Template_h
  23. #define _Template_h
  24. /****************************************************************
  25.  *
  26.  * Template widget
  27.  *
  28.  ****************************************************************/
  29. /* Resources:
  30.  Name      Class RepType Default Value
  31.  ----      ----- ------- -------------
  32.  background      Background Pixel XtDefaultBackground
  33.  border      BorderColor Pixel XtDefaultForeground
  34.  borderWidth      BorderWidth Dimension 1
  35.  destroyCallback     Callback Pointer NULL
  36.  height      Height Dimension 0
  37.  mappedWhenManaged   MappedWhenManaged Boolean True
  38.  sensitive      Sensitive Boolean True
  39.  width      Width Dimension 0
  40.  x      Position Position 0
  41.  y      Position Position 0
  42. */
  43. /* define any special resource names here that are not in <X11/StringDefs.h> */
  44. #define XtNtemplateResource "templateResource"
  45. #define XtCTemplateResource "TemplateResource"
  46. /* declare specific TemplateWidget class and instance datatypes */
  47. typedef struct _TemplateClassRec* TemplateWidgetClass;
  48. typedef struct _TemplateRec* TemplateWidget;
  49. /* declare the class constant */
  50. extern WidgetClass templateWidgetClass;
  51. #endif /* _Template_h */