在一个表中使用滑动控件 : 表生成器编辑器 « 图形用户界面 « 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 
*/
// MixerTest.java
//A test application for showing Volume data in a JTable using the
//custom VolumneRenderer class.
//

import java.awt.BorderLayout;
import java.awt.Component;

import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JSlider;
import javax.swing.JTable;
import javax.swing.SwingConstants;
import javax.swing.table.AbstractTableModel;
import javax.swing.table.TableCellRenderer;

public class MixerTest extends JFrame {

  public MixerTest() {
    super("Customer Editor Test");
    setSize(600160);
    setDefaultCloseOperation(EXIT_ON_CLOSE);

    MixerModel test = new MixerModel();
    test.dump();
    JTable jt = new JTable(test);
    jt.setDefaultRenderer(Volume.class, new VolumeRenderer());
    JScrollPane jsp = new JScrollPane(jt);
    getContentPane().add(jsp, BorderLayout.CENTER);
  }

  public static void main(String args[]) {
    MixerTest mt = new MixerTest();
    mt.setVisible(true);
  }
}
//MixerModel.java
//An audio mixer table data model. This model contains the following columns:
//<br> + Track name (String)
//<br> + Track start time (String)
//<br> + Track stop time (String)
//<br> + Left channel volume (Volume, 0 . . 100)
//<br> + Right channel volume (Volume, 0 . . 100)
//

class MixerModel extends AbstractTableModel {

  String headers[] "Track""Start""Stop""Left Volume",
      "Right Volume" };

  Class columnClasses[] String.class, String.class, String.class,
      Volume.class, Volume.class };

  Object data[][] {
      "Bass""0:00:000""1:00:000"new Volume(56)new Volume(56) },
      "Strings""0:00:000""0:52:010"new Volume(72)new Volume(52) },
      "Brass""0:08:000""1:00:000"new Volume(99)new Volume(0) },
      "Wind""0:08:000""1:00:000"new Volume(0)new Volume(99) }};

  public int getRowCount() {
    return data.length;
  }

  public int getColumnCount() {
    return headers.length;
  }

  public Class getColumnClass(int c) {
    return columnClasses[c];
  }

  public String getColumnName(int c) {
    return headers[c];
  }

  public boolean isCellEditable(int r, int c) {
    return true;
  }

  public Object getValueAt(int r, int c) {
    return data[r][c];
  }

  // Ok, do something extra here so that if we get a String object back (from
  // a
  // text field editor) we can still store that as a valid Volume object. If
  // it's just a string, then stick it directly into our data array.
  public void setValueAt(Object value, int r, int c) {
    if (c >= 3) {
      ((Volumedata[r][c]).setVolume(value);
    else {
      data[r][c= value;
    }
  }

  // A quick debugging utility to dump out the contents of our data structure
  public void dump() {
    for (int i = 0; i < data.length; i++) {
      System.out.print("|");
      for (int j = 0; j < data[0].length; j++) {
        System.out.print(data[i][j"|");
      }
      System.out.println();
    }
  }
}

//Volume.java
//A simple data structure for track volumes on a mixer.
//

class Volume {
  private int volume;

  public Volume(int v) {
    setVolume(v);
  }

  public Volume() {
    this(50);
  }

  public void setVolume(int v) {
    volume = (v < : v > 100 100 : v);
  }

  public void setVolume(Object v) {
    if (instanceof String) {
      setVolume(Integer.parseInt((Stringv));
    else if (instanceof Number) {
      setVolume(((Numberv).intValue());
    else if (instanceof Volume) {
      setVolume(((Volumev).getVolume());
    }
  }

  public int getVolume() {
    return volume;
  }

  public String toString() {
    return String.valueOf(volume);
  }
}

//VolumeRenderer.java
//A slider renderer for volume values in a table.
//

class VolumeRenderer extends JSlider implements TableCellRenderer {

  public VolumeRenderer() {
    super(SwingConstants.HORIZONTAL);
    // set a starting size...some 1.2/1.3 systems need this
    setSize(11515);
  }

  public Component getTableCellRendererComponent(JTable table, Object value,
      boolean isSelected, boolean hasFocus, int row, int column) {
    if (value == null) {
      return this;
    }
    if (value instanceof Volume) {
      setValue(((Volumevalue).getVolume());
    else {
      setValue(0);
    }
    return this;
  }
}

           
         
  
Related examples in the same category
1. 在一个表格遮荫行和列
2. 黄色列
3. Using Built-In Cell Renderers and Editors in a JTable Component
4. 得到默认单元格
5. 得到默认单元格编辑
6. 在表格组件创建自定义单元格
7. Creating a Class-Based Custom Cell Renderer in a JTable Component
8. 表格单元格编辑: ComboBoxCellEditor
9. Table with a custom cell renderer and editor for the color dataTable with a custom cell renderer and editor for the color data
10. Table with initialized column sizes and a combo box editorTable with initialized column sizes and a combo box editor
11. StockTable 3: CellRendererStockTable 3: CellRenderer
12. 彩色表CellRenderer彩色表CellRenderer
13. Color Table CellRendererColor Table CellRenderer
14. Change Table cell background with column renderer Change Table cell background with column renderer
15. 安装不同表生成器,奇偶行安装不同表生成器,奇偶行
16. A table that allows the user to pick a color from a pulldown listA table that allows the user to pick a color from a pulldown list
17. MixerModel和滑块控件数值MixerModel和滑块控件数值
18. 表编辑:编辑颜色列表编辑:编辑颜色列
19. 并在表格中的JComboBox使用Tab键
20. 创建自定义表单元格编辑器
21. 表格中防止无效值单元格
22. Setting the Activation Click Count for a Table Cell Editor in a JTable Component
23. 在一个表格组件使用JComboBox
24. 使用名单控件作为单元格控件:JSpinner编辑器表格组件
25. 在一个表格栏绘制图像
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.