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


Java FontStyleInfo.setStyle方法代码示例

本文整理汇总了Java中org.geomajas.configuration.FontStyleInfo.setStyle方法的典型用法代码示例。如果您正苦于以下问题:Java FontStyleInfo.setStyle方法的具体用法?Java FontStyleInfo.setStyle怎么用?Java FontStyleInfo.setStyle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.geomajas.configuration.FontStyleInfo的用法示例。


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

示例1: buildTitle

import org.geomajas.configuration.FontStyleInfo; //导入方法依赖的package包/类
protected LabelComponentInfo buildTitle() {
	if (titleText != null) {
		LabelComponentInfo title = new LabelComponentInfo();
		FontStyleInfo style = new FontStyleInfo();
		style.setFamily("Arial");
		style.setStyle("Italic");
		style.setSize(14);
		title.setFont(style);
		title.setBackgroundColor("#FFFFFF");
		title.setBorderColor("#000000");
		title.setFontColor("#000000");
		title.getLayoutConstraint().setAlignmentY(LayoutConstraintInfo.TOP);
		title.getLayoutConstraint().setAlignmentX(LayoutConstraintInfo.CENTER);
		title.setTag("title");
		title.setText(titleText);
		title.getLayoutConstraint().setMarginY(2 * marginY);
		return title;
	} else {
		return null;
	}
}
 
开发者ID:geomajas,项目名称:geomajas-project-server,代码行数:22,代码来源:TestTemplateBuilder.java

示例2: createRandomLabelStyle

import org.geomajas.configuration.FontStyleInfo; //导入方法依赖的package包/类
private LabelStyleInfo createRandomLabelStyle(String attributeName) {
	LabelStyleInfo style = new LabelStyleInfo();
	style.setBackgroundStyle(createRandomPolygonStyle());
	FontStyleInfo fontStyle = new FontStyleInfo();
	fontStyle.setColor(style.getBackgroundStyle().getStrokeColor());
	fontStyle.setFamily("Verdana");
	fontStyle.setOpacity(1F);
	fontStyle.setSize(8);
	fontStyle.setWeight("normal");
	fontStyle.setStyle("normal");
	style.setFontStyle(fontStyle);
	style.setLabelAttributeName(attributeName);
	return style;
}
 
开发者ID:geomajas,项目名称:geomajas-project-client-gwt,代码行数:15,代码来源:AddLayerShapeAction.java

示例3: buildTitle

import org.geomajas.configuration.FontStyleInfo; //导入方法依赖的package包/类
protected LabelComponentInfo buildTitle() {
	LabelComponentInfo label = new LabelComponentInfo();
	FontStyleInfo style = new FontStyleInfo();
	style.setFamily(PrintingLayout.templateDefaultFontFamily);
	style.setStyle(PrintingLayout.templateDefaultFontStyle);
	style.setSize((int) PrintingLayout.templateDefaultFontSize);
	label.setFont(style);
	label.setBackgroundColor(PrintingLayout.templateDefaultBackgroundColor);
	label.setBorderColor(PrintingLayout.templateDefaultBorderColor);
	label.setFontColor(PrintingLayout.templateDefaultColor);
	label.getLayoutConstraint().setAlignmentY(LayoutConstraintInfo.TOP);
	label.getLayoutConstraint().setAlignmentX(LayoutConstraintInfo.CENTER);
	label.setTag("title");
	return label;
}
 
开发者ID:geomajas,项目名称:geomajas-project-client-gwt,代码行数:16,代码来源:AbstractTemplateBuilder.java

示例4: createTextSymbolizer

import org.geomajas.configuration.FontStyleInfo; //导入方法依赖的package包/类
private TextSymbolizerInfo createTextSymbolizer(FontStyle style) {
	FontStyleInfo font = new FontStyleInfo();
	font.setColor(style.getFillColor());
	font.setFamily(style.getFontFamily());
	font.setSize(style.getFontSize());
	font.setStyle(style.getFontStyle());
	font.setOpacity(1f);
	font.setWeight(style.getFontWeight());
	return StyleUtil.createSymbolizer(font);
}
 
