/* source/widgets/sgl_circle.c * * MIT License * * Copyright(c) 2023-present All contributors of SGL * Document reference link: https://sgl-docs.readthedocs.io * * 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 * AUTHORS OR COPYRIGHT HOLDERS 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. */ #include #include #include #include #include #include #include #include #include "sgl_circle.h" /** * @brief construct function of the circle object * @param surf pointer to the surface * @param obj pointer to the object * @param evt pointer to the event * @return none */ static void sgl_circle_construct_cb(sgl_surf_t *surf, sgl_obj_t* obj, sgl_event_t *evt) { sgl_circle_t *circle = sgl_container_of(obj, sgl_circle_t, obj); if(evt->type == SGL_EVENT_DRAW_MAIN) { circle->desc.cx = (circle->obj.coords.x1 + circle->obj.coords.x2) / 2; circle->desc.cy = (circle->obj.coords.y1 + circle->obj.coords.y2) / 2; sgl_draw_circle(surf, &obj->area, &circle->desc); } else if(evt->type == SGL_EVENT_DRAW_INIT) { if(circle->desc.radius == -1) { circle->desc.radius = (circle->obj.coords.y2 - circle->obj.coords.y1) / 2; } } } /** * @brief create a circle object * @param parent parent of the object * @return pointer to the object */ sgl_obj_t* sgl_circle_create(sgl_obj_t* parent) { sgl_circle_t *circle = sgl_malloc(sizeof(sgl_circle_t)); if(circle == NULL) { SGL_LOG_ERROR("sgl_circle_create: malloc failed"); return NULL; } /* set object all member to zero */ memset(circle, 0, sizeof(sgl_circle_t)); sgl_obj_t *obj = &circle->obj; sgl_obj_init(&circle->obj, parent); obj->construct_fn = sgl_circle_construct_cb; sgl_obj_set_border_width(obj, SGL_THEME_BORDER_WIDTH); obj->needinit = 1; circle->desc.alpha = SGL_ALPHA_MAX; circle->desc.color = SGL_THEME_COLOR; circle->desc.pixmap = NULL; circle->desc.border = SGL_THEME_BORDER_WIDTH; circle->desc.border_color = SGL_THEME_BORDER_COLOR; circle->desc.cx = -1; circle->desc.cy = -1; circle->desc.radius = -1; return obj; }