//------------------------------------------------------------------------------ // $Workfile: PropGridController.h $ // $Header: /SbjDev/SbjCore/PropGridController.h 7 11/12/08 2:22p Steve $ // // Copyright � 2008 SbjCat // All rights reserved. // // // *** Authors *** // Steve Johnson // // $Revision: 7 $ // //----------------------------------------------------------------------------- #pragma once #include "WndController.h" #define DEFAULT_PROPGRID_STYLES (WS_CHILD | WS_VISIBLE) namespace SbjCore { namespace Mvc { namespace PropGrid { class PropMap; struct ControllerImpl; class AFX_EXT_CLASS Controller : public WndController { DECLARE_DYNCREATE(Controller) public: Controller(DWORD dwStyle = DEFAULT_PROPGRID_STYLES); virtual ~Controller(void); public: void AddPropMap(LPCTSTR lpszItemType, PropMap* pPropMap); public: CMFCPropertyGridCtrl* GetPropGridCtrl() const; void SetStyle(const DWORD dwStyle); DWORD GetStyle() const; public: void PropertyChanged(CMFCPropertyGridProperty* pProp) const; protected: virtual void OnInitialize(); virtual void OnPropertyChanged(CMFCPropertyGridProperty* pProp) const; private: struct ControllerImpl* const m_pImpl; }; } } } //*** Modification History *** // $Log: /SbjDev/SbjCore/PropGridController.h $ // // 7 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 use 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.
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
Skills that self-taught computer programmers lack