当前位置: 首页>>代码示例>>Java>>正文


Java IDimension类代码示例

本文整理汇总了Java中org.eclipse.graphiti.datatypes.IDimension的典型用法代码示例。如果您正苦于以下问题:Java IDimension类的具体用法?Java IDimension怎么用?Java IDimension使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


IDimension类属于org.eclipse.graphiti.datatypes包,在下文中一共展示了IDimension类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: layout

import org.eclipse.graphiti.datatypes.IDimension; //导入依赖的package包/类
public boolean layout(ILayoutContext context) {
	boolean anythingChanged = false;
	ContainerShape containerShape = (ContainerShape) context.getPictogramElement();
	GraphicsAlgorithm containerGa = containerShape.getGraphicsAlgorithm();
	// the containerGa is the invisible rectangle
	// containing the visible rectangle as its (first and only) child
	
	// GraphicsAlgorithm rectangle = containerGa.getGraphicsAlgorithmChildren().get(0);
	GraphicsAlgorithm rectangle = containerShape.getContainer().getGraphicsAlgorithm();

	// height of invisible rectangle
	if (containerGa.getHeight() < MIN_HEIGHT) {
		containerGa.setHeight(MIN_HEIGHT);
		anythingChanged = true;
	}

	// height of visible rectangle (same as invisible rectangle)
	if (rectangle.getHeight() != containerGa.getHeight()) {
		rectangle.setHeight(containerGa.getHeight());
		anythingChanged = true;
	}

	// width of invisible rectangle
	if (containerGa.getWidth() < MIN_WIDTH) {
		containerGa.setWidth(MIN_WIDTH);
		anythingChanged = true;
	}

	// width of visible rectangle (smaller than invisible rectangle)
	int rectangleWidth = containerGa.getWidth();
	if (rectangle.getWidth() != rectangleWidth) {
		rectangle.setWidth(rectangleWidth);
		anythingChanged = true;
	}

	// width of text and line (same as visible rectangle)
	for (Shape shape : containerShape.getChildren()) {
		
		GraphicsAlgorithm graphicsAlgorithm = shape.getGraphicsAlgorithm();
		IGaService gaService = Graphiti.getGaService();
		IDimension size = gaService.calculateSize(graphicsAlgorithm);
		if (rectangleWidth != size.getWidth()) {
			if (graphicsAlgorithm instanceof Text) {
				gaService.setWidth(graphicsAlgorithm, rectangleWidth);
				anythingChanged = true;
			} 
		}
	}

	return anythingChanged;
}
 
开发者ID:CloudScale-Project,项目名称:Environment,代码行数:52,代码来源:LayoutProviderFeature.java


注:本文中的org.eclipse.graphiti.datatypes.IDimension类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。