tags:

views:

1967

answers:

6

As far as I know, there isn't.

Do you know any?

+4  A: 

Look at this implementation.

CodeToGlory
CodeToGlory
Yup, seems to be a markdown bug alright. I simplified the Google Translate URL, should work now.
Mihai Limbășan
+3  A: 

A little different, but you can see the a MVP implementation here:

http://jazz-sdk.googlecode.com

Cesar Romero
+3  A: 

There is a model-gui-mediator framework available with the ti Object Persistence Framework.

MGM is similar to MVC. Graeme Geldenhuys has an article describing it at http://opensoft.homeip.net/articles/.

AFAIAA the MGM framework requires the use of tiOPF (not a bad thing, but it can make it harder to learn) but it should still demonstrate the basic concepts.

tiOPF is available at tiOPF.com. If you are interested, get the code from the repository as it is more up to date. There is a D2009 branch in the repository as well.

SeanX
+4  A: 

Do you really need a framework? MVC is just a pattern. You can look it up and implement it directly. I would suggest however that you implement MVP instead of MVC. MVP is a more modern variation of MVC that fits in better with environments such as Windows where the View does user input and output. (Unlike in MVC where the View only does output, and the Controller only does input.)

dangph
+11  A: 

Daniele Teti has a nice article about MVC in Delphi. The sample code also makes it very clear.

http://www.danieleteti.it/?cat=19

Erwin
Actually it is "Passive View", Passive View has no dependencies between view and model as MVC. But this is a really good introduction, so +1 from here.
mjustin
Yes, that example is about "Passive View" MVP variant. I'm plan to write a 2nd article about the same subject using the Dependency Injection pattern between view and presenter.
Daniele Teti
A: 

I know this is an old article, but here's another option: http://www.torry.net/pages.php?id=53 Look for: eMVC v.1.0

Brad