Package org.itsnat.feashow.features.comp.tables

Source Code of org.itsnat.feashow.features.comp.tables.TableRowSelectionDecoration

/*
* This file is not part of the ItsNat framework.
*
* Original source code use and closed source derivatives are authorized
* to third parties with no restriction or fee.
* The original source code is owned by the author.
*
* This program is distributed AS IS 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.
*
* (C) Innowhere Software a service of Jose Maria Arranz Santamaria, Spanish citizen.
*/

package org.itsnat.feashow.features.comp.tables;

import javax.swing.ListSelectionModel;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
import org.itsnat.comp.table.ItsNatTable;
import org.itsnat.comp.table.ItsNatTableUI;
import org.w3c.dom.Element;
import org.w3c.dom.html.HTMLTableRowElement;

public class TableRowSelectionDecoration implements ListSelectionListener
{
    protected ItsNatTable comp;

    public TableRowSelectionDecoration(ItsNatTable comp)
    {
        this.comp = comp;
    }

    public void valueChanged(ListSelectionEvent e)
    {
        if (e.getValueIsAdjusting())
            return;

        int first = e.getFirstIndex();
        int last = e.getLastIndex();

        ListSelectionModel selModel = (ListSelectionModel)e.getSource();
        for(int i = first; i <= last; i++)
            decorateSelection(i,selModel.isSelectedIndex(i));
    }

    public void decorateSelection(int row,boolean selected)
    {
        ItsNatTableUI tableUI = comp.getItsNatTableUI();
        Element rowElem = tableUI.getRowElementAt(row);
        if (rowElem instanceof HTMLTableRowElement)
            decorateSelection(rowElem,selected);
        else
        {   // Free Table
            int cols = comp.getTableModel().getColumnCount();
            for(int i = 0; i < cols; i++)
            {
                Element cellElem = tableUI.getCellContentElementAt(row,i);
                if (cellElem == null) continue;
                decorateSelection(cellElem,selected);
            }
        }
    }

    public void decorateSelection(Element elem,boolean selected)
    {
        if (selected)
            setAttribute(elem,"style","background:rgb(0,0,255); color:white;");
        else
            elem.removeAttribute("style");
    }

    public static void setAttribute(Element elem,String name,String value)
    {
        String old = elem.getAttribute(name);
        if (old.equals(value)) return; // Avoids redundant operations

        elem.setAttribute(name,value);
    }
}
TOP

Related Classes of org.itsnat.feashow.features.comp.tables.TableRowSelectionDecoration

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.