/* $XConsortium: ScaleP.h,v 1.2 91/03/11 18:50:54 dave Exp $ */ /* Copyright (c) 1989 X Consortium Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. */ /* * Author: Davor Matic, MIT X Consortium */ #ifndef _ScaleP_h #define _ScaleP_h #include "Scale.h" #include typedef struct { int foo; } ScaleClassPart; /* Full class record declaration */ typedef struct _ScaleClassRec { CoreClassPart core_class; SimpleClassPart simple_class; ScaleClassPart scale_class; } ScaleClassRec; extern ScaleClassRec scaleClassRec; typedef struct { Position *x, *y; Dimension *width, *height; } Table; /* New fields for the Scale widget record */ #ifndef XtGravity #define XtGravity int #endif typedef struct { /* resources */ Pixel foreground_pixel; Dimension internal_width; Dimension internal_height; XtGravity gravity; String scale_x_str, scale_y_str; String aspect_ratio_str; String precision_str; XImage *image; Boolean resize; Boolean autoscale; Boolean proportional; Boolean paste_buffer; Cardinal buffer_size; XtPointer userData; Visual *visual; /* private */ float scale_x, scale_y; float aspect_ratio; float precision; GC gc; Position x, y; Dimension width, height; Table table; XRectangle *rectangles; Cardinal nrectangles; } ScalePart; /* Full instance record declaration */ typedef struct _ScaleRec { CorePart core; SimplePart simple; ScalePart scale; } ScaleRec; #endif /* _ScaleP_h */