Click here to Skip to main content
15,884,298 members
Articles / Desktop Programming / MFC

The SBJ MVC Framework - The Model, from Abstraction to Realization

Rate me:
Please Sign up or sign in to vote.
5.00/5 (19 votes)
20 Mar 2009CPOL19 min read 109.1K   1.3K   51  
A Model-View-Controller Framework that integrates with the MFC Doc/View architecture
#include "stdafx.h"
#include "WndMsgHandler.h"
#include "WndController.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

namespace SbjCore
{
	namespace Mvc
	{
		WndMsgHandler::~WndMsgHandler()
		{
			
		}

		WndController* WndMsgHandler::GetController() const
		{
			return static_cast<WndController*>(MessageHandler::GetController());
		}			
		
		/** HandlePreDefault calls WndMsgHandler's protected pure virtual OnWndMsgPreDefault method.  
			HandlePreDefault is called by the WndController's HandleWndMsgPreDefault method and should never 
			be called directly.

			\return non zero if message is handled and no further action should be taken
		*/
		LRESULT WndMsgHandler::HandleWndMsg(
			WPARAM wParam,								///< wparam value for the message
			LPARAM lParam,								///< lparam value for the message
			LRESULT* pResult)							///< if not NULL, the return of the message
		{
			return OnHandleWndMsg(wParam, lParam, pResult);
		}	

		/** HandlePreDefaultPrev calls HandlePreDefault on the previous handler.  This should be called from
			the overridden OnWndMsgPreDefault method.

			\return true if message is handled
		*/
		bool WndMsgHandler::HandleWndMsgPrev(
			WPARAM wParam,								///< wparam value for the message
			LPARAM lParam,								///< lparam value for the message
			LRESULT* pResult)							///< if not NULL, the return of the message
		{
			bool bRslt = false;
			WndMsgHandler* pPrevHandler = (WndMsgHandler*)GetPrevHandler();
			if (pPrevHandler != NULL)
			{
				bRslt = pPrevHandler->HandleWndMsg(wParam, lParam, pResult);
			}
			return bRslt;
		}
		
		bool WndMsgHandler::CallDefaultFirst()
		{
			return OnCallDefaultFirst();
		}
		
		
		/** OnHandleWndMsg is the abstract handler method for processing prior to default processing. 

			OnHandleWndMsg must be overridden in the derived handler. A call to HandleWndMsgPrev 
			should be made to assure any previous handlers are called. This method is called by the 
			public HandlePreDefault method and should never be called directly.

			\param wparam value for the message
			\param lparam value for the message				
			\param pResult if not NULL, the result of for the message
			
			\return true if message is handled
		*/
		//virtual LRESULT WndMsgHandler::OnHandleWndMsg(WPARAM wParam, LPARAM lParam, LRESULT* pResult) = 0;	
		
		
		bool WndMsgHandler::OnCallDefaultFirst()
		{
			return false;
		}
			
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
SBJ
United States United States
Real name is Steve Johnson. Programming since 1979. Started on a Heathkit Micro with a DEC LSI-11 and UCSD Pascal. Moved to PCs & DOS as soon as Turbo Pascal became available. Did some Assembly, ISR, TSR etc. All this while working for a Manufacturing Co. for 8 years. Had my own solo Co. doing barcode labeling software for 4 years (terrible business man, all I wanted to do was code). Since then working for various software companies. Moved to Windows around the time of 3.1 with Borland C then C++. Then on to VC++ and MFC, and just about anything I could get my hands on or had to learn for my job, and been at it ever since. Of course recently I've been playing with .NET, ASP, C#, WPF etc.

Comments and Discussions