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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: Panner.h,v 1.22 94/04/17 20:12:32 rws 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.  * Author:  Jim Fulton, MIT X Consortium
  24.  */
  25. #ifndef _XawPanner_h
  26. #define _XawPanner_h
  27. #include <X11/Xaw3d/Reports.h>
  28. /*****************************************************************************
  29.  * 
  30.  * Panner Widget (subclass of Simple)
  31.  * 
  32.  * This widget is used to represent navigation in a 2d coordinate system.
  33.  * 
  34.  * Parameters:
  35.  * 
  36.  *  Name Class Type Default
  37.  *  ---- ----- ---- -------
  38.  * 
  39.  *  allowOff AllowOff Boolean FALSE
  40.  *  background Background Pixel XtDefaultBackground
  41.  *  backgroundStipple BackgroundStipple String NULL
  42.  *  canvasWidth CanvasWidth Dimension 0
  43.  *  canvasHeight CanvasHeight Dimension 0
  44.  *  defaultScale DefaultScale Dimension 8 percent
  45.  *  foreground Foreground Pixel XtDefaultBackground
  46.  *  internalSpace InternalSpace Dimension 4
  47.  *  lineWidth LineWidth Dimension 0
  48.  *  reportCallback ReportCallback XtCallbackList NULL
  49.  *  resize Resize Boolean TRUE
  50.  *  rubberBand RubberBand Boolean FALSE
  51.  *  shadowColor ShadowColor Pixel XtDefaultForeground
  52.  *  shadowThickness ShadowThickness Dimension 2
  53.  *  sliderX SliderX Position 0
  54.  *  sliderY SliderY Position 0
  55.  *  sliderWidth SliderWidth Dimension 0
  56.  *  sliderHeight SliderHeight Dimension 0
  57.  * 
  58.  *****************************************************************************/
  59. /* new instance and class names */
  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. /* external declarations */
  93. extern WidgetClass pannerWidgetClass;
  94. typedef struct _PannerClassRec *PannerWidgetClass;
  95. typedef struct _PannerRec      *PannerWidget;
  96. #endif /* _XawPanner_h */