Click here to Skip to main content
15,892,697 members
Articles / Desktop Programming / MFC

The SBJ MVC Framework - The Design View, Responding to Model Change

Rate me:
Please Sign up or sign in to vote.
4.87/5 (22 votes)
19 Mar 2009CPOL13 min read 81.1K   2.4K   51  
A Model-View-Controller Framework that integrates with the MFC Doc/View architecture.
//------------------------------------------------------------------------------
// $Workfile: CmdTargetController.h $
// $Header: /SbjDev/SbjCore/CmdTargetController.h 3     10/24/08 9:03a Steve $
//
//	Copyright � 2008 SbjCat
// All rights reserved.
//
//
// *** Authors ***
//	 Steve Johnson
//
// $Revision: 3 $
//
//-----------------------------------------------------------------------------

#pragma once

#include "Controller.h"


namespace SbjCore
{
	namespace UndoRedo
	{
		class Manager;
	}
	
	namespace Mvc
	{
		struct CmdTargetControllerImpl;

		/** 

		The CmdTargetController class provides Mvc message management for 
		ControlledCmdTargetT classes. When WM_COMMAND messages are received by the 
		ControlledCmdTargetT they are first routed to its CmdTargetController 
		so that the CmdMsgHandlers maintained in the message map of its base 
		Controller class can have an opportunity to handle the message before 
		the default CCmdTarget MFC message processing.
		*/
		class AFX_EXT_CLASS CmdTargetController : public Controller
		{
			DECLARE_DYNCREATE(CmdTargetController)
		public:
			CmdTargetController();
			
			virtual ~CmdTargetController();
			
		public:			

			void SetCmdTarget(CCmdTarget* p);

			CCmdTarget* GetCmdTarget() const;
			
		public:			
			
			bool RoutCmdMsg(UINT nID,			
				int nCode,						
				void* pExtra,						
				AFX_CMDHANDLERINFO* pHandlerInfo);	

		public:

			bool HandleCmdMsg(UINT nID);
			bool HandleCmdUIMsg(UINT nID, CCmdUI* pCmdUI);
			bool HandleNotifyMsg(NMHDR* pNMHdr, LRESULT* pResult);
		private:
			virtual bool OnRoutCmdMsg(UINT nID,		
				int nCode,							
				void* pExtra,						
				AFX_CMDHANDLERINFO* pHandlerInfo);	

		private:
			struct CmdTargetControllerImpl* const m_pImpl;
		};
		
	}
}

//*** Modification History ***
// $Log: /SbjDev/SbjCore/CmdTargetController.h $
// 
// 3     10/24/08 9:03a Steve

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