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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: PannerP.h,v 1.4 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/PannerP.h,v 1.7 2001/01/17 19:42:29 dawes Exp $ */
  25. #ifndef _XawPannerP_h
  26. #define _XawPannerP_h
  27. #include <X11/Xaw/Panner.h>
  28. #include <X11/Xaw/SimpleP.h>
  29. /* new fields in widget class */
  30. typedef struct {
  31.     XtPointer extension;
  32. } PannerClassPart;
  33. /* Panner widget class */
  34. typedef struct _PannerClassRec {
  35.     CoreClassPart core_class;
  36.     SimpleClassPart simple_class;
  37.     PannerClassPart panner_class;
  38. } PannerClassRec;
  39. /* new fields in widget */
  40. typedef struct {
  41.     /* resources */
  42.     XtCallbackList report_callbacks; /* callback/Callback */
  43.     Boolean allow_off; /* allowOff/AllowOff */
  44.     Boolean resize_to_pref; /* resizeToPreferred/Boolean */
  45.     Pixel foreground; /* foreground/Foreground */
  46.     Pixel shadow_color; /* shadowColor/ShadowColor */
  47.     Dimension shadow_thickness; /* shadowThickness/ShadowThickness */
  48.     Dimension default_scale; /* defaultScale/DefaultScale */
  49.     Dimension line_width; /* lineWidth/LineWidth */
  50.     Dimension canvas_width; /* canvasWidth/CanvasWidth */
  51.     Dimension canvas_height; /* canvasHeight/CanvasHeight */
  52.     Position slider_x; /* sliderX/SliderX */
  53.     Position slider_y; /* sliderY/SliderY */
  54.     Dimension slider_width; /* sliderWidth/SliderWidth */
  55.     Dimension slider_height; /* sliderHeight/SliderHeight */
  56.     Dimension internal_border; /* internalBorderWidth/BorderWidth */
  57.     String stipple_name; /* backgroundStipple/BackgroundStipple
  58.  */
  59.     /* private */
  60.     GC slider_gc; /* background of slider */
  61.     GC shadow_gc; /* edge of slider and shadow */
  62.     GC xor_gc; /* for doing XOR tmp graphics */
  63.     double haspect, vaspect; /* aspect ratio of core to canvas */
  64.     Boolean rubber_band; /* true = rubber band, false = move */
  65.     struct {
  66. Boolean doing; /* tmp graphics in progress */
  67. Boolean showing; /* true if tmp graphics displayed */
  68. Position startx, starty; /* initial position of slider */
  69. Position dx, dy; /* offset loc for tmp graphics */
  70. Position x, y; /* location for tmp graphics */
  71.     } tmp;
  72.     Position knob_x, knob_y; /* real upper left of knob in canvas */
  73.     Dimension knob_width, knob_height; /* real size of knob in canvas */
  74.     Boolean shadow_valid; /* true if rects are valid */
  75.     XRectangle shadow_rects[2]; /* location of shadows */
  76.     Position last_x, last_y; /* previous location of knob */
  77. #ifndef OLDXAW
  78.     XtPointer pad[4]; /* for future use and keep binary compatability */
  79. #endif
  80. } PannerPart;
  81. typedef struct _PannerRec {
  82.     CorePart core;
  83.     SimplePart simple;
  84.     PannerPart panner;
  85. } PannerRec;
  86. #define PANNER_HSCALE(pw,val) ((pw)->panner.haspect * ((double)(val)))
  87. #define PANNER_VSCALE(pw,val) ((pw)->panner.vaspect * ((double)(val)))
  88. #define PANNER_DSCALE(pw,val) (Dimension)  
  89. ((((unsigned long)(val)) * (unsigned long)pw->panner.default_scale) / 100L)
  90. #define PANNER_DEFAULT_SCALE 8 /* percent */
  91. #define PANNER_OUTOFRANGE -30000
  92. extern PannerClassRec pannerClassRec;
  93. #endif /* _XawPannerP_h */