Vertical/Horizontal Slider Sample (Smart GWT) : Slider « GWT « 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 » GWT » Slider 




Vertical/Horizontal Slider Sample (Smart GWT)
Vertical/Horizontal Slider Sample (Smart GWT)
   
/*
 * SmartGWT (GWT for SmartClient)
 * Copyright 2008 and beyond, Isomorphic Software, Inc.
 *
 * SmartGWT is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License version 3
 * as published by the Free Software Foundation.  SmartGWT is also
 * available under typical commercial license terms - see
 * http://smartclient.com/license
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 */
package com.smartgwt.sample.showcase.client;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.RootPanel;
import com.smartgwt.client.widgets.Canvas;
import com.smartgwt.client.widgets.Slider;
import com.smartgwt.client.widgets.events.DrawEvent;
import com.smartgwt.client.widgets.events.DrawHandler;
import com.smartgwt.client.widgets.events.ValueChangedEvent;
import com.smartgwt.client.widgets.events.ValueChangedHandler;

public class Showcase implements EntryPoint {

  public void onModuleLoad() {
    RootPanel.get().add(getViewPanel());
  }
  
  private int hBar1Value;
  private int hBar2Value;

  public Canvas getViewPanel() {

    Canvas canvas = new Canvas();

    final Slider vSlider = new Slider("Rating");
    vSlider.setMinValue(1);
    vSlider.setMaxValue(5);
    vSlider.setNumValues(5);
    vSlider.setHeight(300);
    canvas.addChild(vSlider);

    final Slider hSlider = new Slider("Rating");
    hSlider.setVertical(false);
    hSlider.setMinValue(1);
    hSlider.setMaxValue(5);
    hSlider.setNumValues(5);
    hSlider.setTop(200);
    hSlider.setLeft(100);
    canvas.addChild(hSlider);

    hSlider.addDrawHandler(new DrawHandler() {
        public void onDraw(DrawEvent event) {
            vSlider.addValueChangedHandler(new ValueChangedHandler() {
                public void onValueChanged(ValueChangedEvent event) {
                    int value = event.getValue();
                    if (hSlider.getValue() != value) {
                        hSlider.setValue(value);
                    }
                }
            });
        }
    });

    hSlider.addDrawHandler(new DrawHandler() {
        public void onDraw(DrawEvent event) {
            hSlider.addValueChangedHandler(new ValueChangedHandler() {
                public void onValueChanged(ValueChangedEvent event) {
                    int value = event.getValue();
                    if (vSlider.getValue() != value) {
                        vSlider.setValue(value);
                    }
                }
            });
        }
    });


    return canvas;
  }

}

   
    
    
  














SmartGWT.zip( 9,880 k)
Related examples in the same category
1.Drag the slider to change opacity (Smart GWT)Drag the slider to change opacity (Smart GWT)
2.Using Slider to control the width and sharpness of a shadow (Smart GWT)Using Slider to control the width and sharpness of a shadow (Smart GWT)
3.Using SliderItem to create slider (Smart GWT)Using SliderItem to create slider (Smart GWT)
4.Using Slider and SliderField (Ext GWT)Using Slider and SliderField (Ext GWT)
5.Vertical.Horizontal Slider (Ext GWT)Vertical.Horizontal Slider (Ext GWT)
6.Set value for Slider (Ext GWT)Set value for Slider (Ext GWT)
7.Set Message for Slider (Ext GWT)Set Message for Slider (Ext GWT)
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.