Table Utilities : Grid Table « Swing Components « Java






Table Utilities

 
/*
Core SWING Advanced Programming 
By Kim Topley
ISBN: 0 13 083292 8       
Publisher: Prentice Hall  
*/

import javax.swing.*;
import javax.swing.table.*;
import java.awt.*;

public class TableUtilities {
  // Calculate the required width of a table column
  public static int calculateColumnWidth(JTable table, 
                  int columnIndex) {
    int width = 0;      // The return value
    int rowCount = table.getRowCount();      
    
    for (int i = 0; i < rowCount ; i++) {
      TableCellRenderer renderer = table.getCellRenderer(i, columnIndex);
      Component comp = renderer.getTableCellRendererComponent(
                table, table.getValueAt(i, columnIndex),
                false, false, i, columnIndex);
      int thisWidth = comp.getPreferredSize().width;
      if (thisWidth > width) {
        width = thisWidth;
      }
    }    

    return width;    
  }

  // Set the widths of every column in a table
  public static void setColumnWidths(JTable table, Insets insets,
                  boolean setMinimum, 
                  boolean setMaximum) {
    int columnCount = table.getColumnCount();
    TableColumnModel tcm = table.getColumnModel();
    int spare = (insets == null ? 0 : insets.left + insets.right);
    
    for (int i = 0; i < columnCount; i++) {
      int width = calculateColumnWidth(table, i);
      width += spare;

      TableColumn column = tcm.getColumn(i);
      column.setPreferredWidth(width);
      if (setMinimum == true) {
        column.setMinWidth(width);
      }
      if (setMaximum == true) {
        column.setMaxWidth(width);
      }
    }
  }

  // Sort an array of integers in place
  public static void sort(int[] values) {
    int length = values.length;
    if (length > 1) {
      for (int i = 0; i < length - 1 ; i++) {
        for (int j = i + 1; j < length; j++) {
          if (values[j] < values[i]) {
            int temp = values[i];
            values[i] = values[j];
            values[j] = temp;
          }
        }
      }
    }
  }
}

  

           
         
  








Related examples in the same category

1.HyperLink in TableHyperLink in Table
2.Column popup menuColumn popup menu
3.Tree TableTree Table
4.Swing Table in ComboBoxSwing Table in ComboBox
5.Tabbable Currency TableTabbable Currency Table
6.Icon Currency TableIcon Currency Table
7.MultiLine Header TableMultiLine Header Table
8.ToolTip TableToolTip Table
9.Striped Currency TableStriped Currency Table
10.CurrencyTableCurrencyTable
11.Calculated Column TableCalculated Column Table
12.Fraction Currency TableFraction Currency Table
13.Highlight Currency TableHighlight Currency Table
14.Highlight Currency Table 2Highlight Currency Table 2
15.MultiLine TableMultiLine Table
16.Updatable Highlight Currency TableUpdatable Highlight Currency Table
17.Editable Highlight Currency TableEditable Highlight Currency Table
18.ComboBox TableComboBox Table
19.Groupable(Group) Header ExampleGroupable(Group) Header Example
20.MultiWidth Header ExampleMultiWidth Header Example
21.MultiLine Header ExampleMultiLine Header Example
22.Table Row Header ExampleTable Row Header Example
23.Fixed Table Column ExampleFixed Table Column Example
24.Button Table ExampleButton Table Example
25.Radio Button Table ExampleRadio Button Table Example
26.RadioButton Table Example 2RadioButton Table Example 2
27.MultiLine Cell ExampleMultiLine Cell Example
28.Each Row with different Editor ExampleEach Row with different Editor Example
29.Multiple Component Table: Checkbox and ComboboxMultiple Component Table: Checkbox and Combobox
30.multiple Component Table 2: checkboxmultiple Component Table 2: checkbox
31.Union Data Table ExampleUnion Data Table Example
32.Total(Calculate) Row ExampleTotal(Calculate) Row Example
33.Colored Cell Table Example
34.multiple Font Cell Table Example
35.Multi Span Cell Table Example
36.Mixed Table Example
37.Pushable Table Header ExamplePushable Table Header Example
38.Sortable Table ExampleSortable Table Example
39.ToolTip Header Table ExampleToolTip Header Table Example
40.Indicator Table ExampleIndicator Table Example
41.Fixed Table Row ExampleFixed Table Row Example
42.multiple Row Header Example
43.Column Border Table ExampleColumn Border Table Example
44.Cell Border Table ExampleCell Border Table Example
45.Hide Column Table ExampleHide Column Table Example
46.Animated Icon Table ExampleAnimated Icon Table Example
47.Animated Icon Header Example
48.Editable Header Table ExampleEditable Header Table Example
49.Editable Header Table Example 2Editable Header Table Example 2
50.JSortTable