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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: Repeater.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/Repeater.h,v 1.5 2001/01/17 19:42:29 dawes Exp $ */
  25. #ifndef _XawRepeater_h
  26. #define _XawRepeater_h
  27. #include <X11/Xaw/Command.h>
  28. /*****************************************************************************
  29.  * 
  30.  * Repeater Widget (subclass of Command)
  31.  * 
  32.  * This widget is a push button that repeatedly fires when held down
  33.  * 
  34.  * Parameters:
  35.  * 
  36.  *  Name Class Type Default
  37.  *  ---- ----- ---- -------
  38.  * 
  39.  *  decay Decay int 5 milliseconds
  40.  *  flash Boolean Boolean FALSE
  41.  *  initialDelay Delay int 200 milliseconds
  42.  *  minimumDelay MinimumDelay int 10 milliseconds
  43.  *  repeatDelay Delay int 50 milliseconds
  44.  *  startCallback StartCallback XtCallbackList NULL
  45.  *  stopCallback StopCallback XtCallbackList NULL
  46.  * 
  47.  *****************************************************************************/
  48. #define XtNdecay "decay"
  49. #define XtCDecay "Decay"
  50. #define XtNinitialDelay "initialDelay"
  51. #define XtCDelay "Delay"
  52. #define XtNminimumDelay "minimumDelay"
  53. #define XtCMinimumDelay "MinimumDelay"
  54. #define XtNrepeatDelay "repeatDelay"
  55. #define XtNflash "flash"
  56. #define XtNstartCallback "startCallback"
  57. #define XtCStartCallback "StartCallback"
  58. #define XtNstopCallback "stopCallback"
  59. #define XtCStopCallback "StopCallback"
  60. extern WidgetClass repeaterWidgetClass;
  61. typedef struct _RepeaterClassRec *RepeaterWidgetClass;
  62. typedef struct _RepeaterRec      *RepeaterWidget;
  63. #endif /* _XawRepeater_h */