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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: Reports.h,v 1.5 2001/02/09 02:03:45 xorgcvs Exp $
  3.  *
  4. Copyright 1990, 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. #ifndef _Xaw_Reports_h
  23. #define _Xaw_Reports_h
  24. #include <X11/Intrinsic.h>
  25. /*
  26.  * XawPannerReport - this structure is used by the reportCallback of the
  27.  * Panner, Porthole, Viewport, and Scrollbar widgets to report its position.
  28.  * All fields must be filled in, although the changed field may be used as
  29.  * a hint as to which fields have been altered since the last report.
  30.  */
  31. typedef struct {
  32.     unsigned int changed; /* mask, see below */
  33.     Position slider_x, slider_y; /* location of slider within outer */
  34.     Dimension slider_width, slider_height;  /* size of slider */
  35.     Dimension canvas_width, canvas_height;  /* size of canvas */
  36. } XawPannerReport;
  37. #define XawPRSliderX (1 << 0)
  38. #define XawPRSliderY (1 << 1)
  39. #define XawPRSliderWidth (1 << 2)
  40. #define XawPRSliderHeight (1 << 3)
  41. #define XawPRCanvasWidth (1 << 4)
  42. #define XawPRCanvasHeight (1 << 5)
  43. #define XawPRAll (63) /* union of above */
  44. #define XtNreportCallback "reportCallback"
  45. #define XtCReportCallback "reportCallback"
  46. #endif /* _Xaw_Reports_h */