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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* MODIFIED ATHENA SCROLLBAR (USING ARROWHEADS AT ENDS OF TRAVEL) */
  2. /* Modifications Copyright 1992 by Mitch Trachtenberg             */
  3. /* Rights, permissions, and disclaimer of warranty are as in the  */
  4. /* DEC and MIT notice below.  See usage warning in .c file.       */
  5. /*
  6.  * $XConsortium: ScrollbarP.h,v 1.2 90/04/11 17:33:53 jim Exp $
  7.  */
  8. /***********************************************************
  9. Copyright (c) 1987, 1988  X Consortium
  10. Permission is hereby granted, free of charge, to any person obtaining a copy
  11. of this software and associated documentation files (the "Software"), to deal
  12. in the Software without restriction, including without limitation the rights
  13. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  14. copies of the Software, and to permit persons to whom the Software is
  15. furnished to do so, subject to the following conditions:
  16. The above copyright notice and this permission notice shall be included in
  17. all copies or substantial portions of the Software.
  18. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  21. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  22. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  23. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  24. Except as contained in this notice, the name of the X Consortium shall not be
  25. used in advertising or otherwise to promote the sale, use or other dealings
  26. in this Software without prior written authorization from the X Consortium.
  27. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  28.                         All Rights Reserved
  29. Permission to use, copy, modify, and distribute this software and its
  30. documentation for any purpose and without fee is hereby granted,
  31. provided that the above copyright notice appear in all copies and that
  32. both that copyright notice and this permission notice appear in
  33. supporting documentation, and that the name of Digital not be
  34. used in advertising or publicity pertaining to distribution of the
  35. software without specific, written prior permission.
  36. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  37. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  38. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  39. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  40. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  41. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  42. SOFTWARE.
  43. ******************************************************************/
  44. #ifndef _ScrollbarP_h
  45. #define _ScrollbarP_h
  46. #include <X11/Xaw3d/Scrollbar.h>
  47. #include <X11/Xaw3d/ThreeDP.h>
  48. typedef struct {
  49.      /* public */
  50.     Pixel   foreground; /* thumb foreground color */
  51.     XtOrientation orientation; /* horizontal or vertical */
  52.     XtCallbackList scrollProc; /* proportional scroll */
  53.     XtCallbackList thumbProc; /* jump (to position) scroll */
  54.     XtCallbackList jumpProc; /* same as thumbProc but pass data by ref */
  55.     Pixmap   thumb; /* thumb color */
  56.     Pixel   background; /* background color */
  57. #ifndef ARROW_SCROLLBAR
  58.     Cursor        upCursor; /* scroll up cursor */
  59.     Cursor        downCursor; /* scroll down cursor */
  60.     Cursor        leftCursor; /* scroll left cursor */
  61.     Cursor        rightCursor; /* scroll right cursor */
  62.     Cursor        verCursor; /* scroll vertical cursor */
  63.     Cursor        horCursor; /* scroll horizontal cursor */
  64. #endif
  65.     float   top; /* What percent is above the win's top */
  66.     float   shown; /* What percent is shown in the win */
  67.     Dimension   length; /* either height or width */
  68.     Dimension   thickness; /* either width or height */
  69.     Dimension   min_thumb; /* minium size for the thumb. */
  70.     float         picked;       /* How much of the thumb is picked *
  71.  * when scrolling starts */
  72.      /* private */
  73. #ifdef ARROW_SCROLLBAR
  74.     XtIntervalId  timer_id;     /* autorepeat timer; remove on destruction */
  75.     char   scroll_mode; /* 0:none 1:up/back 2:track 3:down/forward */
  76. #else
  77.     Cursor        inactiveCursor; /* the normal cursor for scrollbar */
  78.     char          direction; /* a scroll has started; which direction */
  79. #endif
  80.     GC   gc; /* a (shared) gc for foreground */
  81.     GC   bgc; /* a (shared) gc for background */
  82.     Position   topLoc; /* Pixel that corresponds to top */
  83.     Dimension   shownLength; /* Num pixels corresponding to shown */
  84.     Boolean       pick_top;     /* pick thumb at top or anywhere */
  85.     Boolean       push_thumb;   /* push thumb in or not */
  86. } ScrollbarPart;
  87. typedef struct _ScrollbarRec {
  88.     CorePart core;
  89.     SimplePart simple;
  90.     ThreeDPart threeD;
  91.     ScrollbarPart scrollbar;
  92. } ScrollbarRec;
  93. typedef struct {int empty;} ScrollbarClassPart;
  94. typedef struct _ScrollbarClassRec {
  95.     CoreClassPart core_class;
  96.     SimpleClassPart simple_class;
  97.     ThreeDClassPart threeD_class;
  98.     ScrollbarClassPart scrollbar_class;
  99. } ScrollbarClassRec;
  100. extern ScrollbarClassRec scrollbarClassRec;
  101. #endif /* _ScrollbarP_h */