IOleInPlaceSiteWindowless  A8_3KN

The IOleInPlaceSiteWindowless interface is derived from and extends the IOleInPlaceSiteExEKNDB6 interface. IOleInPlaceSiteWindowless works with IOleInPlaceObjectWindowless9KWKL which is implemented on the windowless object. Together, these two interfaces provide services to a windowless object from its container allowing the windowless object to:

    process window messages

    participate in drag and drop operations

    perform drawing operations

 

Having a window can place unnecessary burdens on small objects, such as controls. It prevents an object from being non-rectangular. It prevents windows from being transparent. It prevents the small instance size needed by many small controls.

A windowless object can enter the in-place active state without requiring a window or the resources associated with a window. Instead, the object s container provides the object with many of the services associated with having a window.

Windowless object model

Windowless objects are an extension of normal compound document objects. They follow the same in-place activation model and share the same definitions for the various OLE states, with the difference that they do not consume a window when they enter the in-place and UI active states. They are required to comply with the OLE compound document specification, including in-place and UI activation.

Windowless objects require special support from their container. In other words, the container has to be specifically written to support this new kind of object. However, windowless objects are backward compatible with down level containers. In such containers, they simply create a window when active and behave as a normal compound document object.

As with other compound document objects, windowless objects need to be in-place active to get mouse and keyboard messages. In fact, since an object needs to have the keyboard focus to receive keyboard messages, and having the keyboard focus implies being UI active for an object, only UI active objects will actually get keyboard messages. Non-active objects can still process keyboard mnemonics.

Since windowless objects do not have a window, they rely on their container to receive window messages for them. The container dispatches its own window messages to the appropriate embedded, windowless object through calls to IOleInPlaceObjectWindowless methods. Similarly, windowless objects can obtain services from their container such as capturing the mouse, setting the focus, getting a device context in which to paint, and so on. The control calls IOleInPlaceSiteWindowless methods. In addition, the container is responsible for drawing any border hatching as well as the grab handles for the control.

These two interfaces are derived from existing interfaces. By extending existing interfaces rather than creating new ones, no new VTable pointer is added to the object instance, helping to keep the instance size small.

Client and server negotiations with windowless objects

When a windowless object gets in-place activated, it should query its site for the IOleInPlaceSiteWindowless interface. If this interface is supported, the object calls IOleInPlaceSiteWindowless::CanWindowlessActivate to determine if it can proceed and in-place activate without a window.

If the container does not support IOleInPlaceSiteWindowless or if the IOleInPlaceSiteWindowless::CanWindowlessActivate method returns S_FALSE, the windowless object should behave like a normal compound document object and create a window.

The container can get the window handle for an embedded object by calling IOleWindow::GetWindow2MLJP1W. This method should fail (return E_FAIL) for a windowless object. However, a container cannot be sure that the object is windowless by calling this method. The object may have a window but may not have created it yet. Many existing objects only create their window after calling the OnInPlaceActivate method on their site object.

Consequently, a windowless object must call the new IOleInPlaceSiteEx::OnInPlaceActivateEx method on its site object, instead of OnInPlaceActivate. The dwFlags parameter for this new method contains additional information in the ACTIVATEFLAGS enumeration. The ACTIVATE_WINDOWLESS enumeration value indicates that the object is activated without a window. Containers can cache this value instead of calling the GetWindow method on the IOleWindow interface repeatedly.

Message dispatching

Windowless objects rely on their containers to dispatch window messages to them, capture the mouse, and get the keyboard focus. The container calls IOleInPlaceObject::OnWindowMessage to dispatch a window message to a windowless object. This method is similar to the SendMessage Windows API function except that it does not require an HWND parameter and it returns both an HRESULT and a LRESULT.

A windowless object must not call the DefWindowProc Windows API function directly. Instead, it calls IOleInPlaceSiteWindowless::OnDefWindowMessage to invoke the default action, for example with WM_SETCURSOR or WM_HELP that should be propagated back up to the container. Thus, the container has a chance to handle the message before the object processes it.

For mouse messages, the object calls IOleInPlaceSiteWindowless::Set Capture to obtain the mouse capture and IOleInPlaceSiteWindowless::SetFocus to get the keyboard focus.

A windowless object handles accelerators and mnemonics as follows:

Accelerators

The UI active object checks for its own accelerators in IOleInPlaceActiveObject::TranslateAcceleratorM_K237. A windowless object does the same. However, a windowless object cannot send a WM_COMMAND message to itself, as a windowed object would do. Therefore, instead of translating the key to a command, a windowless object should simply process the key right away.

Except for that one difference, windowless objects should implement the IOleInPlaceActiveObject::TranslateAccelerator method as defined in the OLE specifications. In particular, a windowless object should pass the accelerator message up to its site object if it does not wish to handle it. The windowless object and returns S_OK if the message got translated and S_FALSE if not. In the case of a windowless object, the message is processed instead of translated. Non translated messages will come back to the object through the IOleInPlaceObjectWindowless::OnWindowMessage method.

Note that because the container s window gets all keyboard input, a UI active object should look for messages sent to that window to find those it needs to process in its IOleInPlaceActiveObject::TranslateAccelerator method. An object can get its container s window by calling IOleWindow::GetWindow.

Mnemonics

Control mnemonics are handled the same way whether the control is windowless or not. The container gets the control mnemonic table by  calling IOleControl::GetControlInfo55DN_UW and then calls IOleControl::OnMnemonic48Z__L7 when it receives a key combination that matches a control mnemonic.

Drag & drop onto windowless objects

Since a windowless object does not have a window when it is active, it cannot register its own IDropTarget132VOW2 interface with the RegisterDragDrop1BGH_8P function. However, to participate in drag and drop operations, a windowless object still must implement this interface. The object supplies its container with a pointer to its IDropTarget interface through IOleInPlaceObjectWindowless::GetDropTarget instead of having the container call QueryInterface for it. See IOleInPlaceObjectWindowless::GetDropTarget_HBCHO for more information on drag and drop operations involving windowless objects.

In-place drawing for windowless objects

With windowed objects, the container is only responsible for drawing the object when it is inactive. Windowed objects have their own window when they are active and can draw themselves independently of their container.

A windowless object, however, needs services from its container to redraw itself even when it is active. The container must provide the object with information about its surrounding environment, such as the clipping region, the background, overlapping objects in front of the object being redrawn, and a device context in which to draw.

The IOleInPlaceSiteWindowless interface on the container s site object provides these services: drawing the object, obtaining and releasing the device context, invalidating the object s on-screen display, scrolling the object, or showing a caret when the object is active.

 

Note  All methods of IOleInPlaceSiteWindowless take position information in client coordinates of the containing window, that is, the window in which the object is being drawn.

 

Drawing windowless objects

To maintain compatibility with windowed objects, the container still uses IViewObject::Draw1SUNL2 to redraw the in-place active, windowless object. See IViewObject::Draw for information on how the method is used with windowless objects.

Obtaining and releasing a device context

To draw on its own when in-place active, a windowless object must call its site s IOleInPlaceSiteWindowless::GetDC method to get a device context in which to draw. Then, it draws into the device context and releases it by calling IOleInPlaceSiteWindowless::ReleaseDC.

Display Invalidation

In-place windowless objects may need to invalidate regions of their on-screen image. Even though the notification methods in IAdviseSinkEx44.MZHU can be used for that purpose, they are not ideal for in-place active objects because they take HIMETRIC coordinates. In order to simplify and speed up in-place drawing, the InvalidateRect and InvalidateRgn methods in the IOleInPlaceSiteWindowless interface provide the same functionality.

An object cannot call the Windows API functions InvalidateRect and InvalidateRgn directly on the window handle it gets from calling IOleInPlaceSiteWindowless::GetWindow on its site.

Scrolling

In-place active windowless objects may need to scroll a given rectangle of their on-screen image, for example, with a multi-line text control. Because of transparent and overlapping objects, the Windows API functions ScrollWindow and ScrollDC cannot be used. Instead, the IOleInPlaceSiteWindowless::ScrollRect method enables objects to perform scrolling.

