66 lines
2.5 KiB
C
66 lines
2.5 KiB
C
/* source/sgl.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.
|
|
*/
|
|
|
|
#ifndef __SGL_H__
|
|
#define __SGL_H__
|
|
|
|
#include <sgl_list.h>
|
|
#include <sgl_core.h>
|
|
#include <sgl_anim.h>
|
|
#include <sgl_misc.h>
|
|
#include <sgl_types.h>
|
|
#include <sgl_font.h>
|
|
#include "widgets/line/sgl_line.h"
|
|
#include "widgets/rectangle/sgl_rectangle.h"
|
|
#include "widgets/circle/sgl_circle.h"
|
|
#include "widgets/ring/sgl_ring.h"
|
|
#include "widgets/arc/sgl_arc.h"
|
|
#include "widgets/button/sgl_button.h"
|
|
#include "widgets/slider/sgl_slider.h"
|
|
#include "widgets/progress/sgl_progress.h"
|
|
#include "widgets/label/sgl_label.h"
|
|
#include "widgets/switch/sgl_switch.h"
|
|
#include "widgets/msgbox/sgl_msgbox.h"
|
|
#include "widgets/textline/sgl_textline.h"
|
|
#include "widgets/textbox/sgl_textbox.h"
|
|
#include "widgets/checkbox/sgl_checkbox.h"
|
|
#include "widgets/icon/sgl_icon.h"
|
|
// #include "widgets/listview/sgl_listview.h"
|
|
#include "widgets/numberkbd/sgl_numberkbd.h"
|
|
#include "widgets/keyboard/sgl_keyboard.h"
|
|
#include "widgets/unzip_image/sgl_unzip_image.h"
|
|
#include "widgets/led/sgl_led.h"
|
|
#include "widgets/2dball/sgl_2dball.h"
|
|
#include "widgets/scroll/sgl_scroll.h"
|
|
#include "widgets/dropdown/sgl_dropdown.h"
|
|
#include "widgets/scope/sgl_scope.h"
|
|
#include "widgets/ext_img/sgl_ext_img.h"
|
|
#include "widgets/polygon/sgl_polygon.h"
|
|
#include "widgets/box/sgl_box.h"
|
|
#include "widgets/canvas/sgl_canvas.h"
|
|
#include "widgets/bar/sgl_bar.h"
|
|
#include "widgets/win/sgl_win.h"
|
|
|
|
#endif // __SGL_H__
|