This topic is a little on the advanced side - it requires the use of C++ and some knowledge of COM - but I felt it was worth covering, as you can get some interesting results without a huge amount of effort.
Since we introduced the Properties Palette (once known as the Object Property Manager (OPM) and otherwise referred to as the Properties Window) back in AutoCAD 2004 (I think it was) it has become a core tool for viewing and editing properties of AutoCAD objects. In AutoCAD 2009 we have taken the concept further, allowing properties to be added to the "rollover tooltip" - for easy viewing of important properties - and to the "quick properties" panel - for editing core properties on object selection, rather than requiring a separate command or window.
All these features use COM to communicate with the objects they're viewing or editing. Various COM interfaces are used, whether the features are accessing static or dynamic properties. Static properties are the standard properties of a COM object: those exposed (typically) by the provider of the object, or at least of the COM wrapper. Dynamic properties are additional properties that can be provided by anyone for any object: the property provider simply chooses the objects they wish to store and expose dynamic properties for, and they then do so (typically by storing the data as extended entity data (XData) or via a custom object or XRecord in the extension dictionary of an object).
Static and dynamic properties are actually very nicely analogous to concepts from the world of object-oriented programming. Static properties are like the standard, compiled-in protocol for a C++ (or .NET, for that matter) class, while dynamic properties correspond to what in ObjectARX we call "protocol extensions" - additional methods that allow you to extend the compiled-in protocol of a class - and what are now called "extension methods" in C# 3.0.
A quick word on the "dynamic" nomenclature: dynamic properties are really a development-centric concept - the user shouldn't care whether something is static or dynamic. Now that dynamic blocks (a user-centric feature) have been introduced into AutoCAD, it can get a little confusing as to whether you're talking about properties of dynamic blocks or dynamic properties (of, say, blocks). So searching on ADN, etc., for help with dynamic (COM) properties is tricky: your best bet in general is to search for IDynamicProperty, the COM interface objects that must be implemented to provide dynamic properties for AutoCAD objects.
Today we're going to focus on getting dynamic properties onto the rollover tooltip and into the quick properties panel. As a starting point we're going to take the SimpleDynProps sample on the ObjectARX 2009 SDK (under samples/editor/simpledynprops). After building the project and loading the SimpleDynProps.arx module into AutoCAD 2009, run the ASSIGNDATA command and select some objects to which we will attach our custom properties with blank values (they'll be set to 0). The data gets stored in the extension dictionary of the selected objects, and it's from there that our dynamic property implementation will pick it up and display it in the Properties Window.
If you select one of the objects to which you've assigned data and run the PROPS command, you should see our dynamic properties in their own category at the bottom of the window, as shown in the image to the right.
So we can see now that dynamic properties can be implemented for standard AutoCAD objects, and these can be exposed by a custom ObjectARX module (if it's not loaded, the properties won't get shown).
Now let's make a few changes to our project, to enable these properties for the new property display/editing functionality in AutoCAD 2009. The modified project - along with the .arx file, for those who don't want to have to build it, but would like to get a feel for how it works - can be downloaded from here.
Start with SimpleProperty.h, which is the base for our custom dynamic property implementation. At the top of this file, we're going to make the CSimpleProperty class implement the new IFilterableProperty interface (inserted code in red):
class ATL_NO_VTABLE CSimpleProperty :
public CComObjectRootEx<CComSingleThreadModel>,
public IDynamicProperty,
public IFilterableProperty
{
public:
CSimpleProperty();
BEGIN_COM_MAP(CSimpleProperty)
COM_INTERFACE_ENTRY(IDynamicProperty)
COM_INTERFACE_ENTRY(IFilterableProperty)
END_COM_MAP()
Further down in the file we will add the public method that is required for the IFilterableProperty implementation (no need to put anything in red, here - it's all new):
STDMETHOD(ShowFilterableProperty)(THIS_
/*[in]*/DISPID dispID,
/*[in]*/AcFilterablePropertyContext context,
/*[out]*/BOOL* pbShow);
In my code I added this after the declaration for SetCurrentValueData and before the notifications section, but it can basically go anywhere as long as it's declared as public.
Then we switch across to the SimpleProperty.cpp file, where we'll implement the function:
STDMETHODIMP
CSimpleProperty::ShowFilterableProperty(
/*[in]*/DISPID dispID,
/*[in]*/AcFilterablePropertyContext context,
/*[out]*/BOOL* pbShow)
{
*pbShow = TRUE;
return S_OK;
}
The function definition can go pretty much anywhere in the class implementation, but I put it (once again) after SetCurrentValueData and before the implementation of the Connect/Disconnect notification event handlers.
Well, that's almost all there is to it. The implementation we've put in place says "these properties are available" for all the dynamic properties we expose, both for inclusion on rollover tooltips and in the quick properties panel. You could very easily check the dispID argument to see for which dynamic property the "filterable" property is being queried, or the context argument to see whether the question relates to rollover tooltips or quick properties. We're just keeping things simple, here.
The project should now build, and the output .ARX module should be loadable into AutoCAD. Once you've done so, if you launch the CUI command, you should be able to enable our properties for the rollover tooltip and/or the quick properties panel for various object types:
Using the CUI command I enabled our new properties for the Line object in both the rollover tooltip and the quick properties panel. Let's now take a look at both these in action - looking at objects who have data assigned via our ASSIGNDATA command.
Rollover tooltip:
Quick properties:
I haven't yet found a way to add custom properties into the "general properties" set - those shown for every class type. For now it seems you need to add them in at the individual class level (for each type of object), which does make this type of customization slightly less easy to roll-out. Hopefully I'm just missing something obvious, though - if so I'll follow up with a note or comment.