关键代码在
//构建一个可用的图形画布
setFigureCanvas(new FigureCanvas(shell));
//通过子类实现抽象方法getContents,设置可视图形
getFigureCanvas().setContents(contents = getContents());
//ContentsTrackXXX方法缺省设置为false,当改变图形大小时,追踪其高度与宽度
getFigureCanvas().getViewport().setContentsTracksHeight(true);
getFigureCanvas().getViewport().setContentsTracksWidth(true);
getFigureCanvas().setLayoutData(new GridData(GridData.FILL_BOTH));
//通过重写该方法实现与shell的关联操作
hookShell();
sizeShell();
____________________使用abstractExample________________________________
/**
* 重写AbstractExample#getContents()
* org.eclipse.draw2d.FlowLayout
* 在container中加入多种shape,并在container上使用FlowLayout布局
*/
protected IFigure getContents() {
Figure container = new Figure();
container.setBorder(new LineBorder());
container.setLayoutManager(layout = new FlowLayout());
Shape shape;
shape = new Ellipse();
shape.setBackgroundColor(ColorConstants.blue);
shape.setSize(60,40);
container.add(shape);
shape = new RectangleFigure();
shape.setBackgroundColor(ColorConstants.red);
shape.setSize(30,70);
container.add(shape);
shape = new RoundedRectangle();
shape.setBackgroundColor(ColorConstants.yellow);
shape.setSize(90,30);
container.add(shape);
shape = new RectangleFigure();
shape.setBackgroundColor(ColorConstants.gray);
shape.setSize(50,80);
container.add(shape);
shape = new Ellipse();
shape.setBackgroundColor(ColorConstants.green);
shape.setSize(50,50);
container.add(shape);
shape = new Triangle();
shape.setBackgroundColor(ColorConstants.black);
shape.setSize(50,50);
container.add(shape);
shape = new RoundedRectangle();
shape.setBackgroundColor(ColorConstants.cyan);
shape.setSize(50,50);
container.add(shape);
shape = new RectangleFigure();
shape.setBackgroundColor(ColorConstants.darkGreen);
shape.setSize(50,50);
container.add(shape);
shape = new Triangle();
shape.setBackgroundColor(ColorConstants.orange);
shape.setSize(50,50);
container.add(shape);
shape = new Ellipse();
shape.setBackgroundColor(ColorConstants.red);
shape.setSize(50,50);
container.add(shape);
shape = new RoundedRectangle();
shape.setBackgroundColor(ColorConstants.yellow);
shape.setSize(50,50);
container.add(shape);
return container;
}
/**
* @see org.eclipse.draw2d.examples.AbstractExample#hookShell()
*/
protected void hookShell() {
Composite composite = new Composite(shell, 0);
composite.setLayoutData(new GridData(GridData.FILL_VERTICAL));
composite.setLayout(new GridLayout());
final Button horizontal = new Button(composite, SWT.CHECK);
horizontal.setText("Horizontal");
horizontal.setSelection(true);
horizontal.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
layout.setHorizontal(!layout.isHorizontal());
contents.revalidate();
shell.layout(true);
}
});
{
Group major = new Group(composite, 0);
major.setLayout(new FillLayout(SWT.VERTICAL));
major.setText("Major Axis");
Button left = new Button(major, SWT.RADIO);
left.setText("Top/Left");
left.setSelection(true);
left.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
layout.setMajorAlignment(FlowLayout.ALIGN_LEFTTOP);
contents.revalidate();
}
});
Button center = new Button(major, SWT.RADIO);
center.setText("Middle/Center");
center.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
layout.setMajorAlignment(FlowLayout.ALIGN_CENTER);
contents.revalidate();
}
});
Button right = new Button(major, SWT.RADIO);
right.setText("Buttom/Right");
right.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
layout.setMajorAlignment(FlowLayout.ALIGN_RIGHTBOTTOM);
contents.revalidate();
}
});
final Scale spacing = new Scale(major, 0);
spacing.setMinimum(0);
spacing.setMaximum(20);
spacing.setSelection(5);
spacing.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
layout.setMajorSpacing(spacing.getSelection());
contents.revalidate();
}
});
Label spacingLabel = new Label(major, SWT.CENTER);
spacingLabel.setText("Spacing");
}
{
Group minor = new Group(composite, 0);
minor.setLayout(new FillLayout(SWT.VERTICAL));
minor.setText("minor axis");
Button left = new Button(minor, SWT.RADIO);
left.setText("Top/Left");
left.setSelection(true);
left.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
layout.setMinorAlignment(FlowLayout.ALIGN_LEFTTOP);
contents.revalidate();
}
});
Button center = new Button(minor, SWT.RADIO);
center.setText("Middle/Center");
center.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
layout.setMinorAlignment(FlowLayout.ALIGN_CENTER);
contents.revalidate();
}
});
Button right = new Button(minor, SWT.RADIO);
right.setText("Buttom/Right");
right.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
layout.setMinorAlignment(FlowLayout.ALIGN_RIGHTBOTTOM);
contents.revalidate();
}
});
final Scale spacing = new Scale(minor, 0);
spacing.setMinimum(0);
spacing.setMaximum(20);
spacing.setSelection(5);
spacing.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
layout.setMinorSpacing(spacing.getSelection());
contents.revalidate();
}
});
Label spacingLabel = new Label(minor, SWT.CENTER);
spacingLabel.setText("Spacing");
}
}
结果
- 大小: 18.6 KB
- 大小: 6.3 KB
- 大小: 19.2 KB
分享到:
相关推荐
eclipse draw2d实例大全 org.eclipse.draw2d.examples.cg org.eclipse.draw2d.examples.connections org.eclipse.draw2d.examples.graph org.eclipse.draw2d.examples.hittest org.eclipse.draw2d.examples.images ...
2. **图元(Figure)**:在Draw2D中,图元是图形的基本单位,可以是简单的几何形状,也可以是复杂的组合形状。示例可能包含创建自定义图元的方法。 3. **图元工厂(FigureFactory)**:图元工厂用于生成和管理图元...
Draw2d.js是一个开源的JavaScript图形库,专为在Web应用程序中绘制和操作二维图形而设计。这个库特别适用于创建流程图、UML类图、网络拓扑图和其他复杂的图表。它提供了丰富的API和功能,使得开发人员可以轻松地创建...
在这个"用draw2d画uml图源码实例"中,我们看到开发者利用GEF和Draw2D库创建了一个简单的UML类图绘制工具。下面将详细解释这两个技术以及如何结合它们来实现UML图的绘制。 1. **Draw2D**: Draw2D是Java Swing或 SWT...
在Java编程中,Draw2D库是一个强大的工具,它允许开发者使用SWT(Standard Widget Toolkit)来创建复杂的图形用户界面,特别适用于绘制图形和图表。Draw2D是Eclipse项目的一部分,它提供了一套丰富的API,可以方便地...
2. **draw2d的主要功能** - **图形对象**:draw2d提供了一系列预定义的图形对象,如矩形、圆形、多边形等,同时支持自定义形状。 - **连接线**:可以创建和编辑复杂的连接线,支持箭头、曲线等样式,用于表示关系...
2. **安装与设置**:包括如何将Draw2d库引入到项目中,以及如何配置开发环境,如Eclipse或IntelliJ IDEA,以便进行图形编程。 3. **图形对象**:讲解Draw2d中的基本图形对象,如矩形、圆形、线条等,以及如何创建和...
2. **导入Draw2D库**:引入`org.eclipse.draw2d`包,包含绘制所需的类和接口。 3. **创建Canvas**:在SWT窗口中添加一个`Canvas`组件,这将成为Draw2D绘图的画布。 4. **绘图上下文**:获取`Canvas`的`Graphics`...
在"Draw2dInstance"这个压缩包文件中,可能包含了实现上述步骤的源代码示例。你可以通过查看和运行这些代码来更深入地理解Draw2d的使用。注意,学习Draw2d的过程中,理解如何组织和管理Figure之间的关系,以及如何...
《Draw2D技术详解与实例应用》 Draw2D,全称为Eclipse Draw2D,是Eclipse项目中的一部分,它提供了一套丰富的图形绘制和交互处理的API,主要用于在Java环境中创建2D图形用户界面。这个强大的工具库使得开发者能够...
SWT(Standard Widget Toolkit)是Java中用于创建GUI应用程序的一个开源库,它是Eclipse IDE的基础。Draw2D是SWT中的一个子项目...通过深入学习和实践,开发者可以利用Draw2D构建出高度定制和用户友好的图形应用程序。
总结,Eclipse Draw2D 提供了丰富的图形绘制和交互功能,通过深入学习和实践"draw2d 示例代码",开发者能够熟练掌握图形界面的开发技术,为构建美观、易用的图形应用打下坚实基础。无论是简单的形状绘制还是复杂的...
理解UML类图的基本概念,深入学习Draw2D的API,以及研究工具的源码,都将极大地提升你在软件设计中的建模能力。同时,通过"UMLClassSample"这样的实例,可以快速掌握工具的使用,为实际项目提供便利。在软件开发过程...
### Draw2D Programmer Guide #### 概览:整体框架 Draw2D是Eclipse平台下的一种轻量级图形用户界面工具包,它提供了一系列用于构建复杂图表、文档或绘图的功能组件,这些组件被称为“Figure”。不同于传统的GUI...
通过分析和学习提供的“cg”压缩包中的示例代码,可以更深入地理解如何使用Draw2d创建和操作流程图,例如创建图形元素、添加事件监听、实现布局算法等。 总结来说,“使用Draw2d做的流程图工具”涵盖了Java图形...
学习GEF/Draw2D,你需要先掌握Java基础知识和Eclipse RCP开发环境。然后,通过阅读提供的书籍和示例代码,逐步了解和实践各个功能模块。最后,尝试创建自己的图形编辑器项目,将理论知识转化为实际应用。 总结来说...
通过对`Draw2DLayoutExample.java`的深入分析,我们可以学习到如何在实际项目中运用Draw2D库,创建出具有动态布局和交互功能的图形界面。理解并掌握这些知识点,将有助于开发者提升在GUI设计和实现方面的专业技能,...
通过实例化draw2d.Canvas,你可以开始添加图形、连接线以及设置交互行为。 4. "designer" demo解析 在"designer"目录下的示例代码中,我们可以看到如何构建一个简单的工作流设计器: - 加载库:首先,加载draw2d.js...
【标题】"org.eclipse.draw2d.examples" 是一个与Eclipse Draw2D相关的开发实例集合,主要用于展示和学习如何在Eclipse环境中使用Draw2D库进行图形界面编程。 【描述】提到的内容暗示了这个工程可能存在一定的兼容...
Draw2d API Draw2d是一个宿主在SWT Composite控件中的轻量级的构件(widge)系统。一个Draw2d应用程序由一个 SWT Composite控件, 一个轻量级系统, 以及其内容(figures)组成。