eclipse html 布局,Eclipse Forms的两个新布局TableWrapLayout和ColumnLayout

1. TableWrapLayout

和SWT的GridLayout是一样的,它也有layout data,叫做TableWrapData。都是以列进行划分,Control一个一个放进去。

主要作用就是:使得文本控件Label,Text,Hyperlink等可以根据宽度,wrap显示文本,不够宽度就显示多行。注意,文本控件样式要有SWT.WRAP,TableWrapLayout才会起效果。

如果文本控件的width是给定的(width hint of TableWrapData),则会自动计算它的高度,长内容会wrap显示成多行。

如果文本控件没有设置width,则先计算该Column有多宽,然后根据列的宽度计算文本控件的高度。

如果没有一列拥有wrappable control(可wrap的文本控件),TableWrapLayout的显示效果就跟GridLayout很像了。

TableWrapLayout和GridLayout的本质区别:

TableWrapLayout只能在水平方向上grab excess space,在垂直方向上不能grab excess space。因为TableWrapLayout的高度是根据width计算出来的,控件设置宽度了就根据控件的width计算高度,控件没有宽度,就根据column宽度计算高度。当某行的高度比控件高度高时(通常是由其它列的控件撑高的),可以设置TableWrapData.TOP, TableWrapData.MIDDLE和TableWrapData.BOTTOM,让控件显示在CELL的上面,中间或者下面。

TableWrapData仍然有grapVertical变量,但它不是让控件占据父控件的多余高度。它有特别用处:当一个控件占据多行,控件高度是设定好的,其它行的控件需要划分多余的高度,grabVertical是true的,就会抢占多余的高度;如果都是true,就根据内容进行分配。

c33c9f0d6426ad5d3f190f7b06c8e40d.png

代码示例

ScrolledForm sc = toolkit.createScrolledForm(parent);

Form form = sc.getForm();

form.setText("Hello, Eclipse Forms");

TableWrapLayout layout = new TableWrapLayout();

layout.numColumns = 2;

form.getBody().setLayout(layout);

layout.numColumns = 3;

Label label;

TableWrapData td;

label = toolkit.createLabel(form.getBody(),

"Some text to put in the first column", SWT.WRAP);

td = new TableWrapData(TableWrapData.LEFT, TableWrapData.BOTTOM);

label.setLayoutData(td);

label = toolkit.createLabel(form.getBody(),

"Some text to put in the second column and make it a bit "

+ "longer so that we can see what happens with column "

+ "distribution. This text must be the longest so that it can "

+ "get more space allocated to the columns it belongs to.",

SWT.WRAP);

td = new TableWrapData();

td.colspan = 2;

label.setLayoutData(td);

label = toolkit.createLabel(form.getBody(),

"This text will span two rows and should not grow the column.",

SWT.WRAP);

td = new TableWrapData();

td.rowspan = 2;

label.setLayoutData(td);

label = toolkit.createLabel(form.getBody(),

"This text goes into column 2 and consumes only one cell",

SWT.WRAP);

label.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB));

label = toolkit.createLabel(form.getBody(),

"This text goes into column 3 and consumes only one cell too",

SWT.WRAP);

label.setLayoutData(new TableWrapData(TableWrapData.FILL));

label = toolkit.createLabel(form.getBody(),

"This text goes into column 2 and consumes only one cell",

SWT.WRAP);

label.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB));

label = toolkit.createLabel(form.getBody(),

"This text goes into column 3 and consumes only one cell too",

SWT.WRAP);

label.setLayoutData(new TableWrapData(TableWrapData.FILL));

form.getBody().setBackground(form.getBody().getDisplay().

getSystemColor(SWT.COLOR_WIDGET_BACKGROUND));

显示样式:

ba2a37b13afd2053a6bc466f716f2ca4.png

第一个label,显示在CELL的底部。当有多个控件在Wrap时,TableWrapLayout会考虑控件的内容(minimu and maximuth),来给列或者控件自动分配宽度。这个是HTML Table的layout算法,详细内容可以看W3C recommendations for HTML table auto-layout.

