首页 > 开发 > 综合 > 正文

Eclipse Forms设计漂亮UI之布局

2024-07-21 02:14:52
字体:
来源:转载
供稿:网友
  增加一些内容

  现在我们已经有一个view能够成功运行了.我们可以往里面增加一些内容.eclipse forms有一个body,我们可以这样创建内容.
public void createpartcontrol(composite parent) {   toolkit = new formtoolkit(parent.getdisplay());   form = toolkit.createform(parent);   form.settext("hello, eclipse forms");   gridlayout layout = new gridlayout();   form.getbody().setlayout(layout);   hyperlink link = toolkit.createhyperlink(form.getbody(),      "click here.", swt.wrap);   link.addhyperlinklistener(new hyperlinkadapter() {    public void linkactivated(hyperlinkevent e) {     system.out.println("link activated!");    }   });  }
  form的body是标题下面的可用空间,因为这个空间是一个swt composite,它能做为其它组件的parent。在上面的代码里,我们为body设置了layout,然后创建了一个超链接。超链接是由eclipse forms提供的为数不多的组件之一,我们可以为超链接增加监听器,这样能够在用户点击它时做出反应。

  升级后的视图应该看起来象这样:



图3:一个有超链接的简单form.

  超链接组(hyperlink groups)

  form tookit有一个"超链接组"对象.每个创建出的超链接都加入这个组对象中.超链接为多个角色服务.它们定义了这个组中所有超链接在正常、hover、激活不同状态下的颜色.它们根据小组中链接不同的状态来改变颜色.它们根据小组中链接不同的状态来改变下划线风格.

  当你要改变超链接组对象的默认设置时,可以通过toolkit的gethyperlinkgroup()方法来获得超链接组对象.

  创建普通组件

  eclipse forms的一个设计目标就是让能够在编辑器/视图中创建普通swt组件.因为form的body是一个普通composite,你能够在它里面使用任何layout和组件.但是,记住"原生的"swt组件有一个组件背景.我们现在通过它们的构造方法创建一些组件.
  layout.numcolumns = 2;   griddata gd = new griddata();   gd.horizontalspan = 2;   link.setlayoutdata(gd);   label label = new label(form.getbody(), swt.null);   label.settext("text field label:");   text text = new text(form.getbody(), swt.border);   text.setlayoutdata(new griddata(griddata.fill_horizontal));   button button = new button(form.getbody(), swt.check);   button.settext("an example of a checkbox in a form");   gd = new griddata();   gd.horizontalspan = 2;   button.setlayoutdata(gd);
  现在我们使用了两列,并且创建了一个标签(label),一个文本框(text field)和一个复选框(checkbox).结果如下:


图4:一个拥有直接用它们的构造器创建出的swt组件的form

   这张图片怎么回事?我们创建的组件的背景直接和系统窗口背景相匹配,而不是和form的背景匹配.另外,文本框看起来还好是因为这张截图是在windows xp下截的.在其它操作系统上,它会看起来是有一个3d边框的空白条.为了解决这个问题,我们会用toolkit的工厂方法来创建这些组件:
  label label = toolkit.createlabel(form.getbody(), "text field label:");   text text = toolkit.createtext(form.getbody(), "");   text.setlayoutdata(new griddata(griddata.fill_horizontal));   button button = toolkit.createbutton(form.getbody(), "a checkbox in a form", swt.check);   gd = new griddata();   gd.horizontalspan = 2;   button.setlayoutdata(gd);
  这个视图现在会看来更好些了:


图5:一个拥有用form toolkit的工厂方法创建出的swt组件的form

  由form toolkit提供的工厂方法是为了方便。toolkit没有函盖所有情况,甚至是swt组件集合,而且明显没有为你可能有的自己定制的组件提供这一便利.当你需要使一个swt组件与form统一时,你应该使用一个方法:formtoolkit.adapt(control control, boolean trackfocus,boolean trackkeyboard).所有的工厂方法各自分别调用了这个适配方法。

  达到"平滑"的视觉效果

  一个在pde编辑器中eclipse forms的可看出的属性是组件的"平滑"视觉效果.以前所有没有3d边框的组件在窗口中看起来不错,但是在编辑器或视图中就不行.这个支持写在formtoolkit类中.但是,在一些系统上它是通过一些定制达到的.举个例子,看一下这张从pde编辑器(2.1版本)中的截图:



