Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0cbbf5cbaaf5df17a0bd159b85c04e881c2772b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*******************************************************************************
 * Copyright (c) 2018 Red Hat and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Red Hat - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.tests.gtk.snippets;


import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableColumn;

public class Bug151308_TableGetClientAreaColumn {
	public static void main(String[] args) {
		Display display = new Display();
		Shell shell = new Shell(display);
		shell.setBounds(10,10,400,300);
		final Table table = new Table(shell, SWT.NONE);
		table.setBounds(10,10,350,250);
		table.setHeaderVisible(true);
		TableColumn col0 = new TableColumn(table, SWT.NONE);
		col0.setText("column 0");
		TableColumn col1 = new TableColumn(table, SWT.NONE);
		col1.setText("column 1");
		col0.pack();
		System.out.println("col0 width: " + col0.getWidth());
		System.out.println("widget.table clientArea: " + table.getClientArea());
		System.out.println("col0 width: " + col0.getWidth()); // <--- !!!
		shell.open();
		while (!shell.isDisposed()) {
			if (!display.readAndDispatch()) display.sleep();
		}
		display.dispose();
	}
}

Back to the top