749N/A/*
749N/A* $XConsortium: GripP.h,v 1.14 89/05/11 01:05:27 kit Exp $
749N/A*/
749N/A
749N/A
749N/A/***********************************************************
749N/ACopyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
749N/Aand the Massachusetts Institute of Technology, Cambridge, Massachusetts.
749N/A
749N/A All Rights Reserved
749N/A
749N/APermission to use, copy, modify, and distribute this software and its
749N/Adocumentation for any purpose and without fee is hereby granted,
749N/Aprovided that the above copyright notice appear in all copies and that
749N/Aboth that copyright notice and this permission notice appear in
749N/Asupporting documentation, and that the names of Digital or MIT not be
749N/Aused in advertising or publicity pertaining to distribution of the
749N/Asoftware without specific, written prior permission.
749N/A
749N/ADIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
749N/AALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
749N/ADIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
749N/AANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
749N/AWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
749N/AARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
749N/ASOFTWARE.
749N/A
749N/A******************************************************************/
749N/A
749N/A/*
749N/A * GripP.h - Private definitions for Grip widget (Used by VPane Widget)
749N/A *
749N/A */
749N/A
749N/A#ifndef _XawGripP_h
749N/A#define _XawGripP_h
749N/A
749N/A#include <./Xaw3_1Grip.h>
749N/A#include <./Xaw3_1SimpleP.h>
749N/A
749N/A/*****************************************************************************
749N/A *
749N/A * Grip Widget Private Data
749N/A *
749N/A *****************************************************************************/
749N/A
749N/A#define DEFAULT_GRIP_SIZE 8
749N/A
749N/A/* New fields for the Grip widget class record */
749N/Atypedef struct {int empty;} GripClassPart;
749N/A
749N/A/* Full Class record declaration */
749N/Atypedef struct _GripClassRec {
749N/A CoreClassPart core_class;
749N/A SimpleClassPart simple_class;
749N/A GripClassPart grip_class;
749N/A} GripClassRec;
749N/A
749N/Aextern GripClassRec gripClassRec;
749N/A
749N/A/* New fields for the Grip widget record */
749N/Atypedef struct {
749N/A XtCallbackList grip_action;
749N/A} GripPart;
749N/A
749N/A/*****************************************************************************
749N/A *
749N/A * Full instance record declaration
749N/A *
749N/A ****************************************************************************/
749N/A
749N/Atypedef struct _GripRec {
749N/A CorePart core;
749N/A SimplePart simple;
749N/A GripPart grip;
749N/A} GripRec;
749N/A
749N/A#endif /* _XawGripP_h */
749N/A