|
|
1.1 root 1: /*
2: * $Header: KnobPrivate.h,v 1.2 87/09/11 21:21:44 haynes Rel $
3: */
4:
5: /*
6: * Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
7: *
8: * All Rights Reserved
9: *
10: * Permission to use, copy, modify, and distribute this software and its
11: * documentation for any purpose and without fee is hereby granted,
12: * provided that the above copyright notice appear in all copies and that
13: * both that copyright notice and this permission notice appear in
14: * supporting documentation, and that the name of Digital Equipment
15: * Corporation not be used in advertising or publicity pertaining to
16: * distribution of the software without specific, written prior permission.
17: *
18: *
19: * DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
20: * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
21: * DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
22: * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
23: * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
24: * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
25: * SOFTWARE.
26: */
27: /*
28: * KnobPrivate.h - Private definitions for Knob widget (Used by VPane Widget)
29: *
30: * Author: Jeanne M. Rich
31: * Digital Equipment Corporation
32: * Western Software Laboratory
33: * Date: Wednesday September 9, 1987
34: */
35:
36: #ifndef _XtKnobPrivate_h
37: #define _XtKnobPrivate_h
38:
39: /*******************************************************************************
40: *
41: * Knob Widget Private Date (Used by VPane Widget)
42: *
43: ******************************************************************************/
44:
45: /* New fields for the Knob widget class record */
46: typedef struct {
47: int mumble;
48: /* no new procedures */
49: } KnobClassPart;
50:
51: /* Full Class record declaration */
52: typedef struct _KnobClassRec {
53: CoreClassPart core_class;
54: KnobClassPart knob_class;
55: } KnobClassRec;
56:
57: extern KnobClassRec knobClassRec;
58:
59: /* New fields for the Knob widget record */
60: typedef struct {
61: int mumble;
62: /* no new fields */
63: } KnobPart;
64:
65: /*****************************************************************************
66: *
67: * Full instance record declaration
68: *
69: ****************************************************************************/
70:
71: typedef struct _KnobRec {
72: CorePart core;
73: KnobPart knob;
74: } KnobRec;
75:
76: #endif _XtKnobPrivate_h
77: /* DON'T ADD STUFF AFTER THIS #endif */
78:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.