本文整理汇总了Java中com.intellij.uiDesigner.compiler.Utils.alignFromConstraints方法的典型用法代码示例。如果您正苦于以下问题:Java Utils.alignFromConstraints方法的具体用法?Java Utils.alignFromConstraints怎么用?Java Utils.alignFromConstraints使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.uiDesigner.compiler.Utils
的用法示例。
在下文中一共展示了Utils.alignFromConstraints方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: readChildConstraints
import com.intellij.uiDesigner.compiler.Utils; //导入方法依赖的package包/类
void readChildConstraints(final Element constraintsElement, final LwComponent component) {
super.readChildConstraints(constraintsElement, component);
CellConstraints cc = new CellConstraints();
final Element formsElement = LwXmlReader.getChild(constraintsElement, UIFormXmlConstants.ELEMENT_FORMS);
if (formsElement != null) {
if (formsElement.getAttributeValue(UIFormXmlConstants.ATTRIBUTE_TOP) != null) {
cc.insets = LwXmlReader.readInsets(formsElement);
}
if (!LwXmlReader.getOptionalBoolean(formsElement, UIFormXmlConstants.ATTRIBUTE_DEFAULTALIGN_HORZ, true)) {
cc.hAlign = ourHorizontalAlignments [Utils.alignFromConstraints(component.getConstraints(), true)];
}
if (!LwXmlReader.getOptionalBoolean(formsElement, UIFormXmlConstants.ATTRIBUTE_DEFAULTALIGN_VERT, true)) {
cc.vAlign = ourVerticalAlignments [Utils.alignFromConstraints(component.getConstraints(), false)];
}
}
component.setCustomLayoutConstraints(cc);
}
示例2: getAlignment
import com.intellij.uiDesigner.compiler.Utils; //导入方法依赖的package包/类
public int getAlignment(RadComponent component, boolean horizontal) {
CellConstraints cc = (CellConstraints) component.getCustomLayoutConstraints();
CellConstraints.Alignment al = horizontal ? cc.hAlign : cc.vAlign;
if (al == CellConstraints.DEFAULT) {
FormLayout formLayout = (FormLayout) component.getParent().getLayout();
FormSpec formSpec = horizontal
? formLayout.getColumnSpec(component.getConstraints().getColumn()+1)
: formLayout.getRowSpec(component.getConstraints().getRow()+1);
final FormSpec.DefaultAlignment defaultAlignment = formSpec.getDefaultAlignment();
if (defaultAlignment.equals(RowSpec.FILL)) {
return GridConstraints.ALIGN_FILL;
}
if (defaultAlignment.equals(RowSpec.TOP) || defaultAlignment.equals(ColumnSpec.LEFT)) {
return GridConstraints.ALIGN_LEFT;
}
if (defaultAlignment.equals(RowSpec.CENTER)) {
return GridConstraints.ALIGN_CENTER;
}
return GridConstraints.ALIGN_RIGHT;
}
return Utils.alignFromConstraints(component.getConstraints(), horizontal);
}
示例3: getValue
import com.intellij.uiDesigner.compiler.Utils; //导入方法依赖的package包/类
public Integer getValue(final RadComponent component) {
AlignPropertyProvider provider = getAlignPropertyProvider(component);
if (provider != null) {
return provider.getAlignment(component, myHorizontal);
}
return Utils.alignFromConstraints(component.getConstraints(), myHorizontal);
}
示例4: isModified
import com.intellij.uiDesigner.compiler.Utils; //导入方法依赖的package包/类
@Override
public boolean isModified(final RadComponent component) {
AlignPropertyProvider provider = getAlignPropertyProvider(component);
if (provider != null) {
return provider.isAlignmentModified(component, myHorizontal);
}
final ComponentItem item = component.getPalette().getItem(component.getComponentClassName());
if (item == null) return false;
return Utils.alignFromConstraints(component.getConstraints(), myHorizontal) !=
Utils.alignFromConstraints(item.getDefaultConstraints(), myHorizontal);
}