图片6:eclipse 2.1中eclipse forms的平滑视觉效果.

  象表格,文本类,复选框等,是加上一个平滑的1个象素宽的边框.这些边框不是来自组件自己(swt.border风格没有用到).另外,如果设置一下,tookit会为每个组件的parent增加一个paint监听器,在paint事件发生时为组件加上边框.要想这样的话,你需要为你创建的象文本,表格,树等组件的每个composite调用paintbordersfor(parent).每个parent只需要调用一次方法就足够了:不需要为每个组件这样调用.

  form toolkit知道哪个组件需要一个定制的边框.但是,你可能新创建了一个不在原来名单中的组件,它也需要一个边框.你可以通过象下面这样的代码给toolkit一个提示:
control mycontrol = new mycontrol(parent); mycontrol.setdata(formtoolkit.key_draw_border, formtoolkit.text_border); // or mycontrol.setdata(formtoolkit.key_draw_border, formtoolkit.tree_border); toolkit.paintbordersfor(parent);
  你可以在上面这张图中看出,象树和表格这样的"结构化(structural)"的组件有和文本区域不同的边框风格并且你可以选择和你的组件相符合的那个.注意用toolkit的工厂方法创建出的组件不需要这样做.

  因为eclipse 3.0和在windows xp上,当javaw.exe.manifest文件在java虚拟机bin文件夹中时,没有边框产生出来.(这篇文章里我所有截图都是在windows xp下截的).这个文件--你可以在 swt home page上下载--告诉toolkit为本地组件使用xp皮肤.用xp皮肤,象文本,表格和树是已经平滑的并且不需要再去调整.为了让你的代码拥有可移植性,你可以总是调用paintbordersfor(composite)方法,让toolkit去根据不同操作系统来决定该怎么做。

  定制布局(custom layouts)

  eclipse forms在swt layout的基础上增加了两个新的layout,这些layout继承了swt layout基类并能够在任何swt composite上使用,但是一般都是和eclipse forms联合使用的。

  tablewraplayout

  现在我们知道如何来组合一个form,让我们先给一个悬念.我们会改变那个超链接文本使它加长一些:

link.settext("this is an example of a form that is much longer "+
                     "and will need to wrap.");

  让我们看看结果:


图片7:一个使用gridlayout的form

  发生什么事了?记住我们使用的是gridlayout,当它问这个超链接组件来计算它大小时,超链接告诉它文字在单独行里需要的长度,虽然我们告诉组件去包裹(wrap),它并没有这样做因为gridlayout需要组件返回它的长度。超连接组件--和其它象label一样的swt组件,可以通过你传递它数值来决定长和宽,但是gridlayout不会向组件传递数值参数。

  我们需要的是一个象html表格一样的layout.我们希望内容去试图配合提供的客户空间,并且一行行地叠加.eclipse forms提供了一个这样的layout叫tablewraplayout.gridlayout和tablewraplayout之间有许多共同点.都是用表格来组织parent的children.都有layout data来告诉layout如何对待每个组件.都能够在需要占据所有空间时等接受组件的提示.

  但是,它们在布局时完全不同.tablewraplayout从列开始.它计算每列的最小的,合适的,最大的宽度并用这个信息来占据空间.它也试图尽可能地公平地在各列间分隔,这样有些组件就没有多余的空间.

  让我们使用tablewraplayout来重新更改例子(更改处高亮显示):
 public void createpartcontrol(composite parent) {   toolkit = new formtoolkit(parent.getdisplay());   form = toolkit.createform(parent);   form.settext("hello, eclipse forms");   tablewraplayout layout = new tablewraplayout();   form.getbody().setlayout(layout);   hyperlink link = toolkit.createhyperlink(form.getbody(),"click here.", swt.wrap);   link.addhyperlinklistener(new hyperlinkadapter() {    public void linkactivated(hyperlinkevent e) {     system.out.println("link activated!");    }   });   link.settext("this is an example of a form that is much longer and will need to wrap.");   layout.numcolumns = 2;   tablewrapdata td = new tablewrapdata();   td.colspan = 2;   link.setlayoutdata(td);   label label = toolkit.createlabel(form.getbody(), "text field label:");   text text = toolkit.createtext(form.getbody(), "");   td = new tablewrapdata(tablewrapdata.fill_grab);   text.setlayoutdata(td);   button button = toolkit.createbutton(form.getbody(), "a checkbox in a form", swt.check);   td = new tablewrapdata();   td.colspan = 2;   button.setlayoutdata(td);  }
  我们用了griddata相同的概念.一些变量拥有不同的名字(举个例子,colspan和rowspan,align和valign取自html table的属性),但是你可以做相同的事--创建一个超链接和按钮占据两列的格子.因为空白(margins)和gridlayout是相同的,结果会看起来一样,除了超链接现在会包裹起来:
 
