My question is about OO design for javascript dhtml dom app.
There is a toolbar with 5 buttons.
You click on a button, and select an image.
Next you click anywhere on a div tag, and you drop a copy of that image.
When you're finished arranging your images, you can save this drawingdiv as JSON structure or save-page-as; you can also load previous div from json.
I want to abstract this app away from array notation
and DOM specifics, and have DOM parts use MVC pattern.
I'm not sure how to make these images into objects,
so you can have image view, text only, alternate images...
Should I make the toolbar a subclass of drawing div?
Please help me to organize this OOP, thanks.
