Windows SDK API Reference
Loading...
Searching...
No Matches
ICustomizedUIMgrEvent Class Referenceabstract

The callback event of custom UI manager interface. More...

#include <customized_ui_mgr.h>

Public Member Functions

virtual void onVideoContainerDestroyed (ICustomizedVideoContainer *pContainer)=0
 The callback will be triggered before the video container is destroyed. More...
 
virtual void onShareRenderDestroyed (ICustomizedShareRender *pRender)=0
 The callback will be triggered before the shared render is destroyed. More...
 
virtual ~ICustomizedUIMgrEvent ()
 

Detailed Description

The callback event of custom UI manager interface.

Definition at line 16 of file customized_ui_mgr.h.

Constructor & Destructor Documentation

◆ ~ICustomizedUIMgrEvent()

virtual ICustomizedUIMgrEvent::~ICustomizedUIMgrEvent ( )
inlinevirtual

Definition at line 29 of file customized_ui_mgr.h.

29{};

Member Function Documentation

◆ onShareRenderDestroyed()

virtual void ICustomizedUIMgrEvent::onShareRenderDestroyed ( ICustomizedShareRender pRender)
pure virtual

The callback will be triggered before the shared render is destroyed.

Parameters
pRenderSpecify the shared render to be destroyed.
Remarks
The specified shared render will be destroyed once the function calls end. The user should complete the operations related to the shared render before the function calls end.

◆ onVideoContainerDestroyed()

virtual void ICustomizedUIMgrEvent::onVideoContainerDestroyed ( ICustomizedVideoContainer pContainer)
pure virtual

The callback will be triggered before the video container is destroyed.

Parameters
pContainerSpecify the video container to be destroyed.
Remarks
The specified container will be destroyed once the function calls end. The user should complete the operations related to the video container before the function calls end.