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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: Panner.h,v 1.5 2001/02/09 02:03:45 xorgcvs Exp $
  3.  *
  4. Copyright 1989, 1998  The Open Group
  5. Permission to use, copy, modify, distribute, and sell this software and its
  6. documentation for any purpose is hereby granted without fee, provided that
  7. the above copyright notice appear in all copies and that both that
  8. copyright notice and this permission notice appear in supporting
  9. documentation.
  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. OPEN GROUP 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 Open Group 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 Open Group.
  21.  *
  22.  * Author:  Jim Fulton, MIT X Consortium
  23.  */
  24. /* $XFree86: xc/lib/Xaw/Panner.h,v 1.5 2001/01/17 19:42:28 dawes Exp $ */
  25. #ifndef _XawPanner_h
  26. #define _XawPanner_h
  27. #include <X11/Intrinsic.h>
  28. #include <X11/Xaw/Reports.h>
  29. /*****************************************************************************
  30.  * 
  31.  * Panner Widget (subclass of Simple)
  32.  * 
  33.  * This widget is used to represent navigation in a 2d coordinate system
  34.  * 
  35.  * Resources:
  36.  * 
  37.  *  Name Class Type Default
  38.  *  ---- ----- ---- -------
  39.  * 
  40.  *  allowOff AllowOff Boolean FALSE
  41.  *  background Background Pixel XtDefaultBackground
  42.  *  backgroundStipple BackgroundStipple String NULL
  43.  *  canvasWidth CanvasWidth Dimension 0
  44.  *  canvasHeight CanvasHeight Dimension 0
  45.  *  defaultScale DefaultScale Dimension 8 percent
  46.  *  foreground Foreground Pixel XtDefaultBackground
  47.  *  internalSpace InternalSpace Dimension 4
  48.  *  lineWidth LineWidth Dimension 0
  49.  *  reportCallback ReportCallback XtCallbackList NULL
  50.  *  resize Resize Boolean TRUE
  51.  *  rubberBand RubberBand Boolean FALSE
  52.  *  shadowColor ShadowColor Pixel XtDefaultForeground
  53.  *  shadowThickness ShadowThickness Dimension 2
  54.  *  sliderX SliderX Position 0
  55.  *  sliderY SliderY Position 0
  56.  *  sliderWidth SliderWidth Dimension 0
  57.  *  sliderHeight SliderHeight Dimension 0
  58.  * 
  59.  *****************************************************************************/
  60. #ifndef _XtStringDefs_h_
  61. #define XtNresize "resize"
  62. #define XtCResize "Resize"
  63. #endif
  64. #define XtNallowOff "allowOff"
  65. #define XtCAllowOff "AllowOff"
  66. #define XtNbackgroundStipple "backgroundStipple"
  67. #define XtCBackgroundStipple "BackgroundStipple"
  68. #define XtNdefaultScale "defaultScale"
  69. #define XtCDefaultScale "DefaultScale"
  70. #define XtNcanvasWidth "canvasWidth"
  71. #define XtCCanvasWidth "CanvasWidth"
  72. #define XtNcanvasHeight "canvasHeight"
  73. #define XtCCanvasHeight "CanvasHeight"
  74. #define XtNinternalSpace "internalSpace"
  75. #define XtCInternalSpace "InternalSpace"
  76. #define XtNlineWidth "lineWidth"
  77. #define XtCLineWidth "LineWidth"
  78. #define XtNrubberBand "rubberBand"
  79. #define XtCRubberBand "RubberBand"
  80. #define XtNshadowThickness "shadowThickness"
  81. #define XtCShadowThickness "ShadowThickness"
  82. #define XtNshadowColor "shadowColor"
  83. #define XtCShadowColor "ShadowColor"
  84. #define XtNsliderX "sliderX"
  85. #define XtCSliderX "SliderX"
  86. #define XtNsliderY "sliderY"
  87. #define XtCSliderY "SliderY"
  88. #define XtNsliderWidth "sliderWidth"
  89. #define XtCSliderWidth "SliderWidth"
  90. #define XtNsliderHeight "sliderHeight"
  91. #define XtCSliderHeight "SliderHeight"
  92. extern WidgetClass pannerWidgetClass;
  93. typedef struct _PannerClassRec *PannerWidgetClass;
  94. typedef struct _PannerRec      *PannerWidget;
  95. #endif /* _XawPanner_h */