1/* 2 * 3Copyright 1989, 1998 The Open Group 4 5Permission to use, copy, modify, distribute, and sell this software and its 6documentation for any purpose is hereby granted without fee, provided that 7the above copyright notice appear in all copies and that both that 8copyright notice and this permission notice appear in supporting 9documentation. 10 11The above copyright notice and this permission notice shall be included in 12all copies or substantial portions of the Software. 13 14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 18AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 19CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 20 21Except as contained in this notice, the name of The Open Group shall not be 22used in advertising or otherwise to promote the sale, use or other dealings 23in this Software without prior written authorization from The Open Group. 24 * 25 * Author: Jim Fulton, MIT X Consortium 26 */ 27 28#ifndef _XawRepeater_h 29#define _XawRepeater_h 30 31#include <X11/Xaw/Command.h> 32 33/***************************************************************************** 34 * 35 * Repeater Widget (subclass of Command) 36 * 37 * This widget is a push button that repeatedly fires when held down 38 * 39 * Parameters: 40 * 41 * Name Class Type Default 42 * ---- ----- ---- ------- 43 * 44 * decay Decay int 5 milliseconds 45 * flash Boolean Boolean FALSE 46 * initialDelay Delay int 200 milliseconds 47 * minimumDelay MinimumDelay int 10 milliseconds 48 * repeatDelay Delay int 50 milliseconds 49 * startCallback StartCallback XtCallbackList NULL 50 * stopCallback StopCallback XtCallbackList NULL 51 * 52 *****************************************************************************/ 53 54#define XtNdecay "decay" 55#define XtCDecay "Decay" 56#define XtNinitialDelay "initialDelay" 57#define XtCDelay "Delay" 58#define XtNminimumDelay "minimumDelay" 59#define XtCMinimumDelay "MinimumDelay" 60#define XtNrepeatDelay "repeatDelay" 61#define XtNflash "flash" 62#define XtNstartCallback "startCallback" 63#define XtCStartCallback "StartCallback" 64#define XtNstopCallback "stopCallback" 65#define XtCStopCallback "StopCallback" 66 67 68extern WidgetClass repeaterWidgetClass; 69 70typedef struct _RepeaterClassRec *RepeaterWidgetClass; 71typedef struct _RepeaterRec *RepeaterWidget; 72 73#endif /* _XawRepeater_h */ 74