Package com.eclipsesource.tabris.widgets.Video

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


      } );
    }

    private void handlePresentationMode( Widget widget, JsonObject properties ) {
      String presentationMode = properties.get( PROPERTY_PRESENTATION ).asString();
      Presentation newMode = Presentation.valueOf( presentationMode.toUpperCase() );
      Video video = ( Video )widget;
      video.getAdapter( PlaybackAdapter.class ).getOptions().put( PlaybackOptions.PRESENTATION, newMode );
      notifyListenersAboutPresentationModeChange( newMode, video );
    }
View Full Code Here


  }

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

  }

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

TOP

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

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.