com.cisco.jabber.guest.sdk.DataView Class Reference

A view that represents the called party's shared screen during an active call. More...

Inheritance diagram for com.cisco.jabber.guest.sdk.DataView:
com.cisco.jabber.guest.sdk.BaseTextureViewLayout com.cisco.jabber.guest.sdk.RenderCallbacks

Classes

enum  VisibleEdges
 Enum declaring all possible visible edges for the contained TextureView inside this DataView. More...
 

Public Member Functions

 DataView (Context context)
 Construct a new DataView. More...
 
 DataView (Context context, AttributeSet attrs)
 Construct a new DataView. More...
 
 DataView (Context context, AttributeSet attrs, int defStyle)
 Construct a new DataView. More...
 
void onFirstFrame ()
 Called when the first frame is delivered to the TextureView.
 
void onFramesResumed ()
 Called when frames have resumed being delivered to the TextureView.
 
void onFrameSizeChanged (int width, int height)
 Called when the size of the frames being delivered to the TextureView has changed. More...
 
EnumSet< VisibleEdgesgetCurrentVisibleEdges ()
 Determines what edges of the contained TextureView with the called party's shared screen are currently visible in this DataView. More...
 
boolean getIsCurrentlyScaling ()
 Returns whether or not the DataView is currently processing a scaling gesture. More...
 
- Public Member Functions inherited from com.cisco.jabber.guest.sdk.BaseTextureViewLayout
 BaseTextureViewLayout (Context context, int layout)
 Construct a new BaseTextureViewLayout. More...
 
 BaseTextureViewLayout (Context context, AttributeSet attrs, int layout)
 Construct a new BaseTextureViewLayout. More...
 
 BaseTextureViewLayout (Context context, AttributeSet attrs, int defStyle, int layout)
 Construct a new BaseTextureViewLayout. More...
 
TextureView getTextureView ()
 Gets the TextureView contained within this view. More...
 
void onFramesDropped ()
 Called when frames are no longer being delivered to the TextureView.
 
void onFramesResumed ()
 Called when frames have resumed being delivered to the TextureView.
 
void onFrameSizeChanged (int width, int height)
 Called when the size of the frames being delivered to the TextureView has changed. More...
 
void onFirstFrame ()
 Called when the first frame is delivered to the TextureView.
 

Additional Inherited Members

- Protected Member Functions inherited from com.cisco.jabber.guest.sdk.BaseTextureViewLayout
void processNewInstanceAvailable (Intent intent)
 This function is called from the internal registered BroadcastReceiver whenever this view receives notification from JabberGuestCall that there is a new instance of this class available. More...
 
void processCallStateChanged (Intent intent)
 This function is called from the internal registered BroadcastReceiver whenever this view receives notification from JabberGuestCall that a call state change has taken place on the current instance of JabberGuestCall. More...
 
void processCallControlEvent (Intent intent)
 This function is called from the internal registered BroadcastReceiver whenever this view receives notification from JabberGuestCall that a call control event has taken place on the current instance of JabberGuestCall. More...
 
void processCallErrorEvent (Intent intent)
 This function is called from the internal registered BroadcastReceiver whenever this view receives notification from JabberGuestCall that a call error event has taken place on the current instance of JabberGuestCall. More...
 
JabberGuestCall getJabberGuestCallFromReference ()
 Returns the current JabberGuestCall instance from the internal WeakReference stored by this view if it exists. More...
 
- Protected Attributes inherited from com.cisco.jabber.guest.sdk.BaseTextureViewLayout
WeakReference< JabberGuestCallmJabberCallReference = null
 Stores a WeakReference to the current JabberGuestCall instance during a call.
 
BroadcastReceiver mBroadcastReceiver
 Broadcast Receiver that is registered to JabberGuestCall instance in order to receive notifications. More...
 
TextureView mTextureView = null
 Represents the contained TextureView in this BaseTextureViewLayout class.
 
int mFrameWidth = 0
 The current frame width received from the internal media engine for this view.
 
int mFrameHeight = 0
 The current frame height received from the internal media engine for this view.
 
int mMaxWidth = Integer.MAX_VALUE
 The maximum allowable frame width for this view.
 
int mMaxHeight = Integer.MAX_VALUE
 The maximum allowable frame height for this view.
 

Detailed Description

A view that represents the called party's shared screen during an active call.

Constructor & Destructor Documentation

com.cisco.jabber.guest.sdk.DataView.DataView ( Context  context)
inline

Construct a new DataView.

Parameters
contextThe Context the view is running in, through which it can access the current theme, resources, etc.
com.cisco.jabber.guest.sdk.DataView.DataView ( Context  context,
AttributeSet  attrs 
)
inline

Construct a new DataView.

Parameters
contextThe Context the view is running in, through which it can access the current theme, resources, etc.
attrsThe attributes of the XML tag that is inflating the view.
com.cisco.jabber.guest.sdk.DataView.DataView ( Context  context,
AttributeSet  attrs,
int  defStyle 
)
inline

Construct a new DataView.

Parameters
contextThe Context the view is running in, through which it can access the current theme, resources, etc.
attrsThe attributes of the XML tag that is inflating the view.
defStyleAn attribute in the current theme that contains a reference to a style resource that supplies default values for the view. Can be 0 to not look for defaults.

Member Function Documentation

EnumSet<VisibleEdges> com.cisco.jabber.guest.sdk.DataView.getCurrentVisibleEdges ( )
inline

Determines what edges of the contained TextureView with the called party's shared screen are currently visible in this DataView.

Returns
An EnumSet of VisibleEdges values indicating which edges are currently visible in this DataView.
boolean com.cisco.jabber.guest.sdk.DataView.getIsCurrentlyScaling ( )
inline

Returns whether or not the DataView is currently processing a scaling gesture.

Returns
True if currently processing a scaling gesture, false otherwise.
void com.cisco.jabber.guest.sdk.DataView.onFrameSizeChanged ( int  width,
int  height 
)
inline

Called when the size of the frames being delivered to the TextureView has changed.

Parameters
widthThe new width of the received frames.
heightThe new height of the received frames.

Implements com.cisco.jabber.guest.sdk.RenderCallbacks.