/* Part of XPCE --- The SWI-Prolog GUI toolkit Author: Jan Wielemaker and Anjo Anjewierden E-mail: jan@swi.psy.uva.nl WWW: http://www.swi.psy.uva.nl/projects/xpce/ Copyright (c) 1985-2002, University of Amsterdam All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include static status initialiseCircle(Circle c, Int w) { initialiseGraphical(c, ZERO, ZERO, w, w); assign(c, fill_pattern, NIL); succeed; } static status RedrawAreaCircle(Circle c, Area a) { int x, y, w, h; initialiseDeviceGraphical(c, &x, &y, &w, &h); NormaliseArea(x, y, w, h); r_thickness(valInt(c->pen)); r_dash(c->texture); r_ellipse(x, y, w, h, c->fill_pattern); return RedrawAreaGraphical(c, a); } static status radiusCircle(Circle c, Int r) { Int d = mul(r, TWO); return setGraphical(c, DEFAULT, DEFAULT, d, d); } static Int getRadiusCircle(Circle c) { answer(div(c->area->w,TWO)); } static status rotateCircle(Circle c) { succeed; } static status diameterCircle(Circle c, Int n) { return setGraphical(c, DEFAULT, DEFAULT, n, n); } static Int getDiameterCircle(Circle c) { answer(c->area->w); } static status geometryCircle(Circle c, Int x, Int y, Int w, Int h) { Int d; if ( isDefault(w) ) d = (isDefault(h) ? (Int) DEFAULT : h); else d = (isDefault(h) ? w : valInt(w) < valInt(h) ? w : h); return geometryGraphical(c, x, y, d, d); } /******************************* * CLASS DECLARATION * *******************************/ /* Type declarations */ static char *T_geometry[] = { "x=[int]", "y=[int]", "width=[int]", "height=[int]" }; /* Instance Variables */ static vardecl var_circle[] = { SV(NAME_fillPattern, "image|colour*", IV_GET|IV_STORE, fillPatternGraphical, NAME_appearance, "Fill pattern for internals") }; /* Send Methods */ static senddecl send_circle[] = { SM(NAME_initialise, 1, "diameter=[int]", initialiseCircle, DEFAULT, "Create circle from diameter"), SM(NAME_diameter, 1, "int", diameterCircle, NAME_area, "Set diameter"), SM(NAME_geometry, 4, T_geometry, geometryCircle, NAME_area, "Force width and height to be equal"), SM(NAME_radius, 1, "int", radiusCircle, NAME_area, "Set radius (= half diameter)"), SM(NAME_DrawPostScript, 1, "{head,body}", drawPostScriptCircle, NAME_postscript, "Create PostScript"), SM(NAME_rotate, 1, "int", rotateCircle, NAME_rotate, "Rotate (does nothing)") }; /* Get Methods */ static getdecl get_circle[] = { GM(NAME_diameter, 0, "int", NULL, getDiameterCircle, NAME_area, "Diameter (= twice radius)"), GM(NAME_radius, 0, "int", NULL, getRadiusCircle, NAME_area, "Radius (= half diameter") }; /* Resources */ static classvardecl rc_circle[] = { RC(NAME_selectionHandles, "name", "sides", "Visual feedback of <->selected") }; /* Class Declaration */ static Name circle_termnames[] = { NAME_diameter }; ClassDecl(circle_decls, var_circle, send_circle, get_circle, rc_circle, 1, circle_termnames, "$Rev$"); status makeClassCircle(Class class) { declareClass(class, &circle_decls); cloneStyleVariableClass(class, NAME_fillPattern, NAME_reference); setRedrawFunctionClass(class, RedrawAreaCircle); succeed; }