Click here to Skip to main content
15,881,248 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 80.3K   2.4K   51  
A Model-View-Controller Framework that integrates with the MFC Doc/View architecture.
//------------------------------------------------------------------------------
// $Workfile: ItemDisplayModel.h $
// $Header: /SbjDev/SbjCore/ItemDisplayModel.h 2     11/12/08 2:22p Steve $
//
//	Copyright � 2008 SbjCat
// All rights reserved.
//
//
// *** Authors ***
//	 Steve Johnson
//
// $Revision: 2 $
//
//-----------------------------------------------------------------------------

#pragma once

namespace SbjCore
{
	namespace Mvc
	{
		namespace TreeView
		{
			struct ItemDisplayModelImpl;

			class AFX_EXT_CLASS ItemDisplayModel
			{
			public:
				ItemDisplayModel();

				ItemDisplayModel(LPCTSTR lpszText,								///< item text
					int nImgResID = -1,											///< resource ID for image
					int nImgResIDSelected = -1,									///< resource ID for selected image
					LPLOGFONT plogfont = NULL,									///< currently unused
					LPLOGFONT plogfontSelected = NULL,							///< currently unused
					COLORREF rgbTxt = GetSysColor(COLOR_WINDOWTEXT),			///< item text color
					COLORREF rgbBck = GetSysColor(COLOR_WINDOW),				///< item background color
					COLORREF rgbTxtSelected = GetSysColor(COLOR_WINDOWTEXT),    ///< selected item text color
					COLORREF rgbBckSelected = GetSysColor(COLOR_WINDOW));		///< selected item background color

				virtual ~ItemDisplayModel();

				virtual LPCTSTR GetItemText() const;							
				virtual LPLOGFONT GetFont() const;								
				virtual LPLOGFONT GetSelectedFont() const;						
				virtual COLORREF GetTextColor() const;							
				virtual COLORREF GetBackColor() const;							
				virtual COLORREF GetSelectedTextColor() const;					
				virtual COLORREF GetSelectedBackColor() const;					
				virtual int GetImageResID() const;								
				virtual int GetSelectedImageResID() const;

				void SetItemText(const LPCTSTR lpsz);
				void SetFont(const LPLOGFONT plf);
				void SetSelectedFont(const LPLOGFONT plf);
				void SetTextColor(const COLORREF rgb);
				void SetBackColor(const COLORREF rgb);
				void SetSelectedTextColor(const COLORREF rgb);
				void SetSelectedBackColor(const COLORREF rgb);
				void SetImageResID(const int n);
				void SetSelectedImageResID(const int n);

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

//*** Modification History ***
// $Log: /SbjDev/SbjCore/ItemDisplayModel.h $
// 
// 2     11/12/08 2:22p Steve
// Finished Generalization of Model  v2.0.1

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