Skip to content

Commit

Permalink
working_with_juce: Split pages
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiashienzsch committed May 22, 2020
1 parent 72b6788 commit 85046a8
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 28 deletions.
19 changes: 13 additions & 6 deletions SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,20 @@
- [Create Project](chapters/setup/create_project.md)
- [Debugging](chapters/setup/debugging.md)
- [Documentation](chapters/setup/documentation.md)
- [Working with JUCE](chapters/working_with_juce.md)
- [User Interface](chapters/working_with_juce/user_interface.md)
- [DSP](chapters/working_with_juce/dsp.md)
- [Working with JUCE]()
- [User Interface]()
- [Component](chapters/working_with_juce/user_interface/component.md)
- [Look&Feel](chapters/working_with_juce/user_interface/look_and_feel.md)
- [Plug-in]()
- [Basics](chapters/working_with_juce/plugin/basics.md)
- [Parameter](chapters/working_with_juce/plugin/parameter.md)
- [DSP]()
- [Basics](chapters/working_with_juce/dsp/basics.md)
- [Create your own](chapters/working_with_juce/dsp/create_your_own.md)
- [Modules](chapters/working_with_juce/juce_modules.md)
- [Misc](chapters/working_with_juce/misc.md)
- [JUCE Modules](chapters/working_with_juce/juce_modules.md)
- [Example Projects](chapters/working_with_juce/example_projects.md)
- [Code snippets](chapters/working_with_juce/code_snippets.md)
- [Examples](chapters/working_with_juce/example_projects.md)
- [Snippets](chapters/working_with_juce/code_snippets.md)
- [Testing](chapters/testing.md)
- [Unit tests](chapters/testing/unit_test.md)
- [pluginval](chapters/testing/pluginval.md)
Expand Down
Empty file removed chapters/working_with_juce.md
Empty file.
13 changes: 0 additions & 13 deletions chapters/working_with_juce/dsp.md

This file was deleted.

5 changes: 5 additions & 0 deletions chapters/working_with_juce/dsp/basics.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# DSP Basics

- DSP module
- Gain example
- Compressor example
1 change: 1 addition & 0 deletions chapters/working_with_juce/dsp/create_your_own.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Create Your Own
5 changes: 5 additions & 0 deletions chapters/working_with_juce/plugin/basics.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Plugin Basics

- AudioProcessor
- Plug-ins
- VST/AU
7 changes: 7 additions & 0 deletions chapters/working_with_juce/plugin/parameter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Plugin Parameter

- ValueTree
- Parameters
- Undo
- Generic Editor
- Attachments
10 changes: 10 additions & 0 deletions chapters/working_with_juce/user_interface/component.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Component

- Basic Components
- Button
- Slider
- Label
- Combobox
- Projucer live build
- Tricks
- Animations
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
# UI
# Look&Feel

- Basic Components
- Button
- Slider
- Label
- Combobox
- Projucer live build
- Tricks
- Animations
- LookAndFeel
- Colour IDs
- Override functions
Expand Down

0 comments on commit 85046a8

Please sign in to comment.