Click here to Skip to main content
Licence 
First Posted 26 Nov 1999
Views 65,109
Bookmarked 44 times

Template class for 'Property Browser'- like property pages for ATL ActiveX Controls

By | 26 Nov 1999 | Article
Allows you to easily create property pages for ActiveX controls

Sample Image

Developing ActiveX Controls I always was unhappy to spend a fair amount of time to monotonous GUI work designing and implementing a property pages. Eventually I wrote this class that works in most cases as a universal property page for any ATL-based ActiveX Control. The prototype for this class is property browser window known for to any Visual Basic developers.

How it works:

Generally, this class uses IPropertyPage::SetObjects and queries the control's IDispatch::GetTypeInfo to enumerate properties. Currently, this template class can handle the following kinds of properties: Simple types such as long, short, text(BSTR), ect. Font (IFontDisp) OLE_COLOR Picture (IPictureDisp) enums boolean (VARIANT_BOOL)

Current implementation don't display properties that has [hidden] or [nonbrowsable] attributes as well as indexed properties and properties of custom types (IFoo* or similar). The control's default interface should be dual and derived from IDispatch. If you use enumerated properties, the control must support IPerPropertyBrowsing::GetPredefinedStrings and IPerPropertyBrowsing::GetPredefinedValue (look at the demo project for a sample) The main template class CPropertyBrowserPage is derived from both IPropertyPageImpl and CDialogImpl and uses some other helper classes that is briefly described below:

  • CPropBrowseWnd class is a owner-drawn listbox that displays properties grid and handles property selections, start/stop editing, ect. It is a main GUI window and CPropertyBrowserPage creates it in OnInitDialog.
  • CPBProperty is a simple class for storage properties attributes like name, type, current value and "dirty" status.
  • CPBPropertyHolder helper class is just a very simple container (array) of CPBProperty objects.
  • CPBColorPicker class is popup color picker window that allow user to choose color either from palette or from system's colors set.
  • CPBDropListBox class works together with in-place edit window to resemble combo-box like interface
  • PBDib class generally wasn't developed by me, this class encapsulates DIB manipulations API

How to use:

  1. Copy following files to your project's directory:

    • PropertyBrowserPage.h
    • PropertyBrowserPage.cpp
    • PBDib.h
    • PBDib.cpp
    and add *.cpp files to the project.
  2. Select "New ATL Object" from the Insert menu. Select "Property Page" and fill all fields Wizard requires. (For example, assume you choose "CDemoCtrlPage" as the name of your page's class)
  3. Go to CDemoCtrlPage class declaration and modify base classes list as following

    class ATL_NO_VTABLE CDemoCtrlPage :
    public CComObjectRootEx<CComSingleThreadModel>,
    public CComCoClass<CDemoCtrlPage, &CLSID_DemoCtrlPage>,
    //	public IPropertyPageImpl, <--- this lines should be removed
    //	public CDialogImpl 
    /* next line should be added*/
    public CPropertyBrowserPage<CDemoCtrlPage>
    next, change message map chain macro as following:
    BEGIN_MSG_MAP(CDemoCtrlPage)
    /* CHAIN_MSG_MAP(IPropertyPageImpl<CDemoCtrlPage>) <--- this line should be removed*/ 
    CHAIN_MSG_MAP(CPropertyBrowserPage<CDemoCtrlPage>)/*<--- this line should be added*/
    END_MSG_MAP() 
    
    and remove Wizard-generated CDemoCtrlPage::Apply() method and finaly don't forget to include PropertyBrowserPage.h
  4. Add following macro in your control's class property map
    	PROP_PAGE(CLSID_DemoCtrlPage)
    
  5. Go to Wizard-generated page's dialog template and remove all child controls.
  6. Please note that this class uses some C RTL code that makes _ATL_MIN_CRT directive impossible so you have to remove it.

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

Vladimir Shcherbakov

Web Developer

United States United States

Member



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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionDoes this work in windowless controls? PinmemberArunKumar Yalamarthy3:23 5 Jul '07  
GeneralGreat example Pinmembersunnywu511:52 22 Jun '07  
QuestionHow to call Activex Dll in MFC Dialog application? PinmemberAshwin kumar Gurujala18:30 5 Dec '05  
AnswerRe: How to call Activex Dll in MFC Dialog application? PinmemberRajam Kiran2:03 10 Nov '06  
Smile | :) Register the ActiveX Control first.
While compling it shows the register information in output window.otherwise goto Tools and select "Register Control Option" and check it man
QuestionHow can i use it with a ATL com without any property page PinmemberInam20:06 8 Feb '04  
Generalgood but.... PinmemberTom Mason4:32 3 Aug '01  
GeneralExcellent! PinmemberRafael Gómez Blanes6:17 31 May '01  
GeneralProperty Browser PinsussDan Phalen16:35 18 Aug '00  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 27 Nov 1999
Article Copyright 1999 by Vladimir Shcherbakov
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid