blob: b52a7c2aa3a12ea8df040cd3d5238a187b0ae947 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2012, 2021 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.ecommons.waltable.grid.labeled;
import static org.eclipse.statet.ecommons.waltable.coordinate.Orientation.VERTICAL;
import org.eclipse.statet.ecommons.waltable.coordinate.Orientation;
import org.eclipse.statet.ecommons.waltable.grid.GridRegion;
import org.eclipse.statet.ecommons.waltable.grid.layer.PlaceholderLayer;
import org.eclipse.statet.ecommons.waltable.layer.CompositeLayer;
import org.eclipse.statet.ecommons.waltable.layer.ILayer;
public class ExtColumnHeaderLayer extends CompositeLayer {
public ExtColumnHeaderLayer(final ILayer columnHeaderLayer) {
super(1, 2);
setChildLayer(GridRegion.COLUMN_HEADER, columnHeaderLayer, 0, 0);
setChildLayer(GridRegion.HEADER_PLACEHOLDER, new PlaceholderLayer(columnHeaderLayer, null,
false, columnHeaderLayer.getLayerPainter() ), 0, 1);
}
@Override
protected boolean ignoreRef(final Orientation orientation) {
return (orientation == VERTICAL);
}
public void setSpaceSize(final int pixel) {
((PlaceholderLayer) getChildByLabel(GridRegion.HEADER_PLACEHOLDER).layer)
.setSize(pixel);
}
}