Windows SDK API Reference
Loading...
Searching...
No Matches
customized_share_render.h
Go to the documentation of this file.
1
6#ifndef _ZOOM_CUSTOMIZED_SHARE_RENDER_H_
7#define _ZOOM_CUSTOMIZED_SHARE_RENDER_H_
8#include "zoom_sdk_def.h"
9
16{
19};
20
24{
25public:
27 virtual void onSharingContentStartRecving() = 0;
28
31 virtual void onSharingSourceUserIDNotification(unsigned int userid) = 0;
32
42 virtual void onWindowMsgNotification(UINT uMsg, WPARAM wParam, LPARAM lParam) = 0;
43};
44
48{
49public:
55
59 virtual SDKError Show() = 0;
60
64 virtual SDKError Hide() = 0;
65
72 virtual SDKError SetUserID(unsigned int userid) = 0;
73
77 virtual unsigned int GetUserID() = 0;
78
83 virtual SDKError Resize(RECT rc) = 0;
84
90
94 virtual HWND GetOwnerWnd() = 0;
95
103};
105
106#endif
Share render callback event.
virtual void onWindowMsgNotification(UINT uMsg, WPARAM wParam, LPARAM lParam)=0
Callback event when the App receives the window messages from the sharer. Here are the list of the wi...
virtual void onSharingContentStartRecving()=0
Callback event the moment received the shared content.
virtual void onSharingSourceUserIDNotification(unsigned int userid)=0
Callback event of changed sender or the sharing closes when receiving the shared content.
Share render interface.
virtual SDKError SetEvent(ICustomizedShareRenderEvent *pEvent)=0
Set the share render callback event handler.
virtual SDKError Hide()=0
Hide the shared content received.
virtual unsigned int GetUserID()=0
Get the ID of the user who's sending the sharing.
virtual SDKError SetViewMode(CustomizedViewShareMode mode)=0
Set the view mode of watching the sharing.
virtual HWND GetOwnerWnd()=0
Get the window handle of showing sharing content.
virtual SDKError Show()=0
Show the shared content received.
virtual SDKError HandleWindowsMoveMsg()=0
Redraw the window of showing the sharing.
virtual SDKError Resize(RECT rc)=0
Reset the dialog size to view the sharing content.
virtual SDKError SetUserID(unsigned int userid)=0
View the sharing content from the specified user ID.
CustomizedViewShareMode
View mode of shared render. Here are more detailed structural descriptions.
@ CSM_LETTER_BOX
View the shared content in full screen mode.
ZOOM windows SDK Common Definition File.
#define END_ZOOM_SDK_NAMESPACE
Definition: zoom_sdk_def.h:21
#define BEGIN_ZOOM_SDK_NAMESPACE
Definition: zoom_sdk_def.h:20
SDKError
SDK error types. Here are more detailed structural descriptions.
Definition: zoom_sdk_def.h:30