Click here to Skip to main content
15,880,392 members
Articles / Desktop Programming / MFC
Article

PropertyViewLib

Rate me:
Please Sign up or sign in to vote.
4.89/5 (60 votes)
5 Aug 20054 min read 447.8K   5.8K   121   217
A control for easy property control.

Sample Image

Introduction

This control lets you edit variables of objects. The control is designed to ease as much pain as possible, and as a result, only a single line of code is needed to represent each property in the control. Yes, other property controls are out there already, but this one, in my humble opinion, offers exceptional ease of use. Please comment in any way you like.

Using the code

I'll let the code speak for itself, one code strip tells more than a thousand words, so let's dig in.

The IPropertyHost interface

The control is all about implementing the IPropertyHost interface. Objects that need be represented in the property control, must implement this interface. The control will talk to the represented object through this interface.

//To have objects represented in the control, implement this interface
//and SetPropertyHost() on the control. The control will shortly after
//call GetProperties() from the parsed in object, in where you list
//the properties (data members) og the object.
class IPropertyHost
{

public:    

   //The control will ask hosts for propertylist here. This is done when
   //propertyhost is set in the control. Add property items to the list
   //through the parsed in list.
   virtual void GetProperties( EPropList& PropList )
   {
      //add variables to the proplist
   }

   //Called from the view when the property is changing to allow veto from
   //property host. Return true if the change is ok, else false. Override
   //if special constraints are bound to the property. This default
   //implementation allows for any change.
   virtual bool PropertyChanging( const void* pProperty , void* pNewValue )
   {
      return true;    //yes, please change
   }

   //the control will ask you if the property is enabled each time it is
   //redrawn. This enables you to disable a property on the fly.
   virtual bool IsPropertyEnabled( const void* pProperty )
   {
      return true;
   }
}

Getting objects represented in the control

This example shows essentials. Overriding GetProperties() is all that need be done to get started! As you can see, you pass the address of the variable, and the control will read and write to the member through this.

class SomeObject : public IPropertyHost
{

   int     m_nInteger;
   double  m_dAngle;
   int     m_nComboIndex;
   CString m_sText;
   
public:
   
   //
   // IPropertyHost
   //

   virtual void GetProperties( EPropList& PropList )
   {
      PropList.AddPropInt   ( this , "Integer" , &m_nInteger    );
      PropList.AddPropDouble( this , "Angle"   , &m_dAngle      );
      PropList.AddPropCombo ( this , "Combo"   , &m_nComboIndex )
      ->AddString( "Choise0" )
      ->AddString( "Choise1" )
      ->AddString( "Choise2" );
      PropList.AddPropString( this , "String"  , &m_sText       );
   }
   
   virtual bool PropertyChanging( const void* pProperty , void* pNewValue );
   virtual bool IsPropertyEnabled( const void* pProperty );

};

To represent objects in the control, let that object implement the IPropertyHost interface. In the above example, SomeObject implements the IPropertyHost interface and overrides GetProperties(). Call SetPropertyHost() on the control passing an instance of SomeObject, to have that instance represented. The control will shortly after, ask the property host (the SomeObject instance) to list its properties. This way, SomeObject is itself responsible for listing the relevant properties, within its own scope, to the user. Nothing else than GetProperties() function need be changed in order to add or remove properties.

Getting notified on changes

When the user edits a property, the property host itself is notified about the upcoming change, and can deny the change if inappropriate. The control will notify the host with a call to PropertyChanging(). Return true if the property can change the value.

//To get notified on property changes, override this
//function. If change is allowed, return true to the property
//control, telling it to actually apply the change.
virtual bool SomeObject::PropertyChanging( const void* pProperty ,
                                                 void* pNewValue )
{
   bool bPleaseChange = true;    //yes, change is ok!

   //if the property being changed is the combo box, i
   //may want to do something with the new index. the index
   //corrosponds the order in which I called AddString()
   if( pProperty == &m_nComboIndex )
   {
      int nNewIndex = *(int*)pNewValue;
      TRACE("combo index changing from %d to %d\n",
                       m_nComboIndex , nNewIndex );
   }

   //if angle is being edited, i'll allow change
   //only if new value is between 0 and 360.
   else if( pProperty == &m_dAngle )
   {
      bPleaseChange = ( 0 <= m_dAngle && m_dAngle < 360 );
   }

   //the property control will apply changes
   //to the variable if returning true here.
   return bPleaseChange;
}

