Meeting SDK for Windows API Reference
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
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.
 
virtual void onShareRenderDestroyed (ICustomizedShareRender *pRender)=0
 The callback will be triggered before the shared render is destroyed.
 
virtual void onImmersiveContainerDestroyed ()=0
 The callback will be triggered before the immersive container is destroyed.
 
virtual ~ICustomizedUIMgrEvent ()
 

Detailed Description

The callback event of custom UI manager interface.

Definition at line 17 of file customized_ui_mgr.h.

Constructor & Destructor Documentation

◆ ~ICustomizedUIMgrEvent()

virtual ICustomizedUIMgrEvent::~ICustomizedUIMgrEvent ( )
inlinevirtual

Definition at line 34 of file customized_ui_mgr.h.

34{};

Member Function Documentation

◆ onImmersiveContainerDestroyed()

virtual void ICustomizedUIMgrEvent::onImmersiveContainerDestroyed ( )
pure virtual

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

Remarks
The immersive container will be destroyed once the function calls end. The user should complete the operations related to the immersive container before the function calls end.

◆ 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.