SmeLine.h revision 749
214N/A/*
214N/A * $XConsortium: SmeLine.h,v 1.4 94/04/17 20:12:53 kit Exp $
935N/A *
214N/ACopyright (c) 1989 X Consortium
214N/A
919N/APermission is hereby granted, free of charge, to any person obtaining a copy
919N/Aof this software and associated documentation files (the "Software"), to deal
919N/Ain the Software without restriction, including without limitation the rights
919N/Ato use, copy, modify, merge, publish, distribute, sublicense, and/or sell
919N/Acopies of the Software, and to permit persons to whom the Software is
919N/Afurnished to do so, subject to the following conditions:
919N/A
919N/AThe above copyright notice and this permission notice shall be included in
919N/Aall copies or substantial portions of the Software.
919N/A
919N/ATHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
919N/AIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
919N/AFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
919N/AX CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
919N/AAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
919N/ACONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
919N/A
214N/AExcept as contained in this notice, the name of the X Consortium shall not be
214N/Aused in advertising or otherwise to promote the sale, use or other dealings
493N/Ain this Software without prior written authorization from the X Consortium.
493N/A *
1003N/A */
1003N/A
1003N/A/*
1003N/A * SmeLine.h - Public Header file for SmeLine object.
214N/A *
493N/A * This is the public header file for the Athena SmeLine object.
214N/A * It is intended to be used with the simple menu widget.
493N/A *
493N/A * Date: April 3, 1989
935N/A *
935N/A * By: Chris D. Peterson
935N/A * MIT X Consortium
810N/A * kit@expo.lcs.mit.edu
810N/A */
810N/A
493N/A#ifndef _SmeLine_h
493N/A#define _SmeLine_h
493N/A
910N/A#include <X11/Xaw/Sme.h>
493N/A#include <X11/Xmu/Converters.h>
214N/A
214N/A/****************************************************************
493N/A *
214N/A * SmeLine Object
214N/A *
935N/A ****************************************************************/
935N/A
935N/A/* Menu Entry Resources:
935N/A
935N/A Name Class RepType Default Value
935N/A ---- ----- ------- -------------
935N/A callback Callback Pointer NULL
935N/A destroyCallback Callback Pointer NULL
935N/A height Height Dimension 0
935N/A sensitive Sensitive Boolean True
935N/A width Width Dimension 0
935N/A x Position Position 0n
935N/A y Position Position 0
935N/A
935N/A*/
935N/A
935N/A#define XtCLineWidth "LineWidth"
935N/A#define XtCStipple "Stipple"
935N/A
935N/A#define XtNlineWidth "lineWidth"
935N/A#define XtNstipple "stipple"
935N/A
935N/Atypedef struct _SmeLineClassRec* SmeLineObjectClass;
935N/Atypedef struct _SmeLineRec* SmeLineObject;
935N/A
935N/Aextern WidgetClass smeLineObjectClass;
935N/A
935N/A#endif /* _SmeLine_h */
935N/A