Click here to Skip to main content
15,881,715 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 109K   1.3K   51  
A Model-View-Controller Framework that integrates with the MFC Doc/View architecture
//------------------------------------------------------------------------------
// $Workfile: Column.cpp $
// $Header: /DevNet/Tartus/Tdf/Mvc/ListCtrl/Column.cpp 2     5/01/06 4:16p Steve $
//
//	Copyright � 2005 Tartus, Inc.
// All rights reserved.
//
// The information contained herein is confidential, proprietary to
// Tartus, Inc., and considered a trade secret as defined
// in section 499C of the penal code of the State of California.  Use
// of this information by anyone other than authorized employees of
// Tartus, Inc. is granted only under a written non-disclosure
// agreement, which expressly prescribes the scope and manner of such
// use.
//
// *** Authors ***
//	 Neal O'Hara
//	 John La Porta
//	 Zhimin Lin
//	 Andreas Christmann
//	 Steve Johnson
//	 Tartus, Inc.
//
// $Revision: 2 $
//
//-----------------------------------------------------------------------------

#include "stdafx.h"
#include "Column.h"

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

namespace SbjCore
{
	namespace Mvc
	{
		/// private implementation struct for the Column class
		struct ColumnImpl
		{
			bool bCanEdit;

			ColumnImpl(bool b) :
				bCanEdit(b)
			{
			}

			virtual ~ColumnImpl()
			{
			}

		};

		/// \class TDF::MVC::Column incomplete abstract class 

		/// ctor  
		Column::Column() :
			m_pImpl(new ColumnImpl(false))
		{
		}

		/// ctor  
		Column::Column(LPCTSTR pszText, 
			int cx, 
			int fmt /*= LVCFMT_CENTER*/, 
			int iImage /*= -1*/,
			int iSubItem /*= -1*/, 
			int iOrder /*= 0*/,
			bool bCanEdit /*= false*/) :
			LVColumn(pszText, cx, fmt, iImage, iSubItem, iOrder),
			m_pImpl(new ColumnImpl(bCanEdit))
		{
		}


		/// dtor
		Column::~Column()
		{
			try
			{
				delete m_pImpl;
			}
			catch(...)
			{
			}
		}
		
		/// returns true if column can be edited
		bool Column::CanEdit()
		{
			return m_pImpl->bCanEdit;
		}

		/// sets the Editable state of the column
		void Column::SetEditable(bool b)
		{
			m_pImpl->bCanEdit = b;
		}
		
		

	}
}



//*** Modification History ***
// $Log: /DevNet/Tartus/Tdf/Mvc/ListCtrl/Column.cpp $
// 
// 2     5/01/06 4:16p Steve
// Added DragNDrop, EventMgr, TreeCtrl, and ListCtrl
// 
// 1     5/01/06 10:41a Steve
// 
// 1     4/21/06 10:17a Steve
// 
// 1     4/21/06 10:15a Steve
// 
// 1     4/06/06 5:21p Steve
// 
// 1     8/03/05 4:34p Steve
// 
// 1     6/09/05 2:47p Steve
// Checking in for delivery to Microforensics

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