图片8:一个使用tablewraplayout的form
  tablewraplayout和gridlayout的一个主要的不同点是你应该停止去计算垂直的空间.在gridlayout里,你一般会让"不易变形的(rigid)"组件用自然的位置和大小并让"可伸缩的(flexible)"组件去占据水平或垂直的空间.相反,tablewraplayout是从上往下工作的,并且它容下所有的组件,它的工作是完全的.占据水平空间的概念还存在(象上面展示一样).但是,垂直方向上,你只能在单元(cell)比组件高时选择fill单元,或选择top,middle或bottom垂直对齐.

  你也许会注意到一个地方和刚刚说的不符:tablewraplayout仍然有一个grabvertical变量.但是,这里这个变量在这里有明确的目的:当一个设置了高度的组件占多行时,它的高度会给出一个条件就是垂直dimension已经知道了,组件需要去除它所在的多个单元之间的多余空间.

  为了用tablewraplayout有好的结果,确定组件可以接近风格(swt.wrap).eclipse froms提供的组合定制组件能够在box外面包裹.这是通过实现ilayoutextension接口实现的:

public interface ilayoutextension {
   /**
    * computes the minimum width of the parent. all widgets capable of word
    * wrapping should return the width of the longest word that cannot be
    * broken any further.
    *
    * @param parent the parent composite
    * @param changed <code>true</code> if the cached information should be
    * flushed, <code>false</code> otherwise.
    * @return the minimum width of the parent composite
    */
   public int computeminimumwidth(composite parent, boolean changed);

   /**
    * computes the maximum width of the parent. all widgets capable of word
    * wrapping should return the length of the entire text with wrapping
    * turned off.
    *
    * @param parent the parent composite
    * @param changed <code>true</code> if the cached information
    * should be flushed, <code>false</code> otherwise.
    * @return the maximum width of the parent composite
    */
   public int computemaximumwidth(composite parent, boolean changed);
}

  tablewraplayout本身实现了这个接口,这样让它处理当composites的layout是这个composite的parent的children的情况.另外的两个方法能够计算两种极端情况--当所有组件尽可能宽地布满时的显然的最小宽度和最大宽度.两者的不同是使列之间的多余空间尽可能小时贡献出公平的空间.

  让我们看清楚贡献空间是怎样的.我们会推荐我们到现在为止写的代码并象下面这样做出修改:
 layout.numcolumns = 3;  label label;  tablewrapdata td;    label = toolkit.createlabel(form.getbody(),    "some text to put in the first column", swt.wrap);  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));
  这个创建了一些有不同长度文本的label.有些labels占据多列,有些占据多行.为了让测试更加简单,我们把form的背景设置为组件背景,这样单元能够更简单看出来.当我们运行例子,我们会得到下面的样子:

图片9:tablewraplayout留下的多余空间
  关键之处在于组件最小宽度和最大宽度相比较时.相差越多,结果越明显,会看到列中有很大的缝隙.占据的宽度是组件所需要的最小的宽度.注意第3列比第2列稍微宽一点点,这是因为第3列中的文字长度比第2列中文字要长点.如果需要阅读布局的相关理论,可以去这里w3c recommendations for html table auto-layout.

  columnlayout

  eclipse forms另外一个定制的layout是swt rowlayout的变种.如果我们把rowlayout上的children垂直放置时--按列-并且使同列中的所有组件拥有相同的宽度,我们会由组件的宽度得到多个列.但是,最后一列显然不是被填满的--这由组件的个数决定.如果在form中,我们会仍然看到所有组件在一列中,因为rowlayout不能够"垂直" 包裹.如果我们用gridlayout相替代的话,列的数量由我们自己决定.

  在更加复杂的forms中我们需要列的数量按情况变化.换句话来说,我们希望数字按照form的宽度来改变--有可能需要更多的列,当宽度减小时则把数字减小.而且我们希望所有列的长度象报纸布局一样相同.这些要求都能够通过columnlayout来达到.

  与tablewraplayout相比,columnlayout更加简单.不需要复杂的设置.唯一需要你设置的就是列数的范围,默认是1到3.下面的例子演示了一个使用columnlayout的有许多段落(sections)的form.初始时,只需要两列就可以放置所有段落了.如果我们把编辑器变窄一点,layout会使它们在同一列中.

 



图片10:使用columnlayout的所有按列排列的段落.layout开始是两列,但是按照空间的改变变成了一列.
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表