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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: Repeater.h,v 1.4 94/04/17 20:12:38 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 _XawRepeater_h
  26. #define _XawRepeater_h
  27. #include <X11/Xaw3d/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. /* new instance and class names */
  49. #define XtNdecay "decay"
  50. #define XtCDecay "Decay"
  51. #define XtNinitialDelay "initialDelay"
  52. #define XtCDelay "Delay"
  53. #define XtNminimumDelay "minimumDelay"
  54. #define XtCMinimumDelay "MinimumDelay"
  55. #define XtNrepeatDelay "repeatDelay"
  56. #define XtNflash "flash"
  57. #define XtNstartCallback "startCallback"
  58. #define XtCStartCallback "StartCallback"
  59. #define XtNstopCallback "stopCallback"
  60. #define XtCStopCallback "StopCallback"
  61. /* external declarations */
  62. extern WidgetClass repeaterWidgetClass;
  63. typedef struct _RepeaterClassRec *RepeaterWidgetClass;
  64. typedef struct _RepeaterRec      *RepeaterWidget;
  65. #endif /* _XawRepeater_h */