开发者ID:geomajas,项目名称:geomajas-project-client-gwt,代码行数:11,代码来源:ImageUrlServiceImpl.java

示例5: buildTitle

import org.geomajas.configuration.FontStyleInfo; //导入方法依赖的package包/类
protected LabelComponentInfo buildTitle() {
	LabelComponentInfo label = new LabelComponentInfo();
	FontStyleInfo style = new FontStyleInfo();
	style.setFamily(PrintLayout.templateDefaultFontFamily);
	style.setStyle(PrintLayout.templateDefaultFontStyle);
	style.setSize((int) PrintLayout.templateDefaultFontSize);
	label.setFont(style);
	label.setBackgroundColor(PrintLayout.templateDefaultBackgroundColor);
	label.setBorderColor(PrintLayout.templateDefaultBorderColor);
	label.setFontColor(PrintLayout.templateDefaultColor);
	label.getLayoutConstraint().setAlignmentY(LayoutConstraintInfo.TOP);
	label.getLayoutConstraint().setAlignmentX(LayoutConstraintInfo.CENTER);
	label.setTag("title");
	return label;
}
 
开发者ID:geomajas,项目名称:geomajas-project-client-gwt2,代码行数:16,代码来源:AbstractTemplateBuilder.java

示例6: ScaleBarComponentInfo

import org.geomajas.configuration.FontStyleInfo; //导入方法依赖的package包/类
/** Constructor. */
public ScaleBarComponentInfo() {
	getLayoutConstraint().setAlignmentX(LayoutConstraintInfo.LEFT);
	getLayoutConstraint().setAlignmentY(LayoutConstraintInfo.BOTTOM);
	getLayoutConstraint().setMarginX(20);
	getLayoutConstraint().setMarginY(20);
	getLayoutConstraint().setWidth(200);
	font = new FontStyleInfo();
	font.setFamily("Dialog");
	font.setStyle("Plain");
	font.setSize(10);
}
 
开发者ID:geomajas,项目名称:geomajas-project-server,代码行数:13,代码来源:ScaleBarComponentInfo.java

示例7: LegendComponentInfo

import org.geomajas.configuration.FontStyleInfo; //导入方法依赖的package包/类
/**
 * Default constructor.
 */
public LegendComponentInfo() {
	getLayoutConstraint().setAlignmentX(LayoutConstraintInfo.RIGHT);
	getLayoutConstraint().setAlignmentY(LayoutConstraintInfo.BOTTOM);
	getLayoutConstraint().setFlowDirection(LayoutConstraintInfo.FLOW_Y);
	getLayoutConstraint().setMarginX(20);
	getLayoutConstraint().setMarginY(20);
	setTag(LEGEND_TAG);
	font = new FontStyleInfo();
	font.setFamily(DEFAULT_LEGEND_FONT_FAMILY);
	font.setStyle(LEGEND_FONT_STYLE_AS_STRING);
	font.setSize(12);
}
 
开发者ID:geomajas,项目名称:geomajas-project-server,代码行数:16,代码来源:LegendComponentInfo.java

示例8: convertFont

import org.geomajas.configuration.FontStyleInfo; //导入方法依赖的package包/类
private FontStyleInfo convertFont(FontInfo font) throws LayerException {
	FontStyleInfo fontStyle = new FontStyleInfo();
	if (font == null) {
		fontStyle.applyDefaults();
	} else {
		Map<String, String> cssMap = getLiteralMap(font.getCssParameterList());
		fontStyle.setFamily(cssMap.get(CSS_FONT_FAMILY));
		if (cssMap.containsKey(CSS_FONT_SIZE)) {
			fontStyle.setSize((int) parseFloat(cssMap, CSS_FONT_SIZE));
		}
		fontStyle.setStyle(cssMap.get(CSS_FONT_STYLE));
		fontStyle.setWeight(cssMap.get(CSS_FONT_WEIGHT));
	}
	return fontStyle;
}
 
开发者ID:geomajas,项目名称:geomajas-project-server,代码行数:16,代码来源:StyleConverterServiceImpl.java


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