Caret support

A windowless object cannot safely show a caret without first checking whether the caret is partially or totally hidden by overlapping objects. In order to make that possible, an object can submit a rectangle to its site object when it calls the site s IOleInPlaceSiteWindowless::AdjustRect method to get a specified rectangle adjusted (usually, reduced) to ensure the rectangle fits in the clipping region.

When to Implement

Implement this interface on the container s site object to support windowless objects.

When to Use

The windowless object calls the methods in this interface to process window messages, to participate in drag and drop operations, and to perform drawing operations.

Methods in Vtable Order

IUnknown1NEM0LU Methods

Description

QueryInterface2Y54585

Returns a pointer to a specified interface.

AddRef1SHW0SS

Increments the reference count.

ReleaseDUW01A

Decrements the reference count.

 

IOleWindow13880GC Methods

Description

GetWindow2MLJP1W

Gets a window handle.

ContextSensitiveHelp2Q6WFYP

Controls enabling of context-sensitive help.

 

IOleInPlaceSiteY06K6Q Methods

Description

CanInPlaceActivate5.GP63

Determines if the container can activate the object in place.

OnInPlaceActivate21AR_OT

Notifies the container that one of its objects is being activated in place.

OnUIActivate5232W_

Notifies the container that the object is about to be activated in place, and that the main menu will be replaced by a composite menu.

GetWindowContext1JHMDO6

Enables an in-place object to retrieve window interfaces that form at the window object hierarchy, and the position in the parent window to locate the object s in-place activation window.

Scroll1SRUO.O

Specifies the number of pixels by which the container is to scroll the object.

OnUIDeactivate180U5RZ

Notifies the container to reinstall its user interface and take focus.

OnInPlaceDeactivate1MSCZVK

Notifies the container that the object is no longer active in place.

DiscardUndoState.YCR5X

Instructs the container to discard its undo state.

DeactivateAndUndo.9LXKI

Deactivate the object and revert to undo state.

OnPosRectChange19GMV2S

Object s extents have changed.

 

IOleInPlaceSiteExEKNDB6 Methods

Description

OnInPlaceActivateEx1MZKFMP

Called by the embedded object to determine if it needs to redraw itself upon activation.

OnInPlaceDeactivateEx.L9AAB

Notifies the container of whether the object needs to be redrawn upon deactivation.

RequestUIActivate413HDC

Notifies the container that the object is about to enter the UI-active state.

 

IOleInPlaceSiteWindowless Methods

Description

CanWindowlessActivateLVMMF1

Informs an object if its container can support it as a windowless object that can be in-place activated.

GetCapture1G5X6US

Called by an in-place active, windowless object to determine if it still has the mouse capture or not.

SetCapture1VR.JDP

Enables an in-place active, windowless object to capture all mouse messages.

GetFocusD9QFVI

Called by an in-place active, windowless object to determine if it still has the keyboard focus or not.

SetFocus49UIRR

Sets the keyboard focus for a UI-active, windowless object.

GetDC1O9B44_

Provides an object with a handle to a device context for a screen or compatible device from its container.

ReleaseDCN9ID9F

Releases the device context previously obtained by a call to IOleInPlaceSiteWindowless::GetDC.

InvalidateRect3418ZUA

Enables an object to invalidate a specified rectangle of its in-place image on the screen.

InvalidateRgn1P4VPWO

Enables an object to invalidate a specified region of its in-place image on the screen.

ScrollRect11_N_Q9

Enables an object to scroll an area within its in-place active image on the screen.

AdjustRect0EB0Q4

Adjusts a specified rectangle if it is entirely or partially covered by overlapping, opaque objects.

OnDefWindowMessage1N86TIH

Invokes the default processing for all messages passed to an object.

 

See Also

IAdviseSinkEx, IOleControl, IOleInPlaceActiveObject::TranslateAccelerator, IOleInPlaceObjectWindowless