Examples of DictionarySwipeItemProvider


Examples of com.eclipsesource.tabris.demos.swipe.DictionarySwipeItemProvider

    toolItem.setText( "Klingon Lessons" );
    onToolItem( toolItem ).useAsTitle();
  }

  private void createSwipeWidget( Composite parent ) {
    DictionarySwipeItemProvider itemProvider = new DictionarySwipeItemProvider();
    Swipe result = new Swipe( parent, itemProvider );
    GridDataFactory.fillDefaults()
      .grab( true, true )
      .align( SWT.FILL, SWT.FILL )
      .applyTo( result.getControl() );
    result.show( 0 );
    createPagingIndicator( parent, result, itemProvider.getItemCount() );
  }
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.