Example usage for com.google.gwt.tok.client PublishProperties setWidth

List of usage examples for com.google.gwt.tok.client PublishProperties setWidth

Introduction

In this page you can find the example usage for com.google.gwt.tok.client PublishProperties setWidth.

Prototype

public final native void setWidth(int width) ;

Source Link

Document

The desired width in pixels of the displayed Publisher video stream (default: 264).

Usage

From source file:com.google.gwt.tok.test.client.widget.PublisherPanel.java

@UiHandler("publishButton")
protected void onPublishClicked(ClickEvent event) {
    if (publishing) {
        EVENT_BUS.fireEvent(new UnpublishEvent());
    } else {//from  w ww.  j  a v  a2  s  .  com
        PublishProperties publishProperties = PublishProperties.get();
        publishProperties.setHeight(Integer.valueOf(height.getValue()));
        publishProperties.setWidth(Integer.valueOf(width.getValue()));
        publishProperties.setMicrophoneGain(Integer.valueOf(microphoneGain.getValue()));
        publishProperties.setMirror(mirror.getValue());
        publishProperties.setPublishAudio(publishAudio.getValue());
        publishProperties.setPublishVideo(publishVideo.getValue());

        EVENT_BUS.fireEvent(new PublishEvent(publisherDiv.getId(), publishProperties));
    }
}