Package com.eclipsesource.tabris.widgets.Video

Examples of com.eclipsesource.tabris.widgets.Video.PresentationMode


  }

  private void readPresentationMode( Widget widget ) {
    if( wasEventSent( getId( widget ), PRESENTATION_EVENT ) ) {
      String presentationMode = readEventPropertyValueAsString( getId( widget ), PRESENTATION_EVENT, PROPERTY_MODE );
      PresentationMode newMode = PresentationMode.valueOf( presentationMode.toUpperCase() );
      Video video = ( Video )widget;
      video.getAdapter( PlaybackAdapter.class ).getOptions().put( PlaybackOptions.PRESENTATION_MODE, newMode );
      notifyListenersAboutPresentationModeChange( newMode, video );
    }
  }
View Full Code Here

TOP

Related Classes of com.eclipsesource.tabris.widgets.Video.PresentationMode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.