Can someone please explain in a way as simple as possible what the Model View Presenter pattern is? What is the difference with Model View Controller ? Which is best or for which purpose ?
Martin Fowler has a page on UI design patterns, in which he defines and then talks about MVC, MVP and other patterns.
http://martinfowler.com/eaaDev/uiArchs.html
To summarise the differences, Controllers in the MVC have more control over the UI, and handle events, while a presenter in the MVP is more passive, and just presents information through the UI.
In general there's not much difference, and often the line between them is blurry.
Dolphin Smalltalk used to have an MVC implementation but then they migrated to MVP.
Here's the technical paper that outlines what they did and why: http://www.object-arts.com/papers/TwistingTheTriad.PDF
IBM's Taligent system also used MVP - they describe what and why here: http://www.wildcrest.com/Potel/Portfolio/mvp.pdf
Fowler separates MVP into 2 patterns: Supervising Presenter and Passive View.
Aviad Ezra has a good article on this topic http://aviadezra.blogspot.com/2008/10/model-view-presenter-design-pattern.html.
I think MVP is better for desktop, and MVC is for web app, because in desktop, Model has the capability to raise the event