素描 : 各种事件监听器 « 事件 « 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 » 事件 » 各种事件监听器屏幕截图 
素描
素描
 
/*
Java Swing, 2nd Edition
By Marc Loy, Robert Eckstein, Dave Wood, James Elliott, Brian Cole
ISBN: 0-596-00408-7
Publisher: O'Reilly 
*/
// Sketch.java
//A sketching application with two dials: one for horizontal movement, one
//for vertical movement. The dials are instances of the JogShuttle class.
//

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;

import javax.swing.BoundedRangeModel;
import javax.swing.DefaultBoundedRangeModel;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.border.BevelBorder;
import javax.swing.border.LineBorder;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.swing.plaf.ComponentUI;

public class Sketch extends JPanel implements PropertyChangeListener,
    ActionListener {
  JogShuttle shuttle1;

  JogShuttle shuttle2;

  JPanel board;

  JButton clear;

  int lastX, lastY; // Keep track of the last point we drew.

  public Sketch() {
    super(true);

    setLayout(new BorderLayout());
    board = new JPanel(true);
    board.setPreferredSize(new Dimension(300300));
    board.setBorder(new LineBorder(Color.black, 5));

    clear = new JButton("Clear Drawing Area");
    clear.addActionListener(this);

    shuttle1 = new JogShuttle(0300150);
    lastX = shuttle1.getValue();
    shuttle2 = new JogShuttle(0300150);
    lastY = shuttle2.getValue();

    shuttle1.setValuePerRevolution(100);
    shuttle2.setValuePerRevolution(100);

    shuttle1.addPropertyChangeListener(this);
    shuttle2.addPropertyChangeListener(this);

    shuttle1.setBorder(new BevelBorder(BevelBorder.RAISED));
    shuttle2.setBorder(new BevelBorder(BevelBorder.RAISED));

    add(board, BorderLayout.NORTH);
    add(shuttle1, BorderLayout.WEST);
    add(clear, BorderLayout.CENTER);
    add(shuttle2, BorderLayout.EAST);
  }

  public void propertyChange(PropertyChangeEvent e) {
    if (e.getPropertyName() == "value") {
      Graphics g = board.getGraphics();
      g.setColor(getForeground());
      g.drawLine(lastX, lastY, shuttle1.getValue(), shuttle2.getValue());
      lastX = shuttle1.getValue();
      lastY = shuttle2.getValue();
    }
  }

  public void actionPerformed(ActionEvent e) {
    //  The button must have been pressed.
    Insets insets = board.getInsets();
    Graphics g = board.getGraphics();
    g.setColor(board.getBackground());
    g.fillRect(insets.left, insets.top, board.getWidth() - insets.left
        - insets.right, board.getHeight() - insets.top - insets.bottom);
  }

  public static void main(String[] args) {
    UIManager.put(JogShuttleUI.UI_CLASS_ID, "BasicJogShuttleUI");
    Sketch s = new Sketch();
    JFrame frame = new JFrame("Sample Sketch Application");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setContentPane(s);
    frame.pack();
    frame.setVisible(true);
  }
}

//JogShuttle.java
//A custom jog shuttle component. (Some VCRs have such a thing for doing
//variable speed fast-forward and fast-reverse.) An example of using the
//JogShuttle can be found in Sketch.java.
//

class JogShuttle extends JComponent implements ChangeListener {

  private BoundedRangeModel model;

  //  The dialInsets property tells how far the dial is inset
  //  from the sunken border.
  private Insets dialInsets = new Insets(3333);

  //  The valuePerRevolution property tells how many units the dial
  //  takes to make a complete revolution.
  private int valuePerRevolution;

  //  Constructors
  public JogShuttle() {
    init(new DefaultBoundedRangeModel());
  }

  public JogShuttle(BoundedRangeModel m) {
    init(m);
  }

  public JogShuttle(int min, int max, int value) {
    init(new DefaultBoundedRangeModel(value, 1, min, max));
  }

  protected void init(BoundedRangeModel m) {
    setModel(m);
    valuePerRevolution = m.getMaximum() - m.getMinimum();
    setMinimumSize(new Dimension(8080));
    setPreferredSize(new Dimension(8080));
    updateUI();
  }

  public void setUI(JogShuttleUI ui) {
    super.setUI(ui);
  }

  public void updateUI() {
    setUI((JogShuttleUIUIManager.getUI(this));
    invalidate();
  }

  public String getUIClassID() {
    return JogShuttleUI.UI_CLASS_ID;
  }

  public void setModel(BoundedRangeModel m) {
    BoundedRangeModel old = model;
    if (old != null)
      old.removeChangeListener(this);

    if (m == null)
      model = new DefaultBoundedRangeModel();
    else
      model = m;
    model.addChangeListener(this);

    firePropertyChange("model", old, model);
  }

  public BoundedRangeModel getModel() {
    return model;
  }

  //  Methods
  public void resetToMinimum() {
    model.setValue(model.getMinimum());
  }

  public void resetToMaximum() {
    model.setValue(model.getMaximum());
  }

  public void stateChanged(ChangeEvent e) {
    repaint();
  }

  //  Accessors and mutators
  public int getMinimum() {
    return model.getMinimum();
  }

  public void setMinimum(int m) {
    int old = getMinimum();
    if (m != old) {
      model.setMinimum(m);
      firePropertyChange("minimum", old, m);
    }
  }

  public int getMaximum() {
    return model.getMaximum();
  }

  public void setMaximum(int m) {
    int old = getMaximum();
    if (m != old) {
      model.setMaximum(m);
      firePropertyChange("maximum", old, m);
    }
  }

  public int getValue() {
    return model.getValue();
  }

  public void setValue(int v) {
    int old = getValue();
    if (v != old) {
      model.setValue(v);
      firePropertyChange("value", old, v);
    }
  }

  //  Display-specific properties
  public int getValuePerRevolution() {
    return valuePerRevolution;
  }

  public void setValuePerRevolution(int v) {
    int old = getValuePerRevolution();
    if (v != old) {
      valuePerRevolution = v;
      firePropertyChange("valuePerRevolution", old, v);
    }
    repaint();
  }

  public void setDialInsets(Insets i) {
    dialInsets = i;
  }

  public void setDialInsets(int top, int left, int bottom, int right) {
    dialInsets = new Insets(top, left, bottom, right);
  }

  public Insets getDialInsets() {
    return dialInsets;
  }
}

//JogShuttleUI.java
//Fill out the proper UIClassID information for our JogShuttle.
//

abstract class JogShuttleUI extends ComponentUI {
  public static final String UI_CLASS_ID = "JogShuttleUI";
}


           
         
  
Related examples in the same category
1. 显示addXXXListener方法显示addXXXListener方法
2. 查看事件的发生查看事件的发生
3. A demonstration of the ChangeEvents generated by the BoundedRangeModelA demonstration of the ChangeEvents generated by the BoundedRangeModel
4. 一个应用程序,显示事件,以及采取行动,一个应用程序,显示事件,以及采取行动,
5. 显示如何添加键盘监听显示如何添加键盘监听
6. EventListenerList启用秘密标签EventListenerList启用秘密标签
7. TextAction范例TextAction范例
8. StateChange监听StateChange监听
9. 复选框项目监听复选框项目监听
10. AncestorListener演示AncestorListener演示
11. 按键演示按键演示
12. 引动焦点到下一个组件引动焦点到下一个组件
13. PropertyChangeListener演示PropertyChangeListener演示
14. 定时器样本定时器样本
15. KeyListener , ActionListener演示1KeyListener , ActionListener演示1
16. KeyListener , ActionListener演示2KeyListener , ActionListener演示2
17. 行动,鼠标焦点行动,鼠标焦点
18. 事件演示事件演示
19. 加载储存行动加载储存行动
20. 演示WindowListener与WindowAdapter演示WindowListener与WindowAdapter
21. 演示ActionListener演示ActionListener
22. 演示AdjustmentListener演示AdjustmentListener
23. 演示AncestorListener
24. 演示ComponentListener演示ComponentListener
25. A ComponentAdapter.
26. Jar文件文件:进度监控
27. 窗口在屏幕上的位置。
28. Using ComponentListener to catch the JFrame Maximization event
29. 演示ContainerListener演示ContainerListener
30. 演示FocusListener演示FocusListener
31. 演示HyperlinkListener演示HyperlinkListener
32. 演示InternalFrameListener演示InternalFrameListener
33. 演示ItemListener演示ItemListener
34. 执行图形列表选择监测执行图形列表选择监测
35. ItemListener的JRadioButton
36. 演示KeyListener演示KeyListener
37. 演示MenuListener演示MenuListener
38. 演示MouseListener和MouseMotionListener演示MouseListener和MouseMotionListener
39. 演示MouseWheelListener演示MouseWheelListener
40. 演示PopupMenuListener演示PopupMenuListener
41. 演示WindowListener
42. implements VetoableChangeListener to block focus change events
43. 响应按键响应按键
44. 焦点事件演示焦点事件演示
45. 容器事件演示容器事件演示
46. 组件事件演示组件事件演示
47. 示范窗口活动示范窗口活动
48. 处理窗口关闭事件
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.