2. ColumnLayout

RowLayout,水平排列,wrap为true,会在宽度不足时,换到下一行显示。

Composite comp = toolkit.createComposite(parent);

RowLayout rowLayout = new RowLayout();

rowLayout.wrap = true;

comp.setLayout(rowLayout);

for (int i = 0; i < 30; ++i) {

toolkit.createButton(comp, "Button " + i, SWT.FLAT);

}

d6ea57a3fed42ca45e6f7dccb165b2e9.png

这里有个问题,就是列对不齐,因为它没有列的概念。使用ColumnLayout可以完美解决这个问题,动态的根据宽度,设定显示几列。只需要设置minNumColumns和maxNumColumns,最小有几列和最大有几列。

Composite comp = toolkit.createComposite(parent);

ColumnLayout columnLayout = new ColumnLayout();

columnLayout.minNumColumns = 3;

columnLayout.maxNumColumns = 7;

comp.setLayout(columnLayout);

for (int i = 0; i < 30; ++i) {

toolkit.createButton(comp, "Button " + i, SWT.FLAT);

}

59fcc9eeb292b0bb4a923eef115e1f45.png

在ScrolledForm里,RowColumn wrap不起作用,因为ScrolledForm根据内容来计算滚动条,直接全部显示成一行了。

65af5e6d6a26248fef0f4a26a1f4ed22.png

但是我们用ColumnLayout,内容会根据ScrolledForm宽度,动态显示几列,滚动条正常显示。

36478928a5a0061b4d6d8b78e5e1191a.png

3. 代码

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Element UI 的 el-table 组件默认不支持无限滚动,需要通过自定义 slot 和监听 scroll 事件来实现。 以下是一个简单的例子: ```html <template> <div class="table-wrap" ref="tableWrap" @scroll="handleScroll"> <el-table :data="tableData" v-loading="loading" border> <el-table-column prop="name" label="Name"></el-table-column> <el-table-column prop="age" label="Age"></el-table-column> <el-table-column prop="address" label="Address"></el-table-column> </el-table> <div v-if="showLoading" class="loading"> <i class="el-icon-loading"></i> </div> </div> </template> <script> export default { data() { return { tableData: [], loading: false, showLoading: false, page: 1, pageSize: 10, total: 0, }; }, created() { this.loadData(); }, methods: { loadData() { this.loading = true; // 模拟异步加载数据 setTimeout(() => { const data = []; for (let i = 0; i < this.pageSize; i++) { data.push({ name: `Name${this.total + i + 1}`, age: Math.floor(Math.random() * 100) + 1, address: `Address${this.total + i + 1}`, }); } this.tableData = this.tableData.concat(data); this.total += data.length; this.loading = false; }, 1000); }, handleScroll() { const tableWrap = this.$refs.tableWrap; const scrollTop = tableWrap.scrollTop; const scrollHeight = tableWrap.scrollHeight; const clientHeight = tableWrap.clientHeight; if (scrollTop + clientHeight >= scrollHeight && !this.loading) { // 滚动到底部且未加载中,则加载下一页数据 this.showLoading = true; this.page++; this.loadData(); } }, }, }; </script> ``` 在模板中,我们需要将 el-table 放在一个具有固定高度和滚动条的容器内,用 ref 属性获取容器元素并监听 scroll 事件,当滚动到底部时触发加载下一页数据的操作。 在 data 中定义了一些状态,包括表格数据、加载状态、当前页数、每页数量和数据总数等。loadData 方法用于模拟异步加载数据,并将加载到的数据追加到表格数据中。handleScroll 方法用于监听 scroll 事件,当滚动到底部时触发加载下一页数据的操作。 在模板中,我们还需要添加一个 loading 组件,用于显示加载中状态。根据 showLoading 变量的值决定是否显示 loading 组件。 需要注意的是,el-table 组件的高度必须要设置,否则无法触发滚动事件。可以通过在 el-table 上添加 height 属性或者在外层容器上设置固定高度来实现。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值