ZOOM Windows SDK  5.2.42037.1112
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 
10 BEGIN_ZOOM_SDK_NAMESPACE
16 {
17  CSM_FULLFILL,
19 };
20 
24 {
25 public:
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 {
49 public:
54  virtual SDKError SetEvent(ICustomizedShareRenderEvent* pEvent) = 0;
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 
101  virtual SDKError HandleWindowsMoveMsg() = 0;
102  virtual ~ICustomizedShareRender(){}
103 };
104 END_ZOOM_SDK_NAMESPACE
105 
106 #endif
CustomizedViewShareMode
View mode of shared render. Here are more detailed structural descriptions.
Definition: customized_share_render.h:15
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...
Share render callback event.
Definition: customized_share_render.h:23
virtual SDKError SetEvent(ICustomizedShareRenderEvent *pEvent)=0
Set the share render callback event handler.
SDKError
SDK error types. Here are more detailed structural descriptions.
Definition: zoom_sdk_def.h:29
virtual unsigned int GetUserID()=0
Get the ID of the user who's sending the sharing.
virtual void onSharingContentStartRecving()=0
Callback event the moment received the shared content.
View the shared content in full screen mode.
Definition: customized_share_render.h:18
virtual HWND GetOwnerWnd()=0
Get the window handle of showing sharing content.
virtual void onSharingSourceUserIDNotification(unsigned int userid)=0
Callback event of changed sender or the sharing closes when receiving the shared content.
virtual SDKError Hide()=0
Hide 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 Show()=0
Show the shared content received.
virtual SDKError SetViewMode(CustomizedViewShareMode mode)=0
Set the view mode of watching the sharing.
virtual SDKError SetUserID(unsigned int userid)=0
View the sharing content from the specified user ID.
Share render interface.
Definition: customized_share_render.h:47