`

SWT表格列随着控件变化自动变化

阅读更多

源程序来自:snippet77

 

/*******************************************************************************
 * Copyright (c) 2000, 2004 IBM Corporation 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.snippets;

/*
 * Table example snippet: resize columns as table resizes
 *
 * For a list of all SWT example snippets see
 * http://www.eclipse.org/swt/snippets/
 */
import org.eclipse.swt.*;
import org.eclipse.swt.events.*;
import org.eclipse.swt.graphics.*;
import org.eclipse.swt.layout.*;
import org.eclipse.swt.widgets.*;

public class Snippet77 {

public static void main(String[] args) {
	Display display = new Display();
	Shell shell = new Shell(display);
	shell.setLayout(new FillLayout());
		
	final Composite comp = new Composite(shell, SWT.NONE);
	final Table table = new Table(comp, SWT.BORDER | SWT.V_SCROLL);
	table.setHeaderVisible(true);
	table.setLinesVisible(true);
	final TableColumn column1 = new TableColumn(table, SWT.NONE);
	column1.setText("Column 1");
	final TableColumn column2 = new TableColumn(table, SWT.NONE);
	column2.setText("Column 2");
	for (int i = 0; i < 10; i++) {
		TableItem item = new TableItem(table, SWT.NONE);
		item.setText(new String[] {"item 0" + i, "item 1"+i});
	}
	comp.addControlListener(new ControlAdapter() {
		public void controlResized(ControlEvent e) {
			Rectangle area = comp.getClientArea();
			Point preferredSize = table.computeSize(SWT.DEFAULT, SWT.DEFAULT);
			int width = area.width - 2*table.getBorderWidth();
			if (preferredSize.y > area.height + table.getHeaderHeight()) {
				// Subtract the scrollbar width from the total column width
				// if a vertical scrollbar will be required
				Point vBarSize = table.getVerticalBar().getSize();
				width -= vBarSize.x;
			}
			Point oldSize = table.getSize();
			if (oldSize.x > area.width) {
				// table is getting smaller so make the columns 
				// smaller first and then resize the table to
				// match the client area width
				column1.setWidth(width/3);
				column2.setWidth(width - column1.getWidth());
				table.setSize(area.width, area.height);
			} else {
				// table is getting bigger so make the table 
				// bigger first and then make the columns wider
				// to match the client area width
				table.setSize(area.width, area.height);
				column1.setWidth(width/3);
				column2.setWidth(width - column1.getWidth());
			}
		}
	});
		
	shell.open();
	while (!shell.isDisposed()) {
		if (!display.readAndDispatch())
			display.sleep();
	}
	display.dispose();
}
}

 

效果图:

 

上面表格可以随着窗口的大小变化一起变化。

总结:现在看这个程序非常的简单,当时记得一开始想实现这个功能的时候找了半天,老是觉得是不是可以设置一个table的什么参数,就能够自适应了。其实,这里就是没有看清问题的本质,要实现的就是要当窗口变化时,改变table的布局就行,这样就自然有了上面的方法注册窗口或composite的变化就行了。

  • 大小: 5.3 KB
分享到:
评论

相关推荐

    swt-demo.zip

    这通常通过SWT的布局管理器实现,如GridLayout或FillLayout,它们能够帮助控件适应容器的大小变化。 4. 滚动条:当图片列表超出视口范围时,添加滚动条可以让用户浏览不可见的部分。在SWT中,可以使用...

    swt网页布局介绍Layout

    4. ** MigLayout **:MigLayout是一个第三方布局管理器,它提供了更高级的功能,如复杂的约束条件、自动对齐、表格布局等。在SWT中,可以通过JFace的`GridLayoutFactory`或者直接使用MigLayout的API来实现。 5. **...

    SWT/JFace官方实例

    3. **数据绑定**:JFace 的数据绑定功能可以将模型数据与界面控件自动关联,当数据变化时,界面会自动更新;反之,用户在界面上的更改也会反映到数据模型中。这大大简化了数据驱动界面的实现。 4. **视图和编辑器**...

    swt/jface tableViewer开发简化

    2. **设置表列**: 使用`TableViewerColumn`来定义表格的列,可以通过`setLabelProvider`设置列头文本,通过`setCellModifier`设置单元格编辑器等。 3. **绑定数据模型**: `tableViewer.setInput(data)`用于设置表格...

    Java程序设计之swt教程

    然后根据所使用的Eclipse版本,找到对应的SWT库文件(例如`org.eclipse.swt.win32.win32.x86_3.2.1.v3235.jar`),其中的版本号会随Eclipse版本的变化而变化。 - **库文件解压**:使用`jar xf org.eclipse.swt.win32...

    CheckBoxCellEditor.zip_CheckboxCellEditor_SWT_cell

    创建`CheckBoxCellEditor`时,通常需要指定它的父控件(通常是表格的列)以及其初始状态(默认是否选中)。 在`MyCheckboxCellEditor.java`中,我们可能会看到以下关键步骤: 1. **初始化**:创建`...

    可以编辑的table

    在 Eclipse SWT(Standard Widget Toolkit)中,`Table` 控件提供了显示数据列表的功能。然而,默认情况下,`Table` 是只读的,不允许用户进行编辑。为了使 `Table` 可编辑,SWT 提供了 `TableEditor` 类,它可以在 ...

    Eclipse从入门到精通2

    1. **创建TableViewer实例**:首先需要创建TableViewer实例,并将其绑定到SWT.Table控件上。 2. **设置内容器**:定义一个内容器,该内容器负责管理TableViewer的数据模型。 3. **设置标签器**:通过标签器来指定每...

    JFace-viewer

    JFace Viewer遵循观察者模式,当数据模型发生变化时,Viewer会自动更新界面,保持与数据同步。这种特性使得开发者无需关心界面刷新的问题,只需关注数据的变动。 **5. 排序与过滤** JFace Viewer提供了内置的排序和...

Global site tag (gtag.js) - Google Analytics