GuiObjects
A C++ library to easily create GUI-editable objects
...The goal was to make each object "know" how it should be displayed and changed, so that a simple GUI tool can display complex objects, and new objects can be created without having to spend time creating the "widgets" for them.
The basic requirements was:
- The "GuiObjects" don't know which graphical toolkit (e.g. gtk) will be used to display them.
- The objects can be displayed without knowledge of what exactly they are.
- save/load/undo/etc. will be taken care of automatically.
In addition, because this is a project I started to train in C++:
- there will be no dynamic casting! ...