co.fxl.gui.gwt.GWTGridPanel.java Source code

Java tutorial

Introduction

Here is the source code for co.fxl.gui.gwt.GWTGridPanel.java

Source

/**
 * Copyright (c) 2010-2015 Dangelmayr IT GmbH. All rights reserved.
 *  
 * This file is part of FXL GUI API.
 *  
 * FXL GUI API 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 3 of the License, or
 * (at your option) any later version.
 *  
 * FXL GUI API 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 FXL GUI API.  If not, see <http://www.gnu.org/licenses/>.
 */
package co.fxl.gui.gwt;

import java.util.HashSet;
import java.util.Set;

import co.fxl.gui.api.IAlignment;
import co.fxl.gui.api.IElement;
import co.fxl.gui.api.IGridPanel;
import co.fxl.gui.api.IPadding;
import co.fxl.gui.impl.GridCellContainer;

import com.google.gwt.dom.client.Style;
import com.google.gwt.dom.client.Style.Unit;
import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.ui.Grid;
import com.google.gwt.user.client.ui.HTMLTable;
import com.google.gwt.user.client.ui.HTMLTable.CellFormatter;
import com.google.gwt.user.client.ui.HasHorizontalAlignment;
import com.google.gwt.user.client.ui.HasVerticalAlignment;
import com.google.gwt.user.client.ui.HorizontalPanel;
import com.google.gwt.user.client.ui.Widget;

public class GWTGridPanel extends GWTPanel<HTMLTable, IGridPanel> implements IGridPanel {

    public class GridCell extends GWTContainer<Widget> implements IGridCell {

        public int column;
        public int row;

        GridCell(int column, int row) {
            super((GWTPanel<?, IGridPanel>) GWTGridPanel.this);
            this.column = column;
            this.row = row;
        }

        @Override
        public void setComponent(Widget component) {
            gridCell = this;
            super.setComponent(component);
        }

        @Override
        public IGridCell clear() {
            gridCell = this;
            if (GridCell.this.widget != null)
                GWTGridPanel.this.container.widget.remove(GridCell.this.widget);
            return this;
        }

        @Override
        public IElement<?> element() {
            if (element.injector == null)
                element.injector = new Injector() {

                    @Override
                    public void inject(Widget nativeElement) {
                        setComponent(nativeElement);
                    }
                };
            return element;
        }

        public CellFormatter formatter() {
            return container.widget.getCellFormatter();
        }

        @Override
        public IGridCell height(int height) {
            formatter().setHeight(row, column, height + "px");
            return this;
        }

        @Override
        public IPadding padding() {
            return new co.fxl.gui.api.IPadding() {

                @Override
                public IPadding left(int pixel) {
                    style().setPaddingLeft(pixel, Unit.PX);
                    return this;
                }

                private Style style() {
                    return formatter().getElement(row, column).getStyle();
                }

                @Override
                public IPadding right(int pixel) {
                    style().setPaddingRight(pixel, Unit.PX);
                    return this;
                }

                @Override
                public IPadding top(int pixel) {
                    style().setPaddingTop(pixel, Unit.PX);
                    return this;
                }

                @Override
                public IPadding bottom(int pixel) {
                    style().setPaddingBottom(pixel, Unit.PX);
                    return this;
                }
            };
        }

        @Override
        public IGridCell width(int width) {
            formatter().setWidth(row, column, width + "px");
            return this;
        }

        @Override
        public IColor color() {
            return new GWTStyleColor(null) {
                @Override
                public void setColor(String color) {
                    DOM.setStyleAttribute(formatter().getElement(row, column), "backgroundColor", color);
                }

                @Override
                public IColor remove() {
                    com.google.gwt.dom.client.Style stylable = formatter().getElement(row, column).getStyle();
                    stylable.setBackgroundColor(null);
                    return this;
                }
            };
        }

        @Override
        public IGridCell visible(boolean visible) {
            formatter().setVisible(row, column, visible);
            return this;
        }

        @Override
        public IAlignment<IGridCell> align() {
            return new IAlignment<IGridCell>() {

                @Override
                public IGridCell begin() {
                    formatter().setHorizontalAlignment(row, column, HasHorizontalAlignment.ALIGN_LEFT);
                    return GridCell.this;
                }

                @Override
                public IGridCell center() {
                    formatter().setHorizontalAlignment(row, column, HasHorizontalAlignment.ALIGN_CENTER);
                    return GridCell.this;
                }

                @Override
                public IGridCell end() {
                    formatter().setHorizontalAlignment(row, column, HasHorizontalAlignment.ALIGN_RIGHT);
                    return GridCell.this;
                }
            };
        }

        @Override
        public IAlignment<IGridCell> valign() {
            return new IAlignment<IGridCell>() {

                @Override
                public IGridCell begin() {
                    formatter().setVerticalAlignment(row, column, HasVerticalAlignment.ALIGN_TOP);
                    return GridCell.this;
                }

                @Override
                public IGridCell center() {
                    formatter().setVerticalAlignment(row, column, HasVerticalAlignment.ALIGN_MIDDLE);
                    return GridCell.this;
                }

                @Override
                public IGridCell end() {
                    formatter().setVerticalAlignment(row, column, HasVerticalAlignment.ALIGN_BOTTOM);
                    return GridCell.this;
                }
            };
        }

        @Override
        public IBorder border() {
            return new GWTWidgetBorder(formatter().getElement(row, column));
        }

        @Override
        public int height() {
            return element.height();
        }

        @Override
        public int width() {
            return element.width();
        }

        @Override
        public IGridCell size(int width, int height) {
            return width(width).height(height);
        }

    }

    private GridCellContainer<GridCell> cells = new GridCellContainer<GridCell>();
    private GridCell gridCell;
    private String borderType;
    private String borderConfiguration;

    @SuppressWarnings("unchecked")
    public GWTGridPanel(GWTContainer<?> container) {
        super((GWTContainer<HTMLTable>) container);
        widget().setWidth("100%");
        indent(0).spacing(0);
    }

    @Override
    public void add(Widget widget) {
        if (borderType != null) {
            DOM.setStyleAttribute(container.widget.getCellFormatter().getElement(gridCell.row, gridCell.column),
                    borderType, borderConfiguration);
        }
        container.widget.setWidget(gridCell.row, gridCell.column, widget);
        CellFormatter formatter = gridCell.formatter();
        formatter.setHeight(gridCell.row, gridCell.column, "100%");
        if (!(widget instanceof HorizontalPanel))
            widget.setWidth("100%");
        // widget.setHeight("100%");
    }

    @Override
    public IGridPanel indent(int pixel) {
        container.widget.setCellPadding(pixel);
        return this;
    }

    @Override
    public IGridPanel spacing(int pixel) {
        container.widget.setCellSpacing(pixel);
        return this;
    }

    @Override
    public IGridCell cell(int column, int row) {
        gridCell = cells.getCell(column, row);
        if (gridCell == null) {
            gridCell = new GridCell(column, row);
            cells.putCell(column, row, gridCell);
            resize();
        }
        return gridCell;
    }

    private void resize() {
        Grid grid = (Grid) container.widget;
        if (gridCell.column >= grid.getColumnCount()) {
            grid.resizeColumns(gridCell.column + 1);
        }
        if (gridCell.row >= grid.getRowCount()) {
            grid.resizeRows(gridCell.row + 1);
        }
    }

    @Override
    public int columns() {
        Grid grid = (Grid) container.widget;
        return grid.getColumnCount();
    }

    @Override
    public int rows() {
        Grid grid = (Grid) container.widget;
        return grid.getRowCount();
    }

    @Override
    public IKey<IGridPanel> addGridClickListener(IGridClickListener listener) {
        return new GWTGridPanelClickHandler(this, listener);
    }

    @Override
    public IGridPanel resize(int columns, int rows) {
        Grid grid = (Grid) container.widget;
        grid.resize(rows, columns);
        return this;
    }

    @Override
    public IBorder cellBorder() {
        return new GWTBorder() {

            @Override
            public IBorder remove() {
                GWTGridPanel.this.borderType = null;
                return this;
            }

            @Override
            protected void update() {
                GWTGridPanel.this.borderType = borderType;
                GWTGridPanel.this.borderConfiguration = width + "px " + color + " " + style;
            }
        };
    }

    @Override
    public IGridRow row(final int row) {
        return new IGridRow() {

            @Override
            public int height() {
                throw new UnsupportedOperationException();
            }

            @Override
            public IGridPanel remove() {
                Grid grid = (Grid) container.widget;
                grid.removeRow(row);
                cells.removeRow(row);
                return GWTGridPanel.this;
            }

            @Override
            public IGridPanel insert() {
                Grid grid = (Grid) container.widget;
                grid.insertRow(row);
                cells.insertRow(row);
                return GWTGridPanel.this;
            }
        };
    }

    private Set<Integer> expandedColumns = new HashSet<Integer>();

    @Override
    public IGridColumn column(final int column) {
        if (columns() < column + 1)
            resize(column + 1, rows());
        return new IGridColumn() {

            @Override
            public IGridColumn expand() {
                expandedColumns.add(column);
                for (Integer i : expandedColumns)
                    container.widget.getColumnFormatter().setWidth(i, (100 / expandedColumns.size()) + "%");
                return this;
            }

            @Override
            public IGridColumn width(int width) {
                container.widget.getColumnFormatter().setWidth(column, width + "px");
                return this;
            }

            @Override
            public IGridColumn width(double width) {
                int d = (int) (width * 10000);
                double w = ((double) d) / 100;
                container.widget.getColumnFormatter().setWidth(column, w + "%");
                return this;
            }
        };
    }
}