The default PropertyChanging() implementation in IPropertyHost returns true, allowing all changes. Override this, only if you as a property host need be notified on changes, or if you want to deny a certain change.

Enabling and disabling properties on the fly

It is possible to gray out, disable, properties on the fly. On refresh, the control will ask the host if a property is enabled or not.

//to dynamically enable or disable properties, override
//this function. The control calls this function on
//the property host, for each property it draws.
virtual bool SomeObject::IsPropertyEnabled( const void* pProperty )
{
   bool bEnabled = true;

   //only enable angle property, if
   //combobox is at index 1.
   if( pProperty == &m_dAngle )
   {
      bEnabled = (m_nComboIndex==1);
   }

   return bEnabled;
}

The default IsPropertyEnabled() implementation returns true, enabling all properties always. Only override this if you need dynamic enabling or disabling. You can disable a property by default when adding the property to the property list in GetProperties(). This is useful if you have variables that the user can read, but never change. Additional information of some kind.

Points of Interest

Property types

There are more property types than those shown in the example. Custom property types are easily implemented by subclassing EProperty or a descendant like EIconTextButtonProperty.

Final words

If you find this code useful and use it in an application, I'd like to see a screenshot of your work. This will encourage me to continue working with the control, and make my day. Please send to 'ruskialt' at 'gmail' in the 'com' domain.

History

2005-07-27: Improved look and performance + various additional features

  • Better look & feel

    Strings that don't fit are now shortened and suffixed with "..." to fit. Flicker is reduced, now drawing on memory dc before copying to screen. Node openings now animated, nodes below parent nodes will fall to their new position. Splitters now change mouse cursor when hovering or dragging.

  • Performance enhancements

    The view will now totally skip drawing properties outside the view. Various calculations have been moved to only be calculated when 'dirty'.

  • Various minor new features

    Numeric types now support hex user input. Added 'special case text output' for all numeric types. Splitter added to enable comment pane resize. Multidouble property added to support monitoring a list of doubles. SetType() allows for specifying type of integers, just parse byte width and sign state of the integer in question.

  • Various bug fixes

    Combo box now opens its menu correctly when the view is scrolled. Thousand separator bug fixed. Scrollbars now update their sizes to fit both open and closed node states. Hosts adding child hosts using PropList.AddPropHost(this,&m_SomeHost) are now notified on child change.

2005-04-15: Initial release

  • Source and article released on CodeProject

    Finally this code is released. Thank you CodeProject, for this being possible.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Denmark Denmark
Began programming Amiga machine code in 1992. Was into demo programming and 3D graphics down to the pixel. Switched to PC, C++ and Java in the late 90's. Graduated B.Sc.EE in 2002, now working in maritime industry as a software engineer.

Comments and Discussions

 
GeneralRe: Displaying Varies? Pin
Jesper Knudsen3-Oct-05 2:16
Jesper Knudsen3-Oct-05 2:16 
GeneralRe: Displaying Varies? Pin
Aza3-Oct-05 3:05
Aza3-Oct-05 3:05 
GeneralRe: Displaying Varies? Pin
Jesper Knudsen4-Oct-05 8:05
Jesper Knudsen4-Oct-05 8:05 
GeneralRe: Displaying Varies? Pin
Aza4-Oct-05 22:19
Aza4-Oct-05 22:19 
GeneralRe: Displaying Varies? Pin
Jesper Knudsen4-Oct-05 22:34
Jesper Knudsen4-Oct-05 22:34 
GeneralMinor bug fix - StepIndentOut() Pin
Rolando Cruz23-Sep-05 16:41
Rolando Cruz23-Sep-05 16:41 
GeneralRe: Minor bug fix - StepIndentOut() Pin
Jesper Knudsen23-Sep-05 20:22
Jesper Knudsen23-Sep-05 20:22 
GeneralRe: Minor bug fix - StepIndentOut() Pin
Rolando Cruz24-Sep-05 4:24
Rolando Cruz24-Sep-05 4:24 
Hi,

Jesper Knudsen wrote:
If you're calling StepIndentOut() without having first called StepIndentIn(), something in your code is probably inconsistent. It's like pop without push.

The code I was working on would call StepIndentI() and eventually the corresponding StepIndentOut(), in the correct order and the first would always be called before the second. I would first insert a read only row, indent, add ComboList objects then follow up with StepIndentOut(). The problem occurs when I do not have any ComboList items to include within the indented rows. StepIndentOut() would then be called immediately after StepIndentIn(). This is when the odd behavior would occur. My solution seemed to be the only alternative I had at the time.

Jesper Knudsen wrote:
Thanks a lot for your comments and ideas, what are you working on?

Currently I am developing a Benefits Administration System for a large Behavioral Healthcare Provider here in Puerto Rico. I am using your control to display the User permissions to screens and reports. I'll send you a snapshot. (What is your email?)

I like your control very much. I created my own SomeObject files and added more functionality to it. Since I do not have an exact number of items to be displayed I ended up creating a CObject called CObjUserRights which gets generated everytime an object is added to your control. I have more information to store per object other than name and value. (Screen ID, User Right Value, etc).

Jesper Knudsen wrote:
BTW, this Calender control looks awesome!

Thanks :->

Rolando Suspicious | :suss:
GeneralRe: Minor bug fix - StepIndentOut() Pin
Jesper Knudsen24-Sep-05 5:14
Jesper Knudsen24-Sep-05 5:14 
GeneralControl Enhancment Suggestion Pin
Rolando Cruz22-Sep-05 16:06
Rolando Cruz22-Sep-05 16:06 
GeneralRe: Control Enhancment Suggestion Pin
Jesper Knudsen22-Sep-05 21:35
Jesper Knudsen22-Sep-05 21:35 
GeneralResizing columns Pin
Rolando Cruz22-Sep-05 11:28
Rolando Cruz22-Sep-05 11:28 
GeneralRe: Resizing columns Pin
Jesper Knudsen22-Sep-05 21:33
Jesper Knudsen22-Sep-05 21:33 
GeneralRe: Resizing columns Pin
Rolando Cruz25-Sep-05 10:26
Rolando Cruz25-Sep-05 10:26 
GeneralRe: Resizing columns Pin
Jesper Knudsen25-Sep-05 21:46
Jesper Knudsen25-Sep-05 21:46 
GeneralRe: Resizing columns Pin
Rolando Cruz26-Sep-05 3:05
Rolando Cruz26-Sep-05 3:05 
GeneralRe: Resizing columns Pin
Jesper Knudsen26-Sep-05 3:54
Jesper Knudsen26-Sep-05 3:54 
GeneralRe: Resizing columns Pin
Rolando Cruz26-Sep-05 4:00
Rolando Cruz26-Sep-05 4:00 
GeneralRe: Resizing columns Pin
Jesper Knudsen26-Sep-05 7:57
Jesper Knudsen26-Sep-05 7:57 
GeneralRe: Resizing columns Pin
Rolando Cruz26-Sep-05 9:50
Rolando Cruz26-Sep-05 9:50 
GeneralRe: Resizing columns Pin
Jesper Knudsen26-Sep-05 10:22
Jesper Knudsen26-Sep-05 10:22 
GeneralRe: Resizing columns Pin
Jesper Knudsen26-Sep-05 10:32
Jesper Knudsen26-Sep-05 10:32 
GeneralRe: Resizing columns Pin
Rolando Cruz26-Sep-05 10:38
Rolando Cruz26-Sep-05 10:38 
GeneralRe: Resizing columns Pin
Jesper Knudsen26-Sep-05 10:49
Jesper Knudsen26-Sep-05 10:49 
GeneralRe: Resizing columns Pin
Rolando Cruz26-Sep-05 11:12
Rolando Cruz26-Sep-05 11:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.