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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: RepeaterP.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/RepeaterP.h,v 1.7 2001/01/17 19:42:29 dawes Exp $ */
  25. #ifndef _XawRepeaterP_h
  26. #define _XawRepeaterP_h
  27. #include <X11/Xaw/CommandP.h>
  28. #include <X11/Xaw/Repeater.h>
  29. /* new fields in widget class */
  30. typedef struct {
  31.     XtPointer extension;
  32. } RepeaterClassPart;
  33. /* repeater widget class */
  34. typedef struct _RepeaterClassRec {
  35.     CoreClassPart core_class;
  36.     SimpleClassPart simple_class;
  37.     LabelClassPart label_class;
  38.     CommandClassPart command_class;
  39.     RepeaterClassPart repeater_class;
  40. } RepeaterClassRec;
  41. typedef struct {
  42.     /* resources */
  43.     int initial_delay; /* initialDelay/Delay */
  44.     int repeat_delay; /* repeatDelay/Delay */
  45.     int minimum_delay; /* minimumDelay/MinimumDelay */
  46.     int decay; /* decay to minimum delay */
  47.     Boolean flash; /* flash/Boolean */
  48.     XtCallbackList start_callbacks; /* startCallback/StartCallback */
  49.     XtCallbackList stop_callbacks; /* stopCallback/StopCallback */
  50.     /* private */
  51.     int next_delay; /* next amount for timer */
  52.     XtIntervalId timer; /* timer that will fire */
  53. #ifndef OLDXAW
  54.     XtPointer pad[4]; /* for future use and keep binary compatability */
  55. #endif
  56. } RepeaterPart;
  57. typedef struct _RepeaterRec {
  58.     CorePart core;
  59.     SimplePart simple;
  60.     LabelPart label;
  61.     CommandPart command;
  62.     RepeaterPart repeater;
  63. } RepeaterRec;
  64. /* milliseconds */
  65. #define REP_DEF_DECAY 5
  66. #define REP_DEF_INITIAL_DELAY 200
  67. #define REP_DEF_MINIMUM_DELAY 10
  68. #define REP_DEF_REPEAT_DELAY 50
  69. extern RepeaterClassRec repeaterClassRec;
  70. #endif /* _XawRepeaterP_h */