/* * $Header: /home/barad-dur/vision/forsyth/schenney/sced-0.94/h/RCS/SimpleWireP.h,v 1.1 1997/06/09 19:51:04 schenney Exp $ * * $Log: SimpleWireP.h,v $ * Revision 1.1 1997/06/09 19:51:04 schenney * Added desensitized drawing * * Revision 1.0.1.1 1997/06/03 20:30:49 schenney * Added desensitized drawing * * Revision 1.0 1997/05/06 20:40:18 schenney * Initial revision * */ /* ** ScEd: A Constraint Based Scene Editor. ** Copyright (C) 1994-1998 Stephen Chenney (schenney@cs.berkeley.edu) ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation; either version 2 of the License, or ** (at your option) any later version. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program; if not, write to the Free Software ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define PATCHLEVEL 0 /* ** sced: A Constraint Based Object Scene Editor ** ** SimpleWireP.h : Private header file for the SimpleWire widget class. ** ** Created: 19/03/94 */ #ifndef _SimpleWireP_h #define _SimpleWireP_h #include /* include superclass private header file */ #include typedef struct { int empty; } SimpleWireClassPart; typedef struct _SimpleWireClassRec { CoreClassPart core_class; SimpleWireClassPart simpleWire_class; } SimpleWireClassRec; extern SimpleWireClassRec simpleWireClassRec; typedef struct { /* resources */ XtPointer base_ptr; Pixel drawing_color; XFontStruct* font; XtCallbackList select_callback; /* private state */ GC drawing_gc; GC desensitized_gc; int scale; Wireframe *wireframe; Pixmap off_screen; } SimpleWirePart; typedef struct _SimpleWireRec { CorePart core; SimpleWirePart simpleWire; } SimpleWireRec; #endif /* _SimpleWireP_h */