SWT微调控件演示 : 微调控件 « SWT-JFace-Eclipse « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » SWT-JFace-Eclipse » 微调控件屏幕截图 
SWT微调控件演示
SWT微调控件演示

/*
 
 * (c) Copyright IBM Corp. 2000, 2001.
 
 * All Rights Reserved.
 *  
 */

import org.eclipse.swt.SWT;
import org.eclipse.swt.SWTError;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.graphics.Font;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Text;
import org.eclipse.swt.widgets.TypedListener;

public class Spinner extends Composite {

  static final int BUTTON_WIDTH = 16;

  Text text;

  Button up, down;

  int minimum, maximum;

  public Spinner(Composite parent, int style) {

    super(parent, style);

    text = new Text(this, style | SWT.SINGLE | SWT.BORDER);

    up = new Button(this, style | SWT.ARROW | SWT.UP);

    down = new Button(this, style | SWT.ARROW | SWT.DOWN);

    text.addListener(SWT.Verify, new Listener() {

      public void handleEvent(Event e) {

        verify(e);

      }

    });

    text.addListener(SWT.Traverse, new Listener() {

      public void handleEvent(Event e) {

        traverse(e);

      }

    });

    up.addListener(SWT.Selection, new Listener() {

      public void handleEvent(Event e) {

        up();

      }

    });

    down.addListener(SWT.Selection, new Listener() {

      public void handleEvent(Event e) {

        down();

      }

    });

    addListener(SWT.Resize, new Listener() {

      public void handleEvent(Event e) {

        resize();

      }

    });

    addListener(SWT.FocusIn, new Listener() {

      public void handleEvent(Event e) {

        focusIn();

      }

    });

    text.setFont(getFont());

    minimum = 0;

    maximum = 9;

    setSelection(minimum);

  }

  void verify(Event e) {

    try {

      Integer.parseInt(e.text);

    catch (NumberFormatException ex) {

      e.doit = false;

    }

  }

  void traverse(Event e) {

    switch (e.detail) {

    case SWT.TRAVERSE_ARROW_PREVIOUS:

      if (e.keyCode == SWT.ARROW_UP) {

        e.doit = true;

        e.detail = SWT.NULL;

        up();

      }

      break;

    case SWT.TRAVERSE_ARROW_NEXT:

      if (e.keyCode == SWT.ARROW_DOWN) {

        e.doit = true;

        e.detail = SWT.NULL;

        down();

      }

      break;

    }

  }

  void up() {

    setSelection(getSelection() 1);

    notifyListeners(SWT.Selection, new Event());

  }

  void down() {

    setSelection(getSelection() 1);

    notifyListeners(SWT.Selection, new Event());

  }

  void focusIn() {

    text.setFocus();

  }

  public void setFont(Font font) {

    super.setFont(font);

    text.setFont(font);

  }

  public void setSelection(int selection) {

    if (selection < minimum) {

      selection = minimum;

    else if (selection > maximum) {

      selection = maximum;

    }

    text.setText(String.valueOf(selection));

    text.selectAll();

    text.setFocus();

  }

  public int getSelection() {

    return Integer.parseInt(text.getText());

  }

  public void setMaximum(int maximum) {

    checkWidget();

    this.maximum = maximum;

    resize();

  }

  public int getMaximum() {

    return maximum;

  }

  public void setMinimum(int minimum) {

    this.minimum = minimum;

  }

  public int getMinimum() {

    return minimum;

  }

  void resize() {

    Point pt = computeSize(SWT.DEFAULT, SWT.DEFAULT);

    int textWidth = pt.x - BUTTON_WIDTH;

    int buttonHeight = pt.y / 2;

    text.setBounds(00, textWidth, pt.y);

    up.setBounds(textWidth, 0, BUTTON_WIDTH, buttonHeight);

    down.setBounds(textWidth, pt.y - buttonHeight, BUTTON_WIDTH,
        buttonHeight);

  }

  public Point computeSize(int wHint, int hHint, boolean changed) {

    GC gc = new GC(text);

    Point textExtent = gc.textExtent(String.valueOf(maximum));

    gc.dispose();

    Point pt = text.computeSize(textExtent.x, textExtent.y);

    int width = pt.x + BUTTON_WIDTH;

    int height = pt.y;

    if (wHint != SWT.DEFAULT)
      width = wHint;

    if (hHint != SWT.DEFAULT)
      height = hHint;

    return new Point(width, height);

  }

  public void addSelectionListener(SelectionListener listener) {

    if (listener == null)
      throw new SWTError(SWT.ERROR_NULL_ARGUMENT);

    addListener(SWT.Selection, new TypedListener(listener));

  }

}




           
       
Related examples in the same category
1. SWT微调控件实例SWT微调控件实例
2. SWT微调控件浮点值SWT微调控件浮点值
3. 创建和初始化一个SWT微调工具创建和初始化一个SWT微调工具
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.