当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:14:00  来源:本站整理

<b>[JAVA100例]023、滑动杆</b>[Java编程]

赞助商链接



  本文“<b>[JAVA100例]023、滑动杆</b>[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
/**
* <p>Title: 滑动杆演示</p>
* <p>Description: 利用滑动杆掌握按时器,来掌握图片的播放速度</p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Filename: SliderDemo.java</p>
* @version 1.0
*/
public class SliderDemo extends JPanel
            implements ActionListener,
                  WindowListener,
                  ChangeListener {
  //设置图片的参数
  static final int FPS_MIN = 0; //设置最小值
  static final int FPS_MAX = 30; //设置最大值
  static final int FPS_INIT = 15; //初始数值
  int frameNumber = 0;
  int NUM_FRAMES = 14;
  ImageIcon[] images = new ImageIcon[NUM_FRAMES];
  int delay;
  Timer timer;
  boolean frozen = false;

//这个标签用来显示这只小狗
  JLabel picture;

public SliderDemo() {
    setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));

delay = 1000 / FPS_INIT;

//信息提醒标签
    JLabel sliderLabel = new JLabel("调整滑动杆,改变播放速度!", JLabel.CENTER);
    sliderLabel.setAlignmentX(Component.CENTER_ALIGNMENT);

//成立一个滑动杆,定义了最小值和最大值以及初始值
    JSlider framesPerSecond = new JSlider(JSlider.HORIZONTAL,
                       FPS_MIN, FPS_MAX, FPS_INIT);
    framesPerSecond.addChangeListener(this);

//定义滑动杆参数
    framesPerSecond.setMajorTickSpacing(10);//每10刻度标注一次
    framesPerSecond.setMinorTickSpacing(1);//最小刻度为1
    framesPerSecond.setPaintTicks(true);//绘制滑动杆上的刻度
    framesPerSecond.setPaintLabels(true);//在滑动历程中绘制滑动块
    framesPerSecond.setBorder(
        BorderFactory.createEmptyBorder(0,0,10,0));

//定义一个用来显示图片的标签
    picture = new JLabel();
    picture.setHorizontalAlignment(JLabel.CENTER);
    picture.setAlignmentX(Component.CENTER_ALIGNMENT);
    picture.setBorder(BorderFactory.createCompoundBorder(
        BorderFactory.createLoweredBevelBorder(),
        BorderFactory.createEmptyBorder(10,10,10,10)));
    updatePicture(0); //显示第一张图

//将成员增添到面板上
    add(sliderLabel);
    add(framesPerSecond);
    add(picture);
    setBorder(BorderFactory.createEmptyBorder(10,10,10,10));

//设置一个按时器来触发这个事件
    timer = new Timer(delay, this);
    timer.setInitialDelay(delay * 7); //在每轮循环停登时间
    timer.setCoalesce(true);//设置反复循环
  }
/**
*<br>办法阐明:增添一个窗体监听
*<br>输入参数:
*<br>返回范例:
*/
  void addWindowListener(Window w) {
    w.addWindowListener(this);
  }
  public void windowIconified(WindowEvent e) {
    stopAnimation();
  }
  public void windowDeiconified(WindowEvent e) {
    startAnimation();
  }
  public void windowOpened(WindowEvent e) {}
  public void windowClosing(WindowEvent e) {}
  public void windowClosed(WindowEvent e) {}
  public void windowActivated(WindowEvent e) {}
  public void windowDeactivated(WindowEvent e) {}
/**
*<br>办法阐明:对滑动杆举行监听
*<br>输入参数:ChangeEvent e 滑动杆变更事件
*<br>返回范例:
*/
  public void stateChanged(ChangeEvent e) {
    JSlider source = (JSlider)e.getSource();
    if (!source.getValueIsAdjusting()) {
      int fps = (int)source.getValue();//得到滑动杆的值
      if (fps == 0) {
        if (!frozen) stopAnimation();
      } else {
        delay = 1000 / fps;
        timer.setDelay(delay);
        timer.setInitialDelay(delay * 10);
        if (frozen) startAnimation();
      }
    }
  }
/**
*<br>办法阐明:开始动画
*<br>输入参数:
*<br>返回范例:
*/
  public void startAnimation() {
    timer.start();
    frozen = false;
  }
/**
*<br>办法阐明:终止动画
*<br>输入参数:
*<br>返回范例:
*/
  public void stopAnimation() {
    timer.stop();
    frozen = true;
  }
/**
*<br>办法阐明:事件监听
*<br>输入参数:
*<br>返回范例:
*/
  public void actionPerformed(ActionEvent e) {
    //改变图片帧
    if (frameNumber == (NUM_FRAMES - 1)) {
      frameNumber = 0;
    } else {
      frameNumber++;
    }

updatePicture(frameNumber); //显示下张图

if ( frameNumber==(NUM_FRAMES - 1)
     || frameNumber==(NUM_FRAMES/2 - 1) ) {
      timer.restart();
    }
  }
/**
*<br>办法阐明:绘制当前帧
*<br>输入参数:int frameNum 图片帧数数
*<br>返回范例:
*/
  protected void updatePicture(int frameNum) {
    if (images[frameNumber] == null) {
      images[frameNumber] = createImageIcon("images/doggy/T"
                         + frameNumber
                         + ".gif");
    }

//绘制图片
    if (images[frameNumber] != null) {
      picture.setIcon(images[frameNumber]);
    } else { //假如没有发现图片
      picture.setText("image #" + frameNumber + " not found");
    }
  }
/**
*<br>办法阐明:获得图片
*<br>输入参数:String path 图片途径
*<br>返回范例:ImageIcon 图片对象
*/
  protected static ImageIcon createImageIcon(String path) {
    java.net.URL imgURL = SliderDemo.class.getResource(path);
    if (imgURL != null) {
      return new ImageIcon(imgURL);
    } else {
      System.err.println("Couldn´t find file: " + path);
      return null;
    }
  }
/**
*<br>办法阐明:主办法
*<br>输入参数:
*<br>返回范例:
*/
  public static void main(String[] args) {
    JFrame.setDefaultLookAndFeelDecorated(true);

//定义窗体
    JFrame frame = new JFrame("SliderDemo");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

//实例化本类
    SliderDemo animator = new SliderDemo();
    animator.setOpaque(true);
    frame.setContentPane(animator);

//显示窗体
    frame.pack();
    frame.setVisible(true);
    animator.startAnimation();
  }
}


  以上是“<b>[JAVA100例]023、滑动杆</b>[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • <b>hosts是什么 hosts文件在什么位置 若何改正hosts</b>
  • <b>在 Windows 8 中手动安装语言包</b>
  • <b>五个常见 PHP数据库问题</b>
  • Windows中Alt键的12个高效快速的利用本领介绍
  • <b>MySQL ORDER BY 的实现解析</b>
  • <b>详解MySQL存储历程参数有三种范例(in、out、inout)</b>
  • <b>Win8系统恢复出来经典的开始菜单的办法</b>
  • <b>Win8系统花屏怎么办 Win8系统花屏的办理办法</b>
  • <b>Windows 7系统下无线网卡安装</b>
  • <b>为什么 Linux不需求碎片整理</b>
  • <b>Windows 8中删除账户的几种办法(图)</b>
  • <b>教你如安在win7下配置路由器</b>
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .