blob: fcdacee40d65088dda2a3869e8aaf9b6c6ef1143 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2010 BMW Car IT, Technische Universitaet Muenchen, and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* BMW Car IT - Initial API and implementation
* Technische Universitaet Muenchen - Major refactoring and extension
*******************************************************************************/
package org.eclipse.emf.edapt.common.ui;
import org.eclipse.jface.viewers.TableViewer;
import org.eclipse.swt.events.ControlAdapter;
import org.eclipse.swt.events.ControlEvent;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableColumn;
/**
* Table viewer which automatically resizes its column when it is resized
* (Columns will be resized to equal width)
*
* @author herrmama
* @author $Author$
* @version $Rev$
* @levd.rating RED Rev:
*/
public class AutoColumnSizeTableViewer extends TableViewer {
/**
* Flag to prevent infinite event sequences
*/
private boolean resized = false;
/**
* Constructor
*
* @param parent Parent composite
* @param style Style flags
*/
public AutoColumnSizeTableViewer(Composite parent, int style) {
super(parent, style);
}
/**
* {@inheritDoc}
*/
@Override
protected void hookControl(Control control) {
super.hookControl(control);
getTable().addControlListener(new ControlAdapter() {
@Override
public void controlResized(ControlEvent e) {
if (!resized) {
resizeColumns();
}
}
});
}
/**
* Resize columns to equal width
*
*/
private void resizeColumns() {
resized = true;
final Table table = getTable();
final int width = table.getClientArea().width / table.getColumnCount();
final TableColumn[] columns = table.getColumns();
for (int i = 0, n = table.getColumnCount(); i < n; i++) {
final TableColumn column = columns[i];
column.setWidth(width);
}
resized = false;
}
}