gitextract_bwbj8psc/ ├── .github/ │ └── workflows/ │ └── CI.yml ├── .gitignore ├── Artifacts.toml ├── LICENSE ├── Manifest.toml ├── Project.toml ├── README.md ├── docs/ │ ├── make.jl │ └── src/ │ ├── 01_manual/ │ │ ├── 01_installation.md │ │ ├── 02_signals.md │ │ ├── 03_actions.md │ │ ├── 04_widgets.md │ │ ├── 05_event_handling.md │ │ ├── 06_image.md │ │ ├── 07_os_interface.md │ │ ├── 08_menus.md │ │ ├── 09_native_rendering.md │ │ ├── 10_theme_customization.md │ │ ├── 11_app_distribution.md │ │ └── 12_opengl_integration.md │ ├── assets/ │ │ ├── animation_fade_out.webm │ │ ├── animation_spin.webm │ │ ├── css_style_animation_spin.webm │ │ └── mousetrip.webm │ └── index.md ├── jll/ │ ├── build_tarballs.jl │ ├── build_tarballs.jl.in │ └── deploy.jl ├── logo.xcf ├── src/ │ ├── Mousetrap.jl │ ├── docgen/ │ │ ├── enums.jl │ │ ├── functions.jl │ │ ├── signals.jl │ │ └── types.jl │ ├── docs.jl │ └── key_codes.jl └── test/ ├── example.jl ├── makie_test.jl └── runtests.jl