captureplugin.drivers.defaultdriver.configpanels.ChannelPanel.java Source code

Java tutorial

Introduction

Here is the source code for captureplugin.drivers.defaultdriver.configpanels.ChannelPanel.java

Source

/*
 * CapturePlugin by Andreas Hessel (Vidrec@gmx.de), Bodo Tasche
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 * CVS information:
 *  $RCSfile$
 *   $Source$
 *     $Date: 2009-09-04 11:15:55 +0200 (Fri, 04 Sep 2009) $
 *   $Author: bananeweizen $
 * $Revision: 5953 $
 */
package captureplugin.drivers.defaultdriver.configpanels;

import java.awt.Component;

import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.ListSelectionModel;
import javax.swing.event.AncestorEvent;
import javax.swing.event.AncestorListener;
import javax.swing.table.DefaultTableCellRenderer;
import javax.swing.table.TableCellEditor;

import util.ui.ChannelTableCellRenderer;
import util.ui.Localizer;
import captureplugin.drivers.defaultdriver.DeviceConfig;

import com.jgoodies.forms.builder.PanelBuilder;
import com.jgoodies.forms.layout.CellConstraints;
import com.jgoodies.forms.layout.FormLayout;

/**
 * This Panel makes it possible to assign external names to channels
 */
public class ChannelPanel extends JPanel {

    /** Translator */
    private static final Localizer mLocalizer = Localizer.getLocalizerFor(ChannelPanel.class);

    private JTable mChannelTable = new JTable();

    /** Settings */
    private DeviceConfig mData;

    /**
     * Creates the Panel
     * @param data Data to use
     */
    public ChannelPanel(DeviceConfig data) {
        mData = data;
        createPanel();
    }

    /**
     * creates a JPanel for managing the channels
     */
    private void createPanel() {
        CellConstraints cc = new CellConstraints();
        PanelBuilder pb = new PanelBuilder(new FormLayout("5dlu,pref:grow,5dlu", "pref,5dlu,fill:default:grow"),
                this);
        pb.setDefaultDialogBorder();

        ChannelTableModel tableModel = new ChannelTableModel(mData);
        mChannelTable.setModel(tableModel);
        mChannelTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        mChannelTable.getTableHeader().setReorderingAllowed(false);
        mChannelTable.getColumnModel().getColumn(0).setCellRenderer(new ChannelTableCellRenderer());
        mChannelTable.getColumnModel().getColumn(1).setCellRenderer(new DefaultTableCellRenderer() {
            public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected,
                    boolean hasFocus, int row, int column) {
                JPanel background = new JPanel(new FormLayout("default:grow", "fill:default:grow"));
                JLabel label = new JLabel(value.toString());
                label.setOpaque(false);

                if (isSelected) {
                    background.setBackground(table.getSelectionBackground());
                    label.setForeground(table.getSelectionForeground());
                } else {
                    background.setBackground(table.getBackground());
                }

                background.add(label, new CellConstraints().xy(1, 1));

                return background;
            }
        });

        JScrollPane sp = new JScrollPane(mChannelTable);

        addAncestorListener(new AncestorListener() {
            public void ancestorAdded(AncestorEvent event) {
            }

            public void ancestorMoved(AncestorEvent event) {
            }

            public void ancestorRemoved(AncestorEvent event) {
                if (mChannelTable.isEditing()) {
                    TableCellEditor editor = mChannelTable.getCellEditor();
                    if (editor != null) {
                        editor.stopCellEditing();
                    }
                }
            }
        });

        pb.addSeparator(mLocalizer.msg("ChannelNames", "Channel Names"), cc.xyw(1, 1, 3));
        pb.add(sp, cc.xy(2, 3));
    }

}