Click here to Skip to main content
Click here to Skip to main content

Delphi/VB/VS.NET-style ObjectInspector Control

By , 4 Aug 2001
 

Sample Image #1 Sample Image #2

Introduction

This control is an implementation of a Delphi/VB/VS.NET - Style Object-Inspector. I use this control in many of my applications' property pages to let the user quickly change application settings. I've tried to keep things as simple as possible, although usage of this control may look a bit strange at first sight - the interfaces of the control doesn't resemble the interfaces of other MFC controls, since it's intended to be special purpose control for changing properties only.

The documentation is sparse, because I do not have much time to write documentation. However, the included demo is hopefully a help in understanding how to use the features of the control.

Features

The control supports many build-in property types (although adding your own propery-types should be no problem) :

  • bool
  • short
  • int
  • float
  • double
  • CString
  • CStringList
  • COLORREF
  • COleDateTime

Usage

To use this control in your own application, add CObjectInspector.cpp, CColorButton.cpp and CColourPopup.cpp to your project file. Open the resource editor and place a custom control on your dialog. In the control's properties enter "ObjectInspectorCtrl" as window-classname. Add a CObjectInspector variable to your dialog class :

CObjectInspector m_OI;

Add a DDX_Control handler to your DoDataExchange function :

void CMyDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CMyDlg)
	DDX_Control(pDX, IDC_OI, m_OI);
	//}}AFX_DATA_MAP
}

Override OnInitDialog to customize the Object-Inspector and to add groups and properties :

BOOL CMyDialog::OnInitDialog()
{
	CDialog::OnInitDialog();

	CObjectInspector::CProperty *pGroup;
	
	// Create new property group
	m_OI.AddProperty (pProp = new CObjectInspector::CProperty("Group"));

	// Add properties to the group
	pProp->AddProperty (new CObjectInspector::CProperty("Integer-Value", &m_nIntValue));
	pProp->AddProperty (new CObjectInspector::CProperty("Bool Value", &m_bBoolVal));
}

Override OnNotify to receive notification messages from the control :

BOOL CMyDialog::OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult) 
{
    if (wParam == IDC_OI)
    {

       CObjectInspector::NM_OIVIEW *nmHdr = (CObjectInspector::NM_OIVIEW*) lParam;

       // OIVN_ITEMCHANGED is sent after the user has changed a property
       if (nmHdr->hdr.code == OIVN_ITEMCHANGED)
       {
           // Do some stuff (use nmHdr->pProperty to access the altered property)
       }

       // OIVN_ITEMCHANGING is sent when the user is currently editing a property
       if (nmHdr->hdr.code == OIVN_ITEMCHANGING)
       {
           // Do some stuff (use nmHdr->pProperty to access the currently edited property)
       }
    }
	
    return CDialog::OnNotify(wParam, lParam, pResult);
}

Known issues

Navigation with the cursor keys is quite unsatisfactorily.

Acknowledgments

  • Chris Maunder for his color picker
  • Keith Rule for his Memory DC class

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

About the Author

Gunnar Bolle
Web Developer
Germany Germany
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralRemaining Errors that Need to be Fixed....memberchris17529 Apr '06 - 6:09 
GeneralFix: Entering in negative values for Shorts and Integersmemberchris17521 Apr '06 - 6:24 
GeneralFix: Entering in negative values for Floats and Doublesmemberchris17521 Apr '06 - 6:07 
In the ObjectInspector.h file find the constructors for the float and double values. Change the "Min" to be fMin = ((-1 *FLT_MAX)+1) and dblMin = ((-1 *DBL_MAX)+1). Note there are 2 contructors for floats and 2 constructors for doubles.
 
I am not sure if theses are the greatest negative values but they work.
 
Chris
 
-- modified at 12:07 Friday 21st April, 2006
QuestionHow to change the Scroll Amountmemberchris17521 Apr '06 - 6:02 
GeneralColor Popup Flaw...memberchris17521 Apr '06 - 5:59 
GeneralChange This to Fix Check Buttonmemberchris17519 Apr '06 - 3:39 
GeneralUse this to update data after closing controlmemberchris17519 Apr '06 - 1:51 
GeneralBug in CalculateScrollRangememberEinstand15 Aug '05 - 23:13 
GeneralBug reports part 2. - The FixesmemberYogurt11 Aug '03 - 3:37 
GeneralBug reports (even if the author doesn't update this article...)memberYogurt11 Aug '03 - 2:24 
Generalsmall bugsussDaniel Harth6 Jun '03 - 2:38 
QuestionUpdate?memberhero3blade26 May '03 - 16:31 
GeneralDelete Property - DynamicsussAnonymous2 Aug '02 - 23:50 
GeneralSomething wrong with the link.memberAnonymous25 Sep '01 - 23:24 
GeneralWin95 problemsmemberAnonymous6 Aug '01 - 9:41 
QuestionBroken link??memberAnonymous6 Aug '01 - 9:15 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 5 Aug 2001
Article Copyright 2001 by Gunnar Bolle
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid