├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build_linux.yml │ ├── build_macos.yml │ ├── build_windows.yml │ ├── coverage.yml │ └── wheels.yml ├── .gitignore ├── .gitmodules ├── CHANGES.md ├── CMakeLists.txt ├── LICENSE ├── LICENSE.COMMERCIAL ├── LICENSE.GPLv3 ├── MANIFEST.in ├── README.rst ├── cmake ├── ArchivePythonStdlib.py └── CodeCoverage.cmake ├── demos ├── plugin │ ├── CMakeLists.txt │ ├── PopsiclePluginEditor.cpp │ ├── PopsiclePluginEditor.h │ ├── PopsiclePluginProcessor.cpp │ └── PopsiclePluginProcessor.h └── standalone │ ├── CMakeLists.txt │ ├── Main.cpp │ ├── PopsicleDemo.cpp │ └── PopsicleDemo.h ├── docs ├── EmbeddingTutorial.rst ├── QuickStartGuide.rst └── conf.py ├── examples ├── .gitignore ├── NotoColorEmoji.ttf ├── __init__.py ├── animated_component.py ├── audio_device.py ├── audio_player.py ├── audio_player_waveform.py ├── docs.py ├── drawables.py ├── emojis_component.py ├── emojis_font_component.py ├── hotreload_component.py ├── hotreload_main.py ├── juce_init.py ├── juce_o_matic.py ├── layout_flexgrid.py ├── layout_rectangles.py ├── matplotlib_integration.py ├── nim_audio.nim ├── nim_audio_integration.py ├── numpy_audio.py ├── opencv_integration.jpg ├── opencv_integration.py ├── opencv_video.py ├── opencv_video.xml ├── pil_image.py ├── radio_buttons_checkboxes.py ├── slider_decibels.py ├── slider_values.py ├── table_list_box.py ├── table_list_box.xml ├── wavetable_oscillator.py ├── wavetable_oscillator_numpy.py ├── webgpu │ ├── __init__.py │ ├── cube_popsicle.py │ ├── pbr2.py │ ├── pbr2_embed.py │ ├── pop.py │ ├── triangle.py │ ├── triangle_popsicle.py │ └── triangle_popsicle_embed.py └── wip │ ├── audio_callback_cpp.py │ ├── audio_player_cpp.py │ ├── copy_image_pixels.py │ └── synth_midi_input.py ├── icons ├── popsicle.icns ├── popsicle.png └── popsicle.svg ├── images ├── animated_component.png ├── audio_player.png ├── audio_player_waveform.png ├── emojis_component.png ├── hot_reloading_video.png ├── juce_o_matic.png ├── layout_flexgrid.png ├── layout_rectangles.png ├── matplotlib_integration.png ├── opencv_integration.png ├── pygfx_3d_video.png ├── slider_decibels.png ├── slider_values.png ├── table_list_box.png ├── wavetable_oscillator.png └── wgpu_triangle.png ├── justfile ├── modules ├── CMakeLists.txt └── juce_python │ ├── bindings │ ├── ScriptJuceAudioBasicsBindings.cpp │ ├── ScriptJuceAudioBasicsBindings.h │ ├── ScriptJuceAudioDevicesBindings.cpp │ ├── ScriptJuceAudioDevicesBindings.h │ ├── ScriptJuceAudioFormatsBindings.cpp │ ├── ScriptJuceAudioFormatsBindings.h │ ├── ScriptJuceAudioProcessorsBindings.cpp │ ├── ScriptJuceAudioProcessorsBindings.h │ ├── ScriptJuceAudioUtilsBindings.cpp │ ├── ScriptJuceAudioUtilsBindings.h │ ├── ScriptJuceBindings.cpp │ ├── ScriptJuceCoreBindings.cpp │ ├── ScriptJuceCoreBindings.h │ ├── ScriptJuceDataStructuresBindings.cpp │ ├── ScriptJuceDataStructuresBindings.h │ ├── ScriptJuceEventsBindings.cpp │ ├── ScriptJuceEventsBindings.h │ ├── ScriptJuceGraphicsBindings.cpp │ ├── ScriptJuceGraphicsBindings.h │ ├── ScriptJuceGuiBasicsBindings.cpp │ ├── ScriptJuceGuiBasicsBindings.h │ ├── ScriptJuceGuiEntryPointsBindings.cpp │ ├── ScriptJuceGuiEntryPointsBindings.h │ ├── ScriptJuceGuiExtraBindings.cpp │ ├── ScriptJuceGuiExtraBindings.h │ ├── ScriptJuceOptionsBindings.cpp │ └── ScriptJuceOptionsBindings.h │ ├── juce_python.cpp │ ├── juce_python.h │ ├── juce_python.mm │ ├── juce_python_audio_basics.cpp │ ├── juce_python_audio_devices.cpp │ ├── juce_python_audio_formats.cpp │ ├── juce_python_audio_processors.cpp │ ├── juce_python_audio_utils.cpp │ ├── juce_python_bindings.cpp │ ├── juce_python_core.cpp │ ├── juce_python_data_structures.cpp │ ├── juce_python_events.cpp │ ├── juce_python_graphics.cpp │ ├── juce_python_gui_basics.cpp │ ├── juce_python_gui_entry.cpp │ ├── juce_python_gui_extra.cpp │ ├── juce_python_modules.cpp │ ├── juce_python_options.cpp │ ├── modules │ └── ScriptPopsicleModule.cpp │ ├── pybind11 │ ├── attr.h │ ├── buffer_info.h │ ├── cast.h │ ├── chrono.h │ ├── common.h │ ├── complex.h │ ├── detail │ │ ├── class.h │ │ ├── common.h │ │ ├── descr.h │ │ ├── init.h │ │ ├── internals.h │ │ ├── type_caster_base.h │ │ └── typeid.h │ ├── eigen.h │ ├── eigen │ │ ├── common.h │ │ ├── matrix.h │ │ └── tensor.h │ ├── embed.h │ ├── eval.h │ ├── functional.h │ ├── gil.h │ ├── iostream.h │ ├── numpy.h │ ├── operators.h │ ├── options.h │ ├── pybind11.h │ ├── pytypes.h │ ├── stl.h │ ├── stl │ │ └── filesystem.h │ ├── stl_bind.h │ └── type_caster_pyobject_ptr.h │ ├── scripting │ ├── ScriptBindings.cpp │ ├── ScriptBindings.h │ ├── ScriptEngine.cpp │ ├── ScriptEngine.h │ ├── ScriptException.h │ ├── ScriptUtilities.cpp │ └── ScriptUtilities.h │ └── utilities │ ├── ClassDemangling.cpp │ ├── ClassDemangling.h │ ├── CrashHandling.cpp │ ├── CrashHandling.h │ ├── MacroHelpers.h │ ├── PyBind11Includes.h │ ├── PythonInterop.h │ ├── PythonTypes.h │ └── WindowsIncludes.h ├── popsicle.jpg ├── pyproject.toml ├── scripts ├── build_wheel.sh ├── install_wheel.sh ├── pull_upstream.sh └── upload_wheel.sh ├── setup.py └── tests ├── __init__.py ├── common.py ├── compare_data └── .gitignore ├── conftest.py ├── runtime_data └── .gitignore ├── test_juce_core ├── __init__.py ├── data │ ├── archive.zip │ ├── pysound.jpg │ ├── somefile.txt │ ├── test.xml │ └── test_broken.xml ├── test_Array.py ├── test_Base64.py ├── test_BigInteger.py ├── test_ByteOrder.py ├── test_Cast.py ├── test_CriticalSection.py ├── test_File.py ├── test_FileFilter.py ├── test_FileInputStream.py ├── test_FileOutputStream.py ├── test_Identifier.py ├── test_InputStream.py ├── test_Ints.py ├── test_JSON.py ├── test_MemoryBlock.py ├── test_MemoryInputStream.py ├── test_MemoryMappedFile.py ├── test_NamedValueSet.py ├── test_NormalisableRange.py ├── test_PropertySet.py ├── test_Random.py ├── test_Range.py ├── test_RangedDirectoryIterator.py ├── test_RelativeTime.py ├── test_Result.py ├── test_StringArray.py ├── test_StringPairArray.py ├── test_SubregionStream.py ├── test_TemporaryFile.py ├── test_Thread.py ├── test_ThreadPool.py ├── test_Time.py ├── test_URLInputSource.py ├── test_Uuid.py ├── test_WildcardFileFilter.py ├── test_XmlDocument.py ├── test_XmlElement.py └── test_ZipFile.py ├── test_juce_data_structures ├── __init__.py ├── test_CachedValue.py ├── test_PropertiesFile.py ├── test_UndoManager.py ├── test_Value.py ├── test_ValueTree.py └── test_ValueTreeSynchroniser.py ├── test_juce_events ├── __init__.py ├── test_ActionBroadcaster.py ├── test_AsyncUpdater.py ├── test_ChangeBroadcaster.py ├── test_LockingAsyncUpdater.py ├── test_Message.py ├── test_MessageListener.py ├── test_MessageManager.py ├── test_MultiTimer.py └── test_Timer.py ├── test_juce_graphics ├── __init__.py ├── data │ └── logo.png ├── reference_images │ ├── test_draw_rect.png │ ├── test_draw_rounded_rect.png │ ├── test_fill_all.png │ ├── test_fill_all_image.png │ ├── test_fill_rect.png │ ├── test_fill_rect_area.png │ ├── test_fill_rect_gradient_horizontal.png │ ├── test_fill_rect_gradient_horizontal_area.png │ ├── test_fill_rect_gradient_vertical.png │ ├── test_fill_rect_gradient_vertical_area.png │ ├── test_fill_rect_image.png │ └── test_fill_rect_image_area.png ├── test_AffineTransform.py ├── test_BorderSize.py ├── test_Colour.py ├── test_ColourGradient.py ├── test_FillType.py ├── test_Graphics.py ├── test_Justification.py ├── test_Line.py ├── test_Parallelogram.py ├── test_Path.py ├── test_PathStrokeType.py ├── test_PixelARGB.py ├── test_PixelAlpha.py ├── test_PixelRGB.py ├── test_Point.py ├── test_Rectangle.py ├── test_RectangleList.py └── utilities.py ├── test_juce_gui_basics ├── __init__.py ├── test_Button.py ├── test_DocumentWindow.py ├── test_JUCEApplication.py └── test_KeyPress.py └── utilities.py /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build_linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/.github/workflows/build_linux.yml -------------------------------------------------------------------------------- /.github/workflows/build_macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/.github/workflows/build_macos.yml -------------------------------------------------------------------------------- /.github/workflows/build_windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/.github/workflows/build_windows.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- 1 | ## Master 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.COMMERCIAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/LICENSE.COMMERCIAL -------------------------------------------------------------------------------- /LICENSE.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/LICENSE.GPLv3 -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/README.rst -------------------------------------------------------------------------------- /cmake/ArchivePythonStdlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/cmake/ArchivePythonStdlib.py -------------------------------------------------------------------------------- /cmake/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/cmake/CodeCoverage.cmake -------------------------------------------------------------------------------- /demos/plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/demos/plugin/CMakeLists.txt -------------------------------------------------------------------------------- /demos/plugin/PopsiclePluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/demos/plugin/PopsiclePluginEditor.cpp -------------------------------------------------------------------------------- /demos/plugin/PopsiclePluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/demos/plugin/PopsiclePluginEditor.h -------------------------------------------------------------------------------- /demos/plugin/PopsiclePluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/demos/plugin/PopsiclePluginProcessor.cpp -------------------------------------------------------------------------------- /demos/plugin/PopsiclePluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/demos/plugin/PopsiclePluginProcessor.h -------------------------------------------------------------------------------- /demos/standalone/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/demos/standalone/CMakeLists.txt -------------------------------------------------------------------------------- /demos/standalone/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/demos/standalone/Main.cpp -------------------------------------------------------------------------------- /demos/standalone/PopsicleDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/demos/standalone/PopsicleDemo.cpp -------------------------------------------------------------------------------- /demos/standalone/PopsicleDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/demos/standalone/PopsicleDemo.h -------------------------------------------------------------------------------- /docs/EmbeddingTutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/docs/EmbeddingTutorial.rst -------------------------------------------------------------------------------- /docs/QuickStartGuide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/docs/QuickStartGuide.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/docs/conf.py -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | emoji_cache/ 2 | -------------------------------------------------------------------------------- /examples/NotoColorEmoji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/NotoColorEmoji.ttf -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/animated_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/animated_component.py -------------------------------------------------------------------------------- /examples/audio_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/audio_device.py -------------------------------------------------------------------------------- /examples/audio_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/audio_player.py -------------------------------------------------------------------------------- /examples/audio_player_waveform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/audio_player_waveform.py -------------------------------------------------------------------------------- /examples/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/docs.py -------------------------------------------------------------------------------- /examples/drawables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/drawables.py -------------------------------------------------------------------------------- /examples/emojis_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/emojis_component.py -------------------------------------------------------------------------------- /examples/emojis_font_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/emojis_font_component.py -------------------------------------------------------------------------------- /examples/hotreload_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/hotreload_component.py -------------------------------------------------------------------------------- /examples/hotreload_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/hotreload_main.py -------------------------------------------------------------------------------- /examples/juce_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/juce_init.py -------------------------------------------------------------------------------- /examples/juce_o_matic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/juce_o_matic.py -------------------------------------------------------------------------------- /examples/layout_flexgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/layout_flexgrid.py -------------------------------------------------------------------------------- /examples/layout_rectangles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/layout_rectangles.py -------------------------------------------------------------------------------- /examples/matplotlib_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/matplotlib_integration.py -------------------------------------------------------------------------------- /examples/nim_audio.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/nim_audio.nim -------------------------------------------------------------------------------- /examples/nim_audio_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/nim_audio_integration.py -------------------------------------------------------------------------------- /examples/numpy_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/numpy_audio.py -------------------------------------------------------------------------------- /examples/opencv_integration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/opencv_integration.jpg -------------------------------------------------------------------------------- /examples/opencv_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/opencv_integration.py -------------------------------------------------------------------------------- /examples/opencv_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/opencv_video.py -------------------------------------------------------------------------------- /examples/opencv_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/opencv_video.xml -------------------------------------------------------------------------------- /examples/pil_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/pil_image.py -------------------------------------------------------------------------------- /examples/radio_buttons_checkboxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/radio_buttons_checkboxes.py -------------------------------------------------------------------------------- /examples/slider_decibels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/slider_decibels.py -------------------------------------------------------------------------------- /examples/slider_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/slider_values.py -------------------------------------------------------------------------------- /examples/table_list_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/table_list_box.py -------------------------------------------------------------------------------- /examples/table_list_box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/table_list_box.xml -------------------------------------------------------------------------------- /examples/wavetable_oscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/wavetable_oscillator.py -------------------------------------------------------------------------------- /examples/wavetable_oscillator_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/wavetable_oscillator_numpy.py -------------------------------------------------------------------------------- /examples/webgpu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/webgpu/cube_popsicle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/webgpu/cube_popsicle.py -------------------------------------------------------------------------------- /examples/webgpu/pbr2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/webgpu/pbr2.py -------------------------------------------------------------------------------- /examples/webgpu/pbr2_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/webgpu/pbr2_embed.py -------------------------------------------------------------------------------- /examples/webgpu/pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/webgpu/pop.py -------------------------------------------------------------------------------- /examples/webgpu/triangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/webgpu/triangle.py -------------------------------------------------------------------------------- /examples/webgpu/triangle_popsicle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/webgpu/triangle_popsicle.py -------------------------------------------------------------------------------- /examples/webgpu/triangle_popsicle_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/webgpu/triangle_popsicle_embed.py -------------------------------------------------------------------------------- /examples/wip/audio_callback_cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/wip/audio_callback_cpp.py -------------------------------------------------------------------------------- /examples/wip/audio_player_cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/wip/audio_player_cpp.py -------------------------------------------------------------------------------- /examples/wip/copy_image_pixels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/wip/copy_image_pixels.py -------------------------------------------------------------------------------- /examples/wip/synth_midi_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/examples/wip/synth_midi_input.py -------------------------------------------------------------------------------- /icons/popsicle.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/icons/popsicle.icns -------------------------------------------------------------------------------- /icons/popsicle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/icons/popsicle.png -------------------------------------------------------------------------------- /icons/popsicle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/icons/popsicle.svg -------------------------------------------------------------------------------- /images/animated_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/animated_component.png -------------------------------------------------------------------------------- /images/audio_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/audio_player.png -------------------------------------------------------------------------------- /images/audio_player_waveform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/audio_player_waveform.png -------------------------------------------------------------------------------- /images/emojis_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/emojis_component.png -------------------------------------------------------------------------------- /images/hot_reloading_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/hot_reloading_video.png -------------------------------------------------------------------------------- /images/juce_o_matic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/juce_o_matic.png -------------------------------------------------------------------------------- /images/layout_flexgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/layout_flexgrid.png -------------------------------------------------------------------------------- /images/layout_rectangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/layout_rectangles.png -------------------------------------------------------------------------------- /images/matplotlib_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/matplotlib_integration.png -------------------------------------------------------------------------------- /images/opencv_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/opencv_integration.png -------------------------------------------------------------------------------- /images/pygfx_3d_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/pygfx_3d_video.png -------------------------------------------------------------------------------- /images/slider_decibels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/slider_decibels.png -------------------------------------------------------------------------------- /images/slider_values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/slider_values.png -------------------------------------------------------------------------------- /images/table_list_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/table_list_box.png -------------------------------------------------------------------------------- /images/wavetable_oscillator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/wavetable_oscillator.png -------------------------------------------------------------------------------- /images/wgpu_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/images/wgpu_triangle.png -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/justfile -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceAudioBasicsBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceAudioBasicsBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceAudioBasicsBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceAudioBasicsBindings.h -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceAudioDevicesBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceAudioDevicesBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceAudioDevicesBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceAudioDevicesBindings.h -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceAudioFormatsBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceAudioFormatsBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceAudioFormatsBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceAudioFormatsBindings.h -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceAudioProcessorsBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceAudioProcessorsBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceAudioProcessorsBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceAudioProcessorsBindings.h -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceAudioUtilsBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceAudioUtilsBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceAudioUtilsBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceAudioUtilsBindings.h -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceCoreBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceCoreBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceCoreBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceCoreBindings.h -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceDataStructuresBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceDataStructuresBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceDataStructuresBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceDataStructuresBindings.h -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceEventsBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceEventsBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceEventsBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceEventsBindings.h -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceGraphicsBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceGraphicsBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceGraphicsBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceGraphicsBindings.h -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceGuiBasicsBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceGuiBasicsBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceGuiBasicsBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceGuiBasicsBindings.h -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceGuiEntryPointsBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceGuiEntryPointsBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceGuiEntryPointsBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceGuiEntryPointsBindings.h -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceGuiExtraBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceGuiExtraBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceGuiExtraBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceGuiExtraBindings.h -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceOptionsBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceOptionsBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/bindings/ScriptJuceOptionsBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/bindings/ScriptJuceOptionsBindings.h -------------------------------------------------------------------------------- /modules/juce_python/juce_python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python.h -------------------------------------------------------------------------------- /modules/juce_python/juce_python.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python.mm -------------------------------------------------------------------------------- /modules/juce_python/juce_python_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_audio_basics.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_audio_devices.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_audio_formats.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python_audio_processors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_audio_processors.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python_audio_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_audio_utils.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python_bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_bindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_core.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python_data_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_data_structures.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_events.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_graphics.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_gui_basics.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python_gui_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_gui_entry.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_gui_extra.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python_modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_modules.cpp -------------------------------------------------------------------------------- /modules/juce_python/juce_python_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/juce_python_options.cpp -------------------------------------------------------------------------------- /modules/juce_python/modules/ScriptPopsicleModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/modules/ScriptPopsicleModule.cpp -------------------------------------------------------------------------------- /modules/juce_python/pybind11/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/attr.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/buffer_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/buffer_info.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/cast.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/chrono.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/common.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/complex.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/detail/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/detail/class.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/detail/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/detail/common.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/detail/descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/detail/descr.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/detail/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/detail/init.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/detail/internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/detail/internals.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/detail/type_caster_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/detail/type_caster_base.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/detail/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/detail/typeid.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/eigen.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/eigen/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/eigen/common.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/eigen/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/eigen/matrix.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/eigen/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/eigen/tensor.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/embed.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/eval.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/functional.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/gil.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/iostream.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/numpy.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/operators.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/options.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/pybind11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/pybind11.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/pytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/pytypes.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/stl.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/stl/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/stl/filesystem.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/stl_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/stl_bind.h -------------------------------------------------------------------------------- /modules/juce_python/pybind11/type_caster_pyobject_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/pybind11/type_caster_pyobject_ptr.h -------------------------------------------------------------------------------- /modules/juce_python/scripting/ScriptBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/scripting/ScriptBindings.cpp -------------------------------------------------------------------------------- /modules/juce_python/scripting/ScriptBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/scripting/ScriptBindings.h -------------------------------------------------------------------------------- /modules/juce_python/scripting/ScriptEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/scripting/ScriptEngine.cpp -------------------------------------------------------------------------------- /modules/juce_python/scripting/ScriptEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/scripting/ScriptEngine.h -------------------------------------------------------------------------------- /modules/juce_python/scripting/ScriptException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/scripting/ScriptException.h -------------------------------------------------------------------------------- /modules/juce_python/scripting/ScriptUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/scripting/ScriptUtilities.cpp -------------------------------------------------------------------------------- /modules/juce_python/scripting/ScriptUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/scripting/ScriptUtilities.h -------------------------------------------------------------------------------- /modules/juce_python/utilities/ClassDemangling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/utilities/ClassDemangling.cpp -------------------------------------------------------------------------------- /modules/juce_python/utilities/ClassDemangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/utilities/ClassDemangling.h -------------------------------------------------------------------------------- /modules/juce_python/utilities/CrashHandling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/utilities/CrashHandling.cpp -------------------------------------------------------------------------------- /modules/juce_python/utilities/CrashHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/utilities/CrashHandling.h -------------------------------------------------------------------------------- /modules/juce_python/utilities/MacroHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/utilities/MacroHelpers.h -------------------------------------------------------------------------------- /modules/juce_python/utilities/PyBind11Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/utilities/PyBind11Includes.h -------------------------------------------------------------------------------- /modules/juce_python/utilities/PythonInterop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/utilities/PythonInterop.h -------------------------------------------------------------------------------- /modules/juce_python/utilities/PythonTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/utilities/PythonTypes.h -------------------------------------------------------------------------------- /modules/juce_python/utilities/WindowsIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/modules/juce_python/utilities/WindowsIncludes.h -------------------------------------------------------------------------------- /popsicle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/popsicle.jpg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/build_wheel.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | python -m build --wheel 4 | -------------------------------------------------------------------------------- /scripts/install_wheel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/scripts/install_wheel.sh -------------------------------------------------------------------------------- /scripts/pull_upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/scripts/pull_upstream.sh -------------------------------------------------------------------------------- /scripts/upload_wheel.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | python3 -m twine upload --repository testjuce dist/*.whl 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import common 2 | -------------------------------------------------------------------------------- /tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/common.py -------------------------------------------------------------------------------- /tests/compare_data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/runtime_data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/test_juce_core/__init__.py: -------------------------------------------------------------------------------- 1 | from .. import common 2 | -------------------------------------------------------------------------------- /tests/test_juce_core/data/archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/data/archive.zip -------------------------------------------------------------------------------- /tests/test_juce_core/data/pysound.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/data/pysound.jpg -------------------------------------------------------------------------------- /tests/test_juce_core/data/somefile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/data/somefile.txt -------------------------------------------------------------------------------- /tests/test_juce_core/data/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/data/test.xml -------------------------------------------------------------------------------- /tests/test_juce_core/data/test_broken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/data/test_broken.xml -------------------------------------------------------------------------------- /tests/test_juce_core/test_Array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_Array.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_Base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_Base64.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_BigInteger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_BigInteger.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_ByteOrder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_ByteOrder.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_Cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_Cast.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_CriticalSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_CriticalSection.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_File.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_FileFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_FileFilter.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_FileInputStream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_FileInputStream.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_FileOutputStream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_FileOutputStream.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_Identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_Identifier.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_InputStream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_InputStream.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_Ints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_Ints.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_JSON.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_JSON.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_MemoryBlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_MemoryBlock.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_MemoryInputStream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_MemoryInputStream.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_MemoryMappedFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_MemoryMappedFile.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_NamedValueSet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_NamedValueSet.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_NormalisableRange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_NormalisableRange.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_PropertySet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_PropertySet.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_Random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_Random.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_Range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_Range.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_RangedDirectoryIterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_RangedDirectoryIterator.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_RelativeTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_RelativeTime.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_Result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_Result.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_StringArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_StringArray.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_StringPairArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_StringPairArray.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_SubregionStream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_SubregionStream.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_TemporaryFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_TemporaryFile.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_Thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_Thread.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_ThreadPool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_ThreadPool.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_Time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_Time.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_URLInputSource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_URLInputSource.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_Uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_Uuid.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_WildcardFileFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_WildcardFileFilter.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_XmlDocument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_XmlDocument.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_XmlElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_XmlElement.py -------------------------------------------------------------------------------- /tests/test_juce_core/test_ZipFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_core/test_ZipFile.py -------------------------------------------------------------------------------- /tests/test_juce_data_structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_data_structures/__init__.py -------------------------------------------------------------------------------- /tests/test_juce_data_structures/test_CachedValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_data_structures/test_CachedValue.py -------------------------------------------------------------------------------- /tests/test_juce_data_structures/test_PropertiesFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_data_structures/test_PropertiesFile.py -------------------------------------------------------------------------------- /tests/test_juce_data_structures/test_UndoManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_data_structures/test_UndoManager.py -------------------------------------------------------------------------------- /tests/test_juce_data_structures/test_Value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_data_structures/test_Value.py -------------------------------------------------------------------------------- /tests/test_juce_data_structures/test_ValueTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_data_structures/test_ValueTree.py -------------------------------------------------------------------------------- /tests/test_juce_data_structures/test_ValueTreeSynchroniser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_data_structures/test_ValueTreeSynchroniser.py -------------------------------------------------------------------------------- /tests/test_juce_events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_events/__init__.py -------------------------------------------------------------------------------- /tests/test_juce_events/test_ActionBroadcaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_events/test_ActionBroadcaster.py -------------------------------------------------------------------------------- /tests/test_juce_events/test_AsyncUpdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_events/test_AsyncUpdater.py -------------------------------------------------------------------------------- /tests/test_juce_events/test_ChangeBroadcaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_events/test_ChangeBroadcaster.py -------------------------------------------------------------------------------- /tests/test_juce_events/test_LockingAsyncUpdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_events/test_LockingAsyncUpdater.py -------------------------------------------------------------------------------- /tests/test_juce_events/test_Message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_events/test_Message.py -------------------------------------------------------------------------------- /tests/test_juce_events/test_MessageListener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_events/test_MessageListener.py -------------------------------------------------------------------------------- /tests/test_juce_events/test_MessageManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_events/test_MessageManager.py -------------------------------------------------------------------------------- /tests/test_juce_events/test_MultiTimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_events/test_MultiTimer.py -------------------------------------------------------------------------------- /tests/test_juce_events/test_Timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_events/test_Timer.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/__init__.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/data/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/data/logo.png -------------------------------------------------------------------------------- /tests/test_juce_graphics/reference_images/test_draw_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/reference_images/test_draw_rect.png -------------------------------------------------------------------------------- /tests/test_juce_graphics/reference_images/test_draw_rounded_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/reference_images/test_draw_rounded_rect.png -------------------------------------------------------------------------------- /tests/test_juce_graphics/reference_images/test_fill_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/reference_images/test_fill_all.png -------------------------------------------------------------------------------- /tests/test_juce_graphics/reference_images/test_fill_all_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/reference_images/test_fill_all_image.png -------------------------------------------------------------------------------- /tests/test_juce_graphics/reference_images/test_fill_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/reference_images/test_fill_rect.png -------------------------------------------------------------------------------- /tests/test_juce_graphics/reference_images/test_fill_rect_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/reference_images/test_fill_rect_area.png -------------------------------------------------------------------------------- /tests/test_juce_graphics/reference_images/test_fill_rect_gradient_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/reference_images/test_fill_rect_gradient_horizontal.png -------------------------------------------------------------------------------- /tests/test_juce_graphics/reference_images/test_fill_rect_gradient_horizontal_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/reference_images/test_fill_rect_gradient_horizontal_area.png -------------------------------------------------------------------------------- /tests/test_juce_graphics/reference_images/test_fill_rect_gradient_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/reference_images/test_fill_rect_gradient_vertical.png -------------------------------------------------------------------------------- /tests/test_juce_graphics/reference_images/test_fill_rect_gradient_vertical_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/reference_images/test_fill_rect_gradient_vertical_area.png -------------------------------------------------------------------------------- /tests/test_juce_graphics/reference_images/test_fill_rect_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/reference_images/test_fill_rect_image.png -------------------------------------------------------------------------------- /tests/test_juce_graphics/reference_images/test_fill_rect_image_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/reference_images/test_fill_rect_image_area.png -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_AffineTransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_AffineTransform.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_BorderSize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_BorderSize.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_Colour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_Colour.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_ColourGradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_ColourGradient.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_FillType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_FillType.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_Graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_Graphics.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_Justification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_Justification.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_Line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_Line.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_Parallelogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_Parallelogram.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_Path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_Path.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_PathStrokeType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_PathStrokeType.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_PixelARGB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_PixelARGB.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_PixelAlpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_PixelAlpha.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_PixelRGB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_PixelRGB.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_Point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_Point.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_Rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_Rectangle.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/test_RectangleList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/test_RectangleList.py -------------------------------------------------------------------------------- /tests/test_juce_graphics/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_graphics/utilities.py -------------------------------------------------------------------------------- /tests/test_juce_gui_basics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_gui_basics/__init__.py -------------------------------------------------------------------------------- /tests/test_juce_gui_basics/test_Button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_gui_basics/test_Button.py -------------------------------------------------------------------------------- /tests/test_juce_gui_basics/test_DocumentWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_gui_basics/test_DocumentWindow.py -------------------------------------------------------------------------------- /tests/test_juce_gui_basics/test_JUCEApplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_gui_basics/test_JUCEApplication.py -------------------------------------------------------------------------------- /tests/test_juce_gui_basics/test_KeyPress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/test_juce_gui_basics/test_KeyPress.py -------------------------------------------------------------------------------- /tests/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/popsicle/HEAD/tests/utilities.py --------------------------------------------------------------------------------