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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

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