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*/ 26 27/* 28 * Author: Chris D. Peterson 29 * MIT X Consortium 30 * kit@expo.lcs.mit.edu 31 * 32 * Date: January 12, 1989 33 * 34 */ 35 36#ifndef _XawToggleP_h 37#define _XawToggleP_h 38 39#include <X11/Xaw/Toggle.h> 40#include <X11/Xaw/CommandP.h> 41 42/* 43 * Toggle Widget Private Data 44 */ 45#define streq(a, b) (strcmp((a), (b)) == 0) 46 47typedef struct _RadioGroup { 48 struct _RadioGroup *prev, *next; /* Pointers to other elements in group */ 49 Widget widget; /* Widget corrosponding to this element */ 50} RadioGroup; 51 52/* New fields for the Toggle widget class */ 53typedef struct _ToggleClass { 54 XtActionProc Set; 55 XtActionProc Unset; 56 XtPointer extension; 57} ToggleClassPart; 58 59/* class record declaration */ 60typedef struct _ToggleClassRec { 61 CoreClassPart core_class; 62 SimpleClassPart simple_class; 63 LabelClassPart label_class; 64 CommandClassPart command_class; 65 ToggleClassPart toggle_class; 66} ToggleClassRec; 67 68extern ToggleClassRec toggleClassRec; 69 70/* New fields for the Toggle widget */ 71typedef struct { 72 /* resources */ 73 Widget widget; 74 XtPointer radio_data; 75 76 /* private */ 77 RadioGroup *radio_group; 78#ifndef OLDXAW 79 XtPointer pad[4]; /* for future use and keep binary compatibility */ 80#endif 81} TogglePart; 82 83/* Full widget declaration */ 84typedef struct _ToggleRec { 85 CorePart core; 86 SimplePart simple; 87 LabelPart label; 88 CommandPart command; 89 TogglePart toggle; 90} ToggleRec; 91 92#endif /* _XawToggleP_h */ 93