CComCompositeControl Class

 

The latest version of this topic can be found at CComCompositeControl Class.

This class provides the methods required to implement a composite control.

Important

This class and its members cannot be used in applications that execute in the Windows Runtime.

Syntax

template <class T>  
class CComCompositeControl : public CComControl<T,CAxDialogImpl<T>>

Parameters

T
Your class, derived from CComObjectRoot or CComObjectRootEx, as well as from any other interfaces you want to support for your composite control.

Members

Public Constructors

Name Description
CComCompositeControl::CComCompositeControl The constructor.
CComCompositeControl::~CComCompositeControl The destructor.

Public Methods

Name Description
CComCompositeControl::AdviseSinkMap Call this method to advise or unadvise all controls hosted by the composite control.
CComCompositeControl::CalcExtent Call this method to calculate the size in HIMETRIC units of the dialog resource used to host the composite control.
CComCompositeControl::Create This method is called to create the control window for the composite control.
CComCompositeControl::CreateControlWindow Call this method to create the control window and advise any hosted control.
CComCompositeControl::SetBackgroundColorFromAmbient Call this method to set the background color of the composite control using the container's background color.

Public Data Members

Name Description
CComCompositeControl::m_hbrBackground The background brush.
CComCompositeControl::m_hWndFocus The handle of the window that currently has focus.

Remarks

Classes derived from class CComCompositeControl inherit the functionality of an ActiveX composite control. ActiveX controls derived from CComCompositeControl are hosted by a standard dialog box. These types of controls are called composite controls because they are able to host other controls (native Windows controls and ActiveX controls).

CComCompositeControl identifies the dialog resource to use in creating the composite control by looking for an enumerated data member in the child class. The member IDD of this child class is set to the resource ID of the dialog resource that will be used as the control's window. The following is an example of the data member that the class derived from CComCompositeControl should contain to identify the dialog resource to be used for the control's window:

   enum { IDD = IDD_MYCOMPOSITE };

Note

Composite controls are always windowed controls, although they can contain windowless controls.

A control implemented by a CComCompositeControl-derived class has default tabbing behavior built in. When the control receives focus by being tabbed to in a containing application, successively pressing the TAB key will cause the focus to be cycled through all of the composite control's contained controls, then out of the composite control and on to the next item in the tab order of the container. The tab order of the hosted controls is determined by the dialog resource and determines the order in which tabbing will occur.

Note

In order for accelerators to work properly with a CComCompositeControl, it is necessary to load an accelerator table as the control is created, pass the handle and number of accelerators back into IOleControlImpl::GetControlInfo, and finally destroy the table when the control is released.

Example

   // Example for overriding IOleControlImpl::GetControlInfo()
   // This example uses the accelerator table from the project resources
   // with the identifier IDR_ACCELTABLE
   // Define GetControlInfo() in the header of your composite 
   // control class as follows:

   STDMETHOD(GetControlInfo)(CONTROLINFO* pCI)
   {
       // Load the accelerator table from the resource
       pCI->hAccel = LoadAccelerators(_AtlBaseModule.GetResourceInstance(), 
          MAKEINTRESOURCE(IDR_ACCELTABLE));

       if (pCI->hAccel == NULL)
           return E_FAIL;

       // Get the number of accelerators in the table
       pCI->cAccel = (USHORT)CopyAcceleratorTable(pCI->hAccel, NULL, 0);
       // The following is optional if you want your control
       // to process the return and/or escape keys
       // pCI.dwFlags = CTRLINFO_EATS_RETURN | CTRLINFO_EATS_ESCAPE;
       pCI->dwFlags = 0;

       return S_OK;
   }

Inheritance Hierarchy

WinBase

CComControlBase

CComControl

CComCompositeControl

Requirements

Header: atlctl.h

CComCompositeControl::AdviseSinkMap

Call this method to advise or unadvise all controls hosted by the composite control.

HRESULT AdviseSinkMap(bool bAdvise);

Parameters

bAdvise
True if all controls are to be advised; otherwise false.

Return Value

S_OK
All controls in the event sink map were connected or disconnected from their event source successfully.

E_FAIL
Not all controls in the event sink map could be connected or disconnected from their event source successfully.

E_POINTER
This error usually indicates a problem with an entry in the control's event sink map or a problem with a template argument used in an IDispEventImpl or IDispEventSimpleImpl base class.

CONNECT_E_ADVISELIMIT
The connection point has already reached its limit of connections and cannot accept any more.

CONNECT_E_CANNOTCONNECT
The sink does not support the interface required by this connection point.

CONNECT_E_NOCONNECTION
The cookie value does not represent a valid connection. This error usually indicates a problem with an entry in the control's event sink map or a problem with a template argument used in an IDispEventImpl or IDispEventSimpleImpl base class.

Remarks

The base implementation of this method searches through the entries in the event sink map. It then advises or unadvises the connection points to the COM objects described by the event sink map's sink entries. This member method also relies on the fact that the derived class inherits from one instance of IDispEventImpl for every control in the sink map that is to be advised or unadvised.

CComCompositeControl::CalcExtent

Call this method to calculate the size in HIMETRIC units of the dialog resource used to host the composite control.

BOOL CalcExtent(SIZE& size);

Parameters

size
A reference to a SIZE structure to be filled by this method.

Return Value

TRUE if the control is hosted by a dialog box; otherwise FALSE.

Remarks

The size is returned in the size parameter.

CComCompositeControl::Create

This method is called to create the control window for the composite control.

HWND Create(
    HWND hWndParent,
    RECT& /* rcPos */,
    LPARAM dwInitParam = NULL);

Parameters

hWndParent
A handle to the parent window of the control.

rcPos
Reserved.

dwInitParam
Data to be passed to the control during control creation. The data passed as dwInitParam will show up as the LPARAM parameter of the WM_INITDIALOG message, which will be sent to the composite control when it gets created.

Return Value

A handle to the newly created composite control dialog box.

Remarks

This method is usually called during in-place activation of the control.

CComCompositeControl::CComCompositeControl

The constructor.

CComCompositeControl();

Remarks

Initializes the CComCompositeControl::m_hbrBackground and CComCompositeControl::m_hWndFocus data members to NULL.

CComCompositeControl::~CComCompositeControl

The destructor.

~CComCompositeControl();

Remarks

Deletes the background object, if it exists.

CComCompositeControl::CreateControlWindow

Call this method to create the control window and advise any hosted controls.

virtual HWND CreateControlWindow(
    HWND hWndParent,
    RECT& rcPos);

Parameters

hWndParent
A handle to the parent window of the control.

rcPos
The position rectangle of the composite control in client coordinates relative to hWndParent.

Return Value

Returns a handle to the newly created composite control dialog box.

Remarks

This method calls CComCompositeControl::Create and CComCompositeControl::AdviseSinkMap.

CComCompositeControl::m_hbrBackground

The background brush.

HBRUSH m_hbrBackground;

CComCompositeControl::m_hWndFocus

The handle of the window that currently has focus.

HWND m_hWndFocus;

CComCompositeControl::SetBackgroundColorFromAmbient

Call this method to set the background color of the composite control using the container's background color.

HRESULT SetBackgroundColorFromAmbient();

Return Value

Returns S_OK on success, or an error HRESULT on failure.

See Also

CComControl Class
Composite Control Fundamentals
Class Overview