Implements a custom model and a custom editor for a spinner that displays shades of gray : 微调控件 « Swing « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » Swing » 微调控件 
14. 33. 24. Implements a custom model and a custom editor for a spinner that displays shades of gray
Implements a custom model and a custom editor for a spinner that displays shades of gray
/*
 *
 * Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved.
 *
 * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
 * modify and redistribute this software in source and binary code form,
 * provided that i) this copyright notice and license appear on all copies of
 * the software; and ii) Licensee does not utilize the software in a manner
 * which is disparaging to Sun.
 *
 * This software is provided "AS IS," without a warranty of any kind. ALL
 * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
 * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
 * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
 * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
 * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
 * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
 * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
 * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
 * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 *
 * This software is not designed or intended for use in on-line control of
 * aircraft, air traffic, aircraft navigation or aircraft communications; or in
 * the design, construction, operation or maintenance of any nuclear
 * facility. Licensee represents and warrants that it will not use or
 * redistribute the Software for such purposes.
 */    
    
import java.awt.Color;
import java.awt.Dimension;

import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JSpinner;
import javax.swing.SpinnerNumberModel;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

class GrayModel extends SpinnerNumberModel {
  public GrayModel(int value) {
    super(value, 02555);
  }

  public int getIntValue() {
    Integer myValue = (IntegergetValue();
    return myValue.intValue();
  }

  public Color getColor() {
    int intValue = getIntValue();
    return new Color(intValue, intValue, intValue);
  }
}

class GrayEditor extends JLabel implements ChangeListener {
  public GrayEditor(JSpinner spinner) {
    setOpaque(true);

    // Get info from the model.
    GrayModel myModel = (GrayModel) (spinner.getModel());
    setBackground(myModel.getColor());
    spinner.addChangeListener(this);

    // Set tool tip text.
    updateToolTipText(spinner);

    // Set size info.
    Dimension size = new Dimension(6015);
    setMinimumSize(size);
    setPreferredSize(size);
  }

  protected void updateToolTipText(JSpinner spinner) {
    String toolTipText = spinner.getToolTipText();
    if (toolTipText != null) {
      // JSpinner has tool tip text. Use it.
      if (!toolTipText.equals(getToolTipText())) {
        setToolTipText(toolTipText);
      }
    else {
      // Define our own tool tip text.
      GrayModel myModel = (GrayModel) (spinner.getModel());
      int rgb = myModel.getIntValue();
      setToolTipText("(" + rgb + "," + rgb + "," + rgb + ")");
    }
  }

  public void stateChanged(ChangeEvent e) {
    JSpinner mySpinner = (JSpinner) (e.getSource());
    GrayModel myModel = (GrayModel) (mySpinner.getModel());
    setBackground(myModel.getColor());
    updateToolTipText(mySpinner);
  }
}

public class SpinnerDemo4 extends JPanel {
  public static void main(String[] args) {
    JFrame frame = new JFrame("SpinnerDemo4");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JComponent newContentPane = new SpinnerDemo4();
    newContentPane.setOpaque(true);
    frame.setContentPane(newContentPane);

    frame.add(new JLabel("Shade of Gray:")"North");
    frame.add(new JSpinner(new GrayModel(170)));

    frame.pack();
    frame.setVisible(true);
  }

}
14. 33. 微调控件
14. 33. 1. 创建JSpinner组件
14. 33. 2. 创造小时JSpinner组件
14. 33. 3. 创建JSpinner组件:一些微调
14. 33. 4. 使用SpinnerDateModel创造JSpinner
14. 33. 5. SpinnerListModel Class: provides for selection from a list of entries, or at least their string representation.
14. 33. 6. SpinnerNumberModel Class: provides for the selection of a number from an open or closed range of values.
14. 33. 7. 字符串基础微调控件字符串基础微调控件
14. 33. 8. 监听改变值的JSpinner组件
14. 33. 9. 监听JSpinner活动, ChangeListener监听JSpinner活动, ChangeListener
14. 33. 10. 旋转数据旋转数据
14. 33. 11. 旋转数模型旋转数模型
14. 33. 12. public SpinnerDateModel(Date value, Comparable start, Comparable end, int calendarField)public SpinnerDateModel(Date value, Comparable start, Comparable end, int calendarField)
14. 33. 13. 自定义模式自定义模式
14. 33. 14. 使用一个图标编辑器,用于JSpinner组件
14. 33. 15. public JSpinner.DateEditor(JSpinner spinner)public JSpinner.DateEditor(JSpinner spinner)
14. 33. 16. public JSpinner.DateEditor(JSpinner spinner, String dateFormatPattern)public JSpinner.DateEditor(JSpinner spinner, String dateFormatPattern)
14. 33. 17. public JSpinner.NumberEditor(JSpinner spinner)public JSpinner.NumberEditor(JSpinner spinner)
14. 33. 18. public JSpinner.NumberEditor(JSpinner spinner, String decimalFormatPattern)public JSpinner.NumberEditor(JSpinner spinner, String decimalFormatPattern)
14. 33. 19. 创建自定义模式和编辑微调控件创建自定义模式和编辑微调控件
14. 33. 20. 名单微调
14. 33. 21. 日期微调
14. 33. 22. 微调日期
14. 33. 23. 数字微调
14. 33. 24. Implements a custom model and a custom editor for a spinner that displays shades of grayImplements a custom model and a custom editor for a spinner that displays shades of gray
14. 33. 25. 设置边界JSpinner组件
14. 33. 26. 创建SpinnerListModel
14. 33. 27. 限制值Spinner组件
14. 33. 28. 禁用键盘编辑JSpinner组件
14. 33. 29. Customizing the Editor in a JSpinner Component: Create a color spinner
14. 33. 30. 自定义JSpinner外观
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.