/* source/widgets/sgl_arc.h * * 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 #ifndef __SGL_ARC_H__ #define __SGL_ARC_H__ typedef struct sgl_arc { sgl_obj_t obj; sgl_draw_arc_t desc; int16_t width; }sgl_arc_t; /** * @brief create an arc object * @param parent parent object * @return arc object */ sgl_obj_t* sgl_arc_create(sgl_obj_t* parent); /** * @brief set arc object color * @param obj arc object * @param color arc color * @return none */ static inline void sgl_arc_set_color(sgl_obj_t *obj, sgl_color_t color) { sgl_arc_t *arc = sgl_container_of(obj, sgl_arc_t, obj); arc->desc.color = color; sgl_obj_set_dirty(obj); } /** * @brief set arc object background color * @param obj arc object * @param color arc background color * @return none */ static inline void sgl_arc_set_bg_color(sgl_obj_t *obj, sgl_color_t color) { sgl_arc_t *arc = sgl_container_of(obj, sgl_arc_t, obj); arc->desc.bg_color = color; sgl_obj_set_dirty(obj); } /** * @brief set arc object alpha * @param obj arc object * @param alpha arc alpha * @return none */ static inline void sgl_arc_set_alpha(sgl_obj_t *obj, uint8_t alpha) { sgl_arc_t *arc = sgl_container_of(obj, sgl_arc_t, obj); arc->desc.alpha = alpha; sgl_obj_set_dirty(obj); } /** * @brief set arc object radius * @param obj arc object * @param radius_in arc radius_in * @param radius_out arc radius_out * @return none */ static inline void sgl_arc_set_radius(sgl_obj_t *obj, int16_t radius_in, int16_t radius_out) { sgl_arc_t *arc = sgl_container_of(obj, sgl_arc_t, obj); sgl_obj_set_radius(obj, radius_out); arc->desc.radius_in = radius_in; arc->desc.radius_out = obj->radius; sgl_obj_set_dirty(obj); } /** * @brief set arc object mode * @param obj arc object * @param mode arc mode * @return none */ static inline void sgl_arc_set_mode(sgl_obj_t *obj, uint8_t mode) { sgl_arc_t *arc = sgl_container_of(obj, sgl_arc_t, obj); arc->desc.mode = mode; sgl_obj_set_dirty(obj); } /** * @brief set arc object start angle * @param obj arc object * @param angle arc start angle * @return none * @note angle should be in range [0, 360] */ static inline void sgl_arc_set_start_angle(sgl_obj_t *obj, int16_t angle) { sgl_arc_t *arc = sgl_container_of(obj, sgl_arc_t, obj); arc->desc.start_angle = angle; sgl_obj_set_dirty(obj); } /** * @brief set arc object end angle * @param obj arc object * @param angle arc end angle * @return none * @note angle should be in range [0, 360] */ static inline void sgl_arc_set_end_angle(sgl_obj_t *obj, int16_t angle) { sgl_arc_t *arc = sgl_container_of(obj, sgl_arc_t, obj); arc->desc.end_angle = angle; sgl_obj_set_dirty(obj); } #endif // !__SGL_ARC_H__