隐藏栏表范例 : 网格 « Swing组件 « 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 » Swing组件 » 网格屏幕截图 
隐藏栏表范例
隐藏栏表范例

// Example from http://www.crionics.com/products/opensource/faq/swing_ex/SwingExamples.html

/* (swing1.1.1beta2) */

import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.Graphics;
import java.awt.GridLayout;
import java.awt.Insets;
import java.awt.Rectangle;
import java.awt.SystemColor;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.util.Stack;

import javax.swing.Icon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.ScrollPaneLayout;
import javax.swing.SwingConstants;
import javax.swing.UIManager;
import javax.swing.border.AbstractBorder;
import javax.swing.plaf.basic.BasicArrowButton;
import javax.swing.table.JTableHeader;
import javax.swing.table.TableColumn;
import javax.swing.table.TableColumnModel;

/**
 @version 1.0 05/31/99
 */
public class HideColumnTableExample extends JFrame {

  public HideColumnTableExample() {
    super("HideColumnTable Example");

    JTable table = new JTable(57);
    ColumnButtonScrollPane pane = new ColumnButtonScrollPane(table);
    getContentPane().add(pane);
  }

  public static void main(String[] args) {
    HideColumnTableExample frame = new HideColumnTableExample();
    frame.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });
    frame.setSize(400100);
    frame.setVisible(true);
  }
}

class ColumnButtonScrollPane extends JScrollPane {
  Component columnButton;

  public ColumnButtonScrollPane(JTable table) {
    super(table);
    TableColumnModel cm = table.getColumnModel();
    LimitedTableHeader header = new LimitedTableHeader(cm);
    table.setTableHeader(header);
    columnButton = createUpperCorner(header);
    setCorner(UPPER_RIGHT_CORNER, columnButton);
    setVerticalScrollBarPolicy(VERTICAL_SCROLLBAR_ALWAYS);
    ColumnButtonScrollPaneLayout layout = new ColumnButtonScrollPaneLayout();
    setLayout(layout);
    layout.syncWithScrollPane(this);
  }

  protected Component createUpperCorner(JTableHeader header) {
    ColumnButton corner = new ColumnButton(header);
    return corner;
  }

  public class LimitedTableHeader extends JTableHeader {
    public LimitedTableHeader(TableColumnModel cm) {
      super(cm);
    }

    // actually, this is a not complete way. but easy one.
    // you can see last column painted wider, short time :)
    // If you don't like this kind cheap fake,
    // you have to overwrite the paint method in UI class.
    public void paintComponent(Graphics g) {
      super.paintComponent(g);
      columnButton.repaint();
    }
  }

  public class ColumnButton extends JPanel {
    JTable table;

    TableColumnModel cm;

    JButton revealButton;

    JButton hideButton;

    Stack stack;

    public ColumnButton(JTableHeader header) {
      setLayout(new GridLayout(12));
      setBorder(new LinesBorder(SystemColor.controlShadow, new Insets(0,
          100)));

      stack = new Stack();
      table = header.getTable();
      cm = table.getColumnModel();

      revealButton = createButton(header, SwingConstants.WEST);
      hideButton = createButton(header, SwingConstants.EAST);
      add(revealButton);
      add(hideButton);

      revealButton.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
          TableColumn column = (TableColumnstack.pop();
          cm.addColumn(column);
          if (stack.empty()) {
            revealButton.setEnabled(false);
          }
          hideButton.setEnabled(true);
          table.sizeColumnsToFit(-1);
        }
      });
      hideButton.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
          int n = cm.getColumnCount();
          TableColumn column = cm.getColumn(n - 1);
          stack.push(column);
          cm.removeColumn(column);
          if (n < 3) {
            hideButton.setEnabled(false);
          }
          revealButton.setEnabled(true);
          table.sizeColumnsToFit(-1);
        }
      });

      if (< cm.getColumnCount()) {
        hideButton.setEnabled(true);
      else {
        hideButton.setEnabled(false);
      }
      revealButton.setEnabled(false);
    }

    protected JButton createButton(JTableHeader header, int direction) {
      //int iconHeight = header.getPreferredSize().height - 6;
      int iconHeight = 8;
      JButton button = new JButton();
      button.setIcon(new ArrowIcon(iconHeight, direction, true));
      button.setDisabledIcon(new ArrowIcon(iconHeight, direction, false));
      button.setRequestFocusEnabled(false);
      button.setForeground(header.getForeground());
      button.setBackground(header.getBackground());
      button.setBorder(UIManager.getBorder("TableHeader.cellBorder"));
      return button;
    }
  }
}

class ColumnButtonScrollPaneLayout extends ScrollPaneLayout {

  public ColumnButtonScrollPaneLayout() {
    super.setVerticalScrollBarPolicy(VERTICAL_SCROLLBAR_ALWAYS);
  }

  public void setVerticalScrollBarPolicy(int x) {
    // VERTICAL_SCROLLBAR_ALWAYS
    super.setVerticalScrollBarPolicy(VERTICAL_SCROLLBAR_ALWAYS);
  }

  public void layoutContainer(Container parent) {
    super.layoutContainer(parent);

    if ((colHead == null|| (!colHead.isVisible()) || (upperRight == null)
        || (vsb == null)) {
      return;
    }

    Rectangle vsbR = new Rectangle(0000);
    vsbR = vsb.getBounds(vsbR);

    Rectangle colHeadR = new Rectangle(0000);
    colHeadR = colHead.getBounds(colHeadR);
    colHeadR.width -= vsbR.width;
    colHead.getBounds(colHeadR);

    Rectangle upperRightR = upperRight.getBounds();
    upperRightR.x -= vsbR.width;
    upperRightR.width += vsbR.width + 1;
    upperRight.setBounds(upperRightR);
  }
}

class LinesBorder extends AbstractBorder implements SwingConstants {
  protected int northThickness;

  protected int southThickness;

  protected int eastThickness;

  protected int westThickness;

  protected Color northColor;

  protected Color southColor;

  protected Color eastColor;

  protected Color westColor;

  public LinesBorder(Color color) {
    this(color, 1);
  }

  public LinesBorder(Color color, int thickness) {
    setColor(color);
    setThickness(thickness);
  }

  public LinesBorder(Color color, Insets insets) {
    setColor(color);
    setThickness(insets);
  }

  public void paintBorder(Component c, Graphics g, int x, int y, int width,
      int height) {
    Color oldColor = g.getColor();

    g.setColor(northColor);
    for (int i = 0; i < northThickness; i++) {
      g.drawLine(x, y + i, x + width - 1, y + i);
    }
    g.setColor(southColor);
    for (int i = 0; i < southThickness; i++) {
      g
          .drawLine(x, y + height - i - 1, x + width - 1, y + height
              - i - 1);
    }
    g.setColor(eastColor);
    for (int i = 0; i < westThickness; i++) {
      g.drawLine(x + i, y, x + i, y + height - 1);
    }
    g.setColor(westColor);
    for (int i = 0; i < eastThickness; i++) {
      g.drawLine(x + width - i - 1, y, x + width - i - 1, y + height - 1);
    }

    g.setColor(oldColor);
  }

  public Insets getBorderInsets(Component c) {
    return new Insets(northThickness, westThickness, southThickness,
        eastThickness);
  }

  public Insets getBorderInsets(Component c, Insets insets) {
    return new Insets(northThickness, westThickness, southThickness,
        eastThickness);
  }

  public boolean isBorderOpaque() {
    return true;
  }

  public void setColor(Color c) {
    northColor = c;
    southColor = c;
    eastColor = c;
    westColor = c;
  }

  public void setColor(Color c, int direction) {
    switch (direction) {
    case NORTH:
      northColor = c;
      break;
    case SOUTH:
      southColor = c;
      break;
    case EAST:
      eastColor = c;
      break;
    case WEST:
      westColor = c;
      break;
    default:
    }
  }

  public void setThickness(int n) {
    northThickness = n;
    southThickness = n;
    eastThickness = n;
    westThickness = n;
  }

  public void setThickness(Insets insets) {
    northThickness = insets.top;
    southThickness = insets.bottom;
    eastThickness = insets.right;
    westThickness = insets.left;
  }

  public void setThickness(int n, int direction) {
    switch (direction) {
    case NORTH:
      northThickness = n;
      break;
    case SOUTH:
      southThickness = n;
      break;
    case EAST:
      eastThickness = n;
      break;
    case WEST:
      westThickness = n;
      break;
    default:
    }
  }

  public void append(LinesBorder b, boolean isReplace) {
    if (isReplace) {
      northThickness = b.northThickness;
      southThickness = b.southThickness;
      eastThickness = b.eastThickness;
      westThickness = b.westThickness;
    else {
      northThickness = Math.max(northThickness, b.northThickness);
      southThickness = Math.max(southThickness, b.southThickness);
      eastThickness = Math.max(eastThickness, b.eastThickness);
      westThickness = Math.max(westThickness, b.westThickness);
    }
  }

  public void append(Insets insets, boolean isReplace) {
    if (isReplace) {
      northThickness = insets.top;
      southThickness = insets.bottom;
      eastThickness = insets.right;
      westThickness = insets.left;
    else {
      northThickness = Math.max(northThickness, insets.top);
      southThickness = Math.max(southThickness, insets.bottom);
      eastThickness = Math.max(eastThickness, insets.right);
      westThickness = Math.max(westThickness, insets.left);
    }
  }

}

class ArrowIcon implements Icon, SwingConstants {
  private static final int DEFAULT_SIZE = 11;

  //private static final int DEFAULT_SIZE = 5;

  private int size;

  private int iconSize;

  private int direction;

  private boolean isEnabled;

  private BasicArrowButton iconRenderer;

  public ArrowIcon(int direction, boolean isPressedView) {
    this(DEFAULT_SIZE, direction, isPressedView);
  }

  public ArrowIcon(int iconSize, int direction, boolean isEnabled) {
    this.size = iconSize / 2;
    this.iconSize = iconSize;
    this.direction = direction;
    this.isEnabled = isEnabled;
    iconRenderer = new BasicArrowButton(direction);
  }

  public void paintIcon(Component c, Graphics g, int x, int y) {
    iconRenderer.paintTriangle(g, x, y, size, direction, isEnabled);
  }

  public int getIconWidth() {
    //int retCode;
    switch (direction) {
    case NORTH:
    case SOUTH:
      return iconSize;
    case EAST:
    case WEST:
      return size;
    }
    return iconSize;
  }

  public int getIconHeight() {
    switch (direction) {
    case NORTH:
    case SOUTH:
      return size;
    case EAST:
    case WEST:
      return iconSize;
    }
    return size;
  }
}

           
       
Related examples in the same category
1. 超链接表超链接表
2. 柱弹出菜单柱弹出菜单
3. 树表树表
4. 图形界面组合表图形界面组合表
5. Tabbable货币表Tabbable货币表
6. 图标货币表图标货币表
7. 多行标题表多行标题表
8. 工具提示表工具提示表
9. 条纹货币表条纹货币表
10. CurrencyTableCurrencyTable
11. 计算栏表计算栏表
12. 表公用事业
13. 部分货币表部分货币表
14. 突出货币表突出货币表
15. 突出货币表2突出货币表2
16. 多行表多行表
17. 更新标明货币表更新标明货币表
18. 编辑标明货币表编辑标明货币表
19. 组合表组合表
20. Groupable (组合)标题范例Groupable (组合)标题范例
21. MultiWidth标题范例MultiWidth标题范例
22. 多行标题范例多行标题范例
23. 表行标题范例表行标题范例
24. 固定表列范例固定表列范例
25. 按钮表范例按钮表范例
26. 单选按钮表范例单选按钮表范例
27. RadioButton表范例2RadioButton表范例2
28. 多行单元范例多行单元范例
29. 每一行的不同编辑器范例每一行的不同编辑器范例
30. 多分量表:复选框和组合表多分量表:复选框和组合表
31. 多种成分表2 :复选框多种成分表2 :复选框
32. 联盟数据表实例联盟数据表实例
33. 共计(计算)行范例共计(计算)行范例
34. 有色单元表范例
35. 多种字体单元表范例
36. 多跨度单元表范例
37. 混合表范例
38. Pushable表头范例Pushable表头范例
39. 排序表范例排序表范例
40. 工具提示头表范例工具提示头表范例
41. 指标表范例指标表范例
42. 固定表行范例固定表行范例
43. 多行标题范例
44. 塔边境表范例塔边境表范例
45. 单元边境表范例单元边境表范例
46. 动画Icon表范例动画Icon表范例
47. 动画图标头范例
48. 编辑头表范例编辑头表范例
49. 编辑头表范例2编辑头表范例2
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.