Tagged Questions
4
votes
6answers
211 views
Is MVC ever considered/applied system-wide?
I was having a discussion with a colleague and he bought up the topic of MVC and the use of ViewModels in ASP.NET MVC.
The discussion was that, in an n-layer architecture, the UI, Business Layer and ...
2
votes
1answer
140 views
Ambiguous use of “Controller” in MVC
I have heard two separate uses for the term controller when speaking of the Model View Controller methodology.
An intermediary section of code that communicates between the Model and View, tying ...
0
votes
1answer
184 views
ASP.NET MVC Web Site & WCF Web Service - Sharing functionalities
I have the following situation: I have to create a website and a web service that will share a part of the functionalities.
This is why I do not want to write code twice.
I have thought of the ...
2
votes
2answers
181 views
Is it reasonable to build applications (not games) using a component-entity-system architecture?
I know that when building applications (native or web) such as those in the Apple AppStore or Google Play app store that it's very common to use a Model-View-Controller architecture.
However, is it ...
2
votes
1answer
319 views
PyQt application architecture
I'm trying to give a sound structure to a PyQt application that implements a card game. So far I have the following classes:
Ui_Game: this describes the ui of course and is responsible of
reacting ...
2
votes
1answer
925 views
Modular enterprise architecture using MVC and Orchard CMS
I'm making a large scale MVC application using Orchard. And I'm going to be separating my logic into modules. I'm also trying to heavily decouple the application for maximum extensibility and ...
3
votes
2answers
276 views
Questions about identifying the components in MVC
I'm currently developing an client-server application in node.js, Express, mustache and MySQL. However, I believe this question should be mostly language and framework agnostic.
This is the first ...
5
votes
3answers
3k views
Best Architecture for ASP.NET WebForms Application
I have written an ASP.NET WebForms portal for a client. The project has kind of evolved rather than being properly planned and structured from the beginning. Consequently, all the code is mashed ...
2
votes
2answers
192 views
Question about modeling with MVC (the pattern, not the MS stuff / non web)
I'm working on an application in which I'm looking to employ the MVC pattern, but I've come up against a design decision point I could use some help with.
My application is going to deal with the ...
4
votes
2answers
246 views
Who should register input listeners: the controller or the view? (MVC)
I'm using an (C++) SDK (Marmalade) and building a project around the MVC pattern. On my app, user input listeners may be registered on certain UI elements/widgets/etc providing a proper callback ...
8
votes
4answers
1k views
On MVC can several views have the same controller or one view must have one unique controller?
I'm having some questions while designing a architecture for a project around MVC. (It's a C++/Marmalade SDK project, I'm not using any particular MVC framework, I'm making one.)
On several articles ...
7
votes
2answers
824 views
Should the controller pass data to a view in the MVC pattern?
I work with ASP.NET MVC (and other web-based MVC implementations) quite often, but this is something I've never been sure of: Should controller and view communicate?
Of course the controller should ...
0
votes
1answer
268 views
MVC JSon Request architecture
I am finding myself building up a whole bunch of JSON calls all through my application, which are basically actions spread across various controllers. I am considering creating a JSON Controller to ...
3
votes
1answer
548 views
Are JavaScript MVC Frameworks only for 'single-page' apps?
I've been looking into several of the JavaScript MVC Frameworks (Backbone.js, Spine, SproutCore,etc.) and it seems to me that all of these are designed to act as 'single-page' applications. All of the ...
7
votes
3answers
249 views
Architecture of interaction modes (“paint tools”) for a 3D paint program
We are developing a Qt-based application to navigate through and paint on a volume treated as a 3D pixel graphic. The layout of the app consists of three orthogonal slice views on which the user may ...