├── .github └── workflows │ └── static.yml ├── .gitignore ├── .gitmodules ├── .idea ├── .gitignore ├── .name ├── GooeyGUI.iml ├── copilot.data.migration.agent.xml ├── copilot.data.migration.ask.xml ├── copilot.data.migration.ask2agent.xml ├── copilot.data.migration.edit.xml ├── editor.xml ├── material_theme_project_new.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── CMakeLists.txt ├── examples ├── ai_chat.c ├── b.sh ├── builder_example.c ├── canvas_test.c ├── colormixer.c ├── container.c ├── counter.c ├── dark.json ├── drop_surface.c ├── grid_example.c ├── hello_world.c ├── image_example.c ├── light.json ├── nodes.c ├── progressbar.c ├── roboto.ttf ├── showcase.c ├── switch_example.c ├── tabs_example.c ├── todolist.c └── vkeyboard_example.c ├── gooeydocs_gen.py ├── include ├── animations │ └── gooey_animations.h ├── assets │ ├── drop_surface_image.h │ └── file.png ├── common │ └── gooey_common.h ├── core │ ├── gooey_event.h │ ├── gooey_timers.h │ ├── gooey_widget.h │ └── gooey_window.h ├── gooey.h ├── signals │ └── gooey_signals.h ├── theme │ └── gooey_theme.h ├── user_config.h └── widgets │ ├── gooey_appbar.h │ ├── gooey_button.h │ ├── gooey_canvas.h │ ├── gooey_checkbox.h │ ├── gooey_container.h │ ├── gooey_ctxmenu.h │ ├── gooey_drop_surface.h │ ├── gooey_dropdown.h │ ├── gooey_fdialog.h │ ├── gooey_image.h │ ├── gooey_label.h │ ├── gooey_layout.h │ ├── gooey_list.h │ ├── gooey_menu.h │ ├── gooey_messagebox.h │ ├── gooey_meter.h │ ├── gooey_node_editor.h │ ├── gooey_notifications.h │ ├── gooey_plot.h │ ├── gooey_progressbar.h │ ├── gooey_radiobutton.h │ ├── gooey_slider.h │ ├── gooey_switch.h │ ├── gooey_tabs.h │ ├── gooey_textbox.h │ └── gooey_webview.h ├── internal ├── animations │ └── gooey_animations_internal.h ├── backends │ ├── fonts │ │ └── roboto.h │ ├── gooey_backend_internal.h │ └── utils │ │ ├── KHR │ │ └── khrplatform.h │ │ ├── backend_utils_internal.c │ │ ├── backend_utils_internal.h │ │ ├── glad │ │ ├── glad.c │ │ └── glad.h │ │ ├── linmath │ │ └── linmath.h │ │ ├── nanosvg │ │ ├── nanosvg.h │ │ └── nanosvgrast.h │ │ └── stb_image │ │ └── stb_image.h ├── core │ ├── gooey_timers_internal.h │ └── gooey_widget_internal.h ├── logger │ └── pico_logger_internal.h ├── virtual │ └── gooey_keyboard_internal.h └── widgets │ ├── gooey_appbar_internal.h │ ├── gooey_button_internal.h │ ├── gooey_canvas_internal.h │ ├── gooey_checkbox_internal.h │ ├── gooey_container_internal.h │ ├── gooey_ctxmenu_internal.h │ ├── gooey_debug_overlay_internal.h │ ├── gooey_drop_surface_internal.h │ ├── gooey_dropdown_internal.h │ ├── gooey_image_internal.h │ ├── gooey_label_internal.h │ ├── gooey_layout_internal.h │ ├── gooey_list_internal.h │ ├── gooey_menu_internal.h │ ├── gooey_meter_internal.h │ ├── gooey_node_editor_internal.h │ ├── gooey_notifications_internal.h │ ├── gooey_plot_internal.h │ ├── gooey_progressbar_internal.h │ ├── gooey_radiobutton_internal.h │ ├── gooey_slider_internal.h │ ├── gooey_switch_internal.h │ ├── gooey_tabs_internal.h │ ├── gooey_textbox_internal.h │ ├── gooey_webview_internal.h │ └── gooey_window_internal.h ├── readme.md ├── roboto.h ├── scripts ├── apply-cjson-submodule-patch.sh └── cjson_submodule.diff ├── shape.frag ├── shape.vert ├── src ├── animations │ ├── gooey_animations.c │ └── gooey_animations_internal.c ├── backends │ ├── glps_backend_internal.c │ ├── glps_vk_backend_internal.c │ └── tft_backend_internal.cpp ├── core │ ├── gooey.c │ ├── gooey_event.c │ ├── gooey_timers.c │ ├── gooey_timers_internal.c │ ├── gooey_widget.c │ ├── gooey_widget_internal.c │ └── gooey_window.c ├── logger │ └── pico_logger_internal.c ├── signals │ └── gooey_signals.c ├── theme │ └── gooey_theme.c ├── virtual │ └── gooey_keyboard_internal.c └── widgets │ ├── gooey_appbar.c │ ├── gooey_appbar_internal.c │ ├── gooey_button.c │ ├── gooey_button_internal.c │ ├── gooey_canvas.c │ ├── gooey_canvas_internal.c │ ├── gooey_checkbox.c │ ├── gooey_checkbox_internal.c │ ├── gooey_container.c │ ├── gooey_container_internal.c │ ├── gooey_ctxmenu.c │ ├── gooey_ctxmenu_internal.c │ ├── gooey_debug_overlay_internal.c │ ├── gooey_drop_surface.c │ ├── gooey_drop_surface_internal.c │ ├── gooey_dropdown.c │ ├── gooey_dropdown_internal.c │ ├── gooey_fdialog.c │ ├── gooey_image.c │ ├── gooey_image_internal.c │ ├── gooey_label.c │ ├── gooey_label_internal.c │ ├── gooey_layout.c │ ├── gooey_layout_internal.c │ ├── gooey_list.c │ ├── gooey_list_internal.c │ ├── gooey_menu.c │ ├── gooey_menu_internal.c │ ├── gooey_messagebox.c │ ├── gooey_meter.c │ ├── gooey_meter_internal.c │ ├── gooey_node_editor.c │ ├── gooey_node_editor_internal.c │ ├── gooey_notifications.c │ ├── gooey_notifications_internal.c │ ├── gooey_plot.c │ ├── gooey_plot_internal.c │ ├── gooey_progressbar.c │ ├── gooey_progressbar_internal.c │ ├── gooey_radiobutton.c │ ├── gooey_radiobutton_internal.c │ ├── gooey_slider.c │ ├── gooey_slider_internal.c │ ├── gooey_switch.c │ ├── gooey_switch_internal.c │ ├── gooey_tabs.c │ ├── gooey_tabs_internal.c │ ├── gooey_textbox.c │ ├── gooey_textbox_internal.c │ ├── gooey_webview.c │ ├── gooey_webview_internal.c │ └── gooey_window_internal.c ├── text.frag ├── text.vert └── website ├── GooeyBuilder.png ├── animation_preview.gif ├── architecture.png ├── builder.html ├── builder_preview.png ├── builder_screenshot.png ├── docs ├── documentation.pdf ├── index.html ├── search_index.json └── test.png ├── example_screenshot-landscape.png ├── example_screenshot.png ├── example_screenshot_login.png ├── gooey.png ├── hardware-accel.png ├── hello_world.png ├── index.html ├── mac_logo.png ├── quickstart.html ├── showcase_glfw_white.png ├── theme-file.png ├── widgets.png ├── win32_logo.png ├── wl_logo.png └── x11_logo.png /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | quickstart.html -------------------------------------------------------------------------------- /.idea/GooeyGUI.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/.idea/GooeyGUI.iml -------------------------------------------------------------------------------- /.idea/copilot.data.migration.agent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/.idea/copilot.data.migration.agent.xml -------------------------------------------------------------------------------- /.idea/copilot.data.migration.ask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/.idea/copilot.data.migration.ask.xml -------------------------------------------------------------------------------- /.idea/copilot.data.migration.ask2agent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/.idea/copilot.data.migration.ask2agent.xml -------------------------------------------------------------------------------- /.idea/copilot.data.migration.edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/.idea/copilot.data.migration.edit.xml -------------------------------------------------------------------------------- /.idea/editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/.idea/editor.xml -------------------------------------------------------------------------------- /.idea/material_theme_project_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/.idea/material_theme_project_new.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ai_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/ai_chat.c -------------------------------------------------------------------------------- /examples/b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/b.sh -------------------------------------------------------------------------------- /examples/builder_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/builder_example.c -------------------------------------------------------------------------------- /examples/canvas_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/canvas_test.c -------------------------------------------------------------------------------- /examples/colormixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/colormixer.c -------------------------------------------------------------------------------- /examples/container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/container.c -------------------------------------------------------------------------------- /examples/counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/counter.c -------------------------------------------------------------------------------- /examples/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/dark.json -------------------------------------------------------------------------------- /examples/drop_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/drop_surface.c -------------------------------------------------------------------------------- /examples/grid_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/grid_example.c -------------------------------------------------------------------------------- /examples/hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/hello_world.c -------------------------------------------------------------------------------- /examples/image_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/image_example.c -------------------------------------------------------------------------------- /examples/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/light.json -------------------------------------------------------------------------------- /examples/nodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/nodes.c -------------------------------------------------------------------------------- /examples/progressbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/progressbar.c -------------------------------------------------------------------------------- /examples/roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/roboto.ttf -------------------------------------------------------------------------------- /examples/showcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/showcase.c -------------------------------------------------------------------------------- /examples/switch_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/switch_example.c -------------------------------------------------------------------------------- /examples/tabs_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/tabs_example.c -------------------------------------------------------------------------------- /examples/todolist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/todolist.c -------------------------------------------------------------------------------- /examples/vkeyboard_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/examples/vkeyboard_example.c -------------------------------------------------------------------------------- /gooeydocs_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/gooeydocs_gen.py -------------------------------------------------------------------------------- /include/animations/gooey_animations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/animations/gooey_animations.h -------------------------------------------------------------------------------- /include/assets/drop_surface_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/assets/drop_surface_image.h -------------------------------------------------------------------------------- /include/assets/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/assets/file.png -------------------------------------------------------------------------------- /include/common/gooey_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/common/gooey_common.h -------------------------------------------------------------------------------- /include/core/gooey_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/core/gooey_event.h -------------------------------------------------------------------------------- /include/core/gooey_timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/core/gooey_timers.h -------------------------------------------------------------------------------- /include/core/gooey_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/core/gooey_widget.h -------------------------------------------------------------------------------- /include/core/gooey_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/core/gooey_window.h -------------------------------------------------------------------------------- /include/gooey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/gooey.h -------------------------------------------------------------------------------- /include/signals/gooey_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/signals/gooey_signals.h -------------------------------------------------------------------------------- /include/theme/gooey_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/theme/gooey_theme.h -------------------------------------------------------------------------------- /include/user_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/user_config.h -------------------------------------------------------------------------------- /include/widgets/gooey_appbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_appbar.h -------------------------------------------------------------------------------- /include/widgets/gooey_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_button.h -------------------------------------------------------------------------------- /include/widgets/gooey_canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_canvas.h -------------------------------------------------------------------------------- /include/widgets/gooey_checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_checkbox.h -------------------------------------------------------------------------------- /include/widgets/gooey_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_container.h -------------------------------------------------------------------------------- /include/widgets/gooey_ctxmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_ctxmenu.h -------------------------------------------------------------------------------- /include/widgets/gooey_drop_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_drop_surface.h -------------------------------------------------------------------------------- /include/widgets/gooey_dropdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_dropdown.h -------------------------------------------------------------------------------- /include/widgets/gooey_fdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_fdialog.h -------------------------------------------------------------------------------- /include/widgets/gooey_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_image.h -------------------------------------------------------------------------------- /include/widgets/gooey_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_label.h -------------------------------------------------------------------------------- /include/widgets/gooey_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_layout.h -------------------------------------------------------------------------------- /include/widgets/gooey_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_list.h -------------------------------------------------------------------------------- /include/widgets/gooey_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_menu.h -------------------------------------------------------------------------------- /include/widgets/gooey_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_messagebox.h -------------------------------------------------------------------------------- /include/widgets/gooey_meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_meter.h -------------------------------------------------------------------------------- /include/widgets/gooey_node_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_node_editor.h -------------------------------------------------------------------------------- /include/widgets/gooey_notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_notifications.h -------------------------------------------------------------------------------- /include/widgets/gooey_plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_plot.h -------------------------------------------------------------------------------- /include/widgets/gooey_progressbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_progressbar.h -------------------------------------------------------------------------------- /include/widgets/gooey_radiobutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_radiobutton.h -------------------------------------------------------------------------------- /include/widgets/gooey_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_slider.h -------------------------------------------------------------------------------- /include/widgets/gooey_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_switch.h -------------------------------------------------------------------------------- /include/widgets/gooey_tabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_tabs.h -------------------------------------------------------------------------------- /include/widgets/gooey_textbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_textbox.h -------------------------------------------------------------------------------- /include/widgets/gooey_webview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/include/widgets/gooey_webview.h -------------------------------------------------------------------------------- /internal/animations/gooey_animations_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/animations/gooey_animations_internal.h -------------------------------------------------------------------------------- /internal/backends/fonts/roboto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/backends/fonts/roboto.h -------------------------------------------------------------------------------- /internal/backends/gooey_backend_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/backends/gooey_backend_internal.h -------------------------------------------------------------------------------- /internal/backends/utils/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/backends/utils/KHR/khrplatform.h -------------------------------------------------------------------------------- /internal/backends/utils/backend_utils_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/backends/utils/backend_utils_internal.c -------------------------------------------------------------------------------- /internal/backends/utils/backend_utils_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/backends/utils/backend_utils_internal.h -------------------------------------------------------------------------------- /internal/backends/utils/glad/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/backends/utils/glad/glad.c -------------------------------------------------------------------------------- /internal/backends/utils/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/backends/utils/glad/glad.h -------------------------------------------------------------------------------- /internal/backends/utils/linmath/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/backends/utils/linmath/linmath.h -------------------------------------------------------------------------------- /internal/backends/utils/nanosvg/nanosvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/backends/utils/nanosvg/nanosvg.h -------------------------------------------------------------------------------- /internal/backends/utils/nanosvg/nanosvgrast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/backends/utils/nanosvg/nanosvgrast.h -------------------------------------------------------------------------------- /internal/backends/utils/stb_image/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/backends/utils/stb_image/stb_image.h -------------------------------------------------------------------------------- /internal/core/gooey_timers_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/core/gooey_timers_internal.h -------------------------------------------------------------------------------- /internal/core/gooey_widget_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/core/gooey_widget_internal.h -------------------------------------------------------------------------------- /internal/logger/pico_logger_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/logger/pico_logger_internal.h -------------------------------------------------------------------------------- /internal/virtual/gooey_keyboard_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/virtual/gooey_keyboard_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_appbar_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_appbar_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_button_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_button_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_canvas_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_canvas_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_checkbox_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_checkbox_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_container_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_container_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_ctxmenu_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_ctxmenu_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_debug_overlay_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_debug_overlay_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_drop_surface_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_drop_surface_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_dropdown_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_dropdown_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_image_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_image_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_label_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_label_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_layout_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_layout_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_list_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_list_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_menu_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_menu_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_meter_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_meter_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_node_editor_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_node_editor_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_notifications_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_notifications_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_plot_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_plot_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_progressbar_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_progressbar_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_radiobutton_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_radiobutton_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_slider_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_slider_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_switch_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_switch_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_tabs_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_tabs_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_textbox_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_textbox_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_webview_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_webview_internal.h -------------------------------------------------------------------------------- /internal/widgets/gooey_window_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/internal/widgets/gooey_window_internal.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/readme.md -------------------------------------------------------------------------------- /roboto.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/apply-cjson-submodule-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/scripts/apply-cjson-submodule-patch.sh -------------------------------------------------------------------------------- /scripts/cjson_submodule.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/scripts/cjson_submodule.diff -------------------------------------------------------------------------------- /shape.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/shape.frag -------------------------------------------------------------------------------- /shape.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/shape.vert -------------------------------------------------------------------------------- /src/animations/gooey_animations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/animations/gooey_animations.c -------------------------------------------------------------------------------- /src/animations/gooey_animations_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/animations/gooey_animations_internal.c -------------------------------------------------------------------------------- /src/backends/glps_backend_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/backends/glps_backend_internal.c -------------------------------------------------------------------------------- /src/backends/glps_vk_backend_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/backends/glps_vk_backend_internal.c -------------------------------------------------------------------------------- /src/backends/tft_backend_internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/backends/tft_backend_internal.cpp -------------------------------------------------------------------------------- /src/core/gooey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/core/gooey.c -------------------------------------------------------------------------------- /src/core/gooey_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/core/gooey_event.c -------------------------------------------------------------------------------- /src/core/gooey_timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/core/gooey_timers.c -------------------------------------------------------------------------------- /src/core/gooey_timers_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/core/gooey_timers_internal.c -------------------------------------------------------------------------------- /src/core/gooey_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/core/gooey_widget.c -------------------------------------------------------------------------------- /src/core/gooey_widget_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/core/gooey_widget_internal.c -------------------------------------------------------------------------------- /src/core/gooey_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/core/gooey_window.c -------------------------------------------------------------------------------- /src/logger/pico_logger_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/logger/pico_logger_internal.c -------------------------------------------------------------------------------- /src/signals/gooey_signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/signals/gooey_signals.c -------------------------------------------------------------------------------- /src/theme/gooey_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/theme/gooey_theme.c -------------------------------------------------------------------------------- /src/virtual/gooey_keyboard_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/virtual/gooey_keyboard_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_appbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_appbar.c -------------------------------------------------------------------------------- /src/widgets/gooey_appbar_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_appbar_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_button.c -------------------------------------------------------------------------------- /src/widgets/gooey_button_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_button_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_canvas.c -------------------------------------------------------------------------------- /src/widgets/gooey_canvas_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_canvas_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_checkbox.c -------------------------------------------------------------------------------- /src/widgets/gooey_checkbox_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_checkbox_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_container.c -------------------------------------------------------------------------------- /src/widgets/gooey_container_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_container_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_ctxmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_ctxmenu.c -------------------------------------------------------------------------------- /src/widgets/gooey_ctxmenu_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_ctxmenu_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_debug_overlay_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_debug_overlay_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_drop_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_drop_surface.c -------------------------------------------------------------------------------- /src/widgets/gooey_drop_surface_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_drop_surface_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_dropdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_dropdown.c -------------------------------------------------------------------------------- /src/widgets/gooey_dropdown_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_dropdown_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_fdialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_fdialog.c -------------------------------------------------------------------------------- /src/widgets/gooey_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_image.c -------------------------------------------------------------------------------- /src/widgets/gooey_image_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_image_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_label.c -------------------------------------------------------------------------------- /src/widgets/gooey_label_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_label_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_layout.c -------------------------------------------------------------------------------- /src/widgets/gooey_layout_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_layout_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_list.c -------------------------------------------------------------------------------- /src/widgets/gooey_list_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_list_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_menu.c -------------------------------------------------------------------------------- /src/widgets/gooey_menu_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_menu_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_messagebox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_messagebox.c -------------------------------------------------------------------------------- /src/widgets/gooey_meter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_meter.c -------------------------------------------------------------------------------- /src/widgets/gooey_meter_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_meter_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_node_editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_node_editor.c -------------------------------------------------------------------------------- /src/widgets/gooey_node_editor_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_node_editor_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_notifications.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_notifications.c -------------------------------------------------------------------------------- /src/widgets/gooey_notifications_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_notifications_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_plot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_plot.c -------------------------------------------------------------------------------- /src/widgets/gooey_plot_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_plot_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_progressbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_progressbar.c -------------------------------------------------------------------------------- /src/widgets/gooey_progressbar_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_progressbar_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_radiobutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_radiobutton.c -------------------------------------------------------------------------------- /src/widgets/gooey_radiobutton_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_radiobutton_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_slider.c -------------------------------------------------------------------------------- /src/widgets/gooey_slider_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_slider_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_switch.c -------------------------------------------------------------------------------- /src/widgets/gooey_switch_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_switch_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_tabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_tabs.c -------------------------------------------------------------------------------- /src/widgets/gooey_tabs_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_tabs_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_textbox.c -------------------------------------------------------------------------------- /src/widgets/gooey_textbox_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_textbox_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_webview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_webview.c -------------------------------------------------------------------------------- /src/widgets/gooey_webview_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_webview_internal.c -------------------------------------------------------------------------------- /src/widgets/gooey_window_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/src/widgets/gooey_window_internal.c -------------------------------------------------------------------------------- /text.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/text.frag -------------------------------------------------------------------------------- /text.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/text.vert -------------------------------------------------------------------------------- /website/GooeyBuilder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/GooeyBuilder.png -------------------------------------------------------------------------------- /website/animation_preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/animation_preview.gif -------------------------------------------------------------------------------- /website/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/architecture.png -------------------------------------------------------------------------------- /website/builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/builder.html -------------------------------------------------------------------------------- /website/builder_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/builder_preview.png -------------------------------------------------------------------------------- /website/builder_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/builder_screenshot.png -------------------------------------------------------------------------------- /website/docs/documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/docs/documentation.pdf -------------------------------------------------------------------------------- /website/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/docs/index.html -------------------------------------------------------------------------------- /website/docs/search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/docs/search_index.json -------------------------------------------------------------------------------- /website/docs/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/docs/test.png -------------------------------------------------------------------------------- /website/example_screenshot-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/example_screenshot-landscape.png -------------------------------------------------------------------------------- /website/example_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/example_screenshot.png -------------------------------------------------------------------------------- /website/example_screenshot_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/example_screenshot_login.png -------------------------------------------------------------------------------- /website/gooey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/gooey.png -------------------------------------------------------------------------------- /website/hardware-accel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/hardware-accel.png -------------------------------------------------------------------------------- /website/hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/hello_world.png -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/index.html -------------------------------------------------------------------------------- /website/mac_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/mac_logo.png -------------------------------------------------------------------------------- /website/quickstart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/quickstart.html -------------------------------------------------------------------------------- /website/showcase_glfw_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/showcase_glfw_white.png -------------------------------------------------------------------------------- /website/theme-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/theme-file.png -------------------------------------------------------------------------------- /website/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/widgets.png -------------------------------------------------------------------------------- /website/win32_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/win32_logo.png -------------------------------------------------------------------------------- /website/wl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/wl_logo.png -------------------------------------------------------------------------------- /website/x11_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryInkTN/GooeyGUI/HEAD/website/x11_logo.png --------------------------------------------------------------------------------