SWT Sliders : Slider « SWT JFace Eclipse « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » SWT JFace Eclipse » Slider 




SWT Sliders
SWT Sliders

/*
 * Created on Nov 17, 2003
 *
 * To change the template for this generated file go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */

import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Slider;
import org.eclipse.swt.widgets.Text;

/**
 @author Steven Holzner
 
 * To change the template for this generated type comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */

public class SWTSliders {

  public static void main(String[] args) {
    Display display = new Display();
    Shell shell = new Shell(display);
    shell.setText("Sliders");
    shell.setSize(300200);

    final Label label = new Label(shell, SWT.NONE);
    label.setText("Move the slider");
    label.setBounds(02015015);

    final Slider slider = new Slider(shell, SWT.HORIZONTAL);
    slider.setBounds(04020020);

    final Text text = new Text(shell, SWT.BORDER);
    text.setBounds(010020025);

    slider.addListener(SWT.Selection, new Listener() {
      public void handleEvent(Event event) {
        String outString = "Event: SWT.NONE";
        switch (event.detail) {
        case SWT.ARROW_DOWN:
          outString = "Event: SWT.ARROW_DOWN";
          break;
        case SWT.ARROW_UP:
          outString = "Event: SWT.ARROW_UP";
          break;
        case SWT.DRAG:
          outString = "Event: SWT.DRAG";
          break;
        case SWT.END:
          outString = "Event: SWT.END";
          break;
        case SWT.HOME:
          outString = "Event: SWT.HOME";
          break;
        case SWT.PAGE_DOWN:
          outString = "Event: SWT.PAGE_DOWN";
          break;
        case SWT.PAGE_UP:
          outString = "Event: SWT.PAGE_UP";
          break;
        }
        outString += " Position: " + slider.getSelection();
        text.setText(outString);
      }
    });

    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch())
        display.sleep();
    }
    display.dispose();
  }
}



           
       














Related examples in the same category
1.Sample SliderSample Slider
2.Demonstrates SlidersDemonstrates Sliders
3.Slider Example Slider Example
4.SWT Slider: print scroll event detailsSWT Slider: print scroll event details
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.