Examples of PresentationListener


Examples of com.eclipsesource.tabris.widgets.PresentationListener

    final Button fullscreenButton = createFullscreenButton( video, controls );
    createShowControlsButton( video, controls );
    createRepeatButton( video, controls );
    pauseButton.setEnabled( false );
    stopButton.setEnabled( false );
    video.addPresentationListener( new PresentationListener() {

      public void presentationChanged( Presentation newMode ) {
        if( newMode == Presentation.EMBEDDED ) {
          fullscreenButton.setEnabled( true );
        } else {
View Full Code Here

Examples of org.cybergarage.upnp.device.PresentationListener

  public void httpRequestRecieved(HTTPRequest httpReq) {
    if (Debug.isOn() == true)
      httpReq.print();

    if (hasPresentationListener() && isPresentationRequest(httpReq)) {
      PresentationListener listener = getPresentationListener();
      listener.httpRequestRecieved(httpReq);
      return;
    }

    if (httpReq.isGetRequest() == true || httpReq.isHeadRequest() == true) {
      httpGetRequestRecieved(httpReq);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.