In MVC the model contains the data and logic of the domain, the view displays information to the user and offers widgets for interaction like buttons and the controller handles input like button presses.
But where does the state of the view belong to?
For example if you have a chess game you might want to keep track of which figure is selected and which fields are highlighted (you might want to highlight possible moves).
I read about presentation model http://martinfowler.com/eaaDev/PresentationModel.html which is one way of doing it.
I can think of other ways to do it:
- using a second model, which only saves selections and highlights
- putting this information into the view (but then we have some kind of logic in the GUI)
- putting it into the controller (but then we need to manually sync the view with the controller state)
- wrapping the domain model (or inheriting from it) and add selection and highlights to the other data (this somewhat is presentation model)
But what is the "normal" way of doing this in mvc (if there is such a thing as a normal way), or which way do you use or recommend?