This class handles all aspects of the `Zeichnen` / `Radieren` functionality. It constructs `Drawer` objects on demand, manages their OpenGL infrastructure and chooses appropriate rendering targets.
**Usage**
Todo
- Construct one object at the start of the application with a fully initialized `Toolbox`
- In each frame, call `update(Toolbox&)`
**Constructors and Destructors**
Todo
-`DrawingHandler(Toolbox&)`
-**Notes**
`Toolbox` is needed to find shader sources and obtain handles to the damping and wave textures.
-`~DrawingHandler()`
**Public Function Members**
Todo
-`void update(Toolbox&)`
-**Description**:
Handles messages directed to it, parses events and takes the necessary actions (spawn / delete `Drawer`s, draw with `Drawer`s using correct infrastructure).
-**Preconditions**:
The object is initialized correctly.
-**Postconditions**:
The desired portions have been drawn to static damping and to the wave 1 texture.