use of com.qcadoo.view.internal.ribbon.model.RibbonComboItemImpl in project qcadoo by qcadoo.
the class RibbonParserService method parseRibbonItem.
public InternalRibbonActionItem parseRibbonItem(final Node itemNode, final ViewDefinitionParser parser, final ViewDefinition viewDefinition) throws ViewDefinitionParserNodeException {
String stringType = itemNode.getNodeName();
RibbonActionItem.Type type = null;
if ("bigButtons".equals(stringType) || "bigButton".equals(stringType)) {
type = RibbonActionItem.Type.BIG_BUTTON;
} else if ("smallButtons".equals(stringType) || "smallButton".equals(stringType)) {
type = RibbonActionItem.Type.SMALL_BUTTON;
} else if ("combobox".equals(stringType)) {
type = RibbonActionItem.Type.COMBOBOX;
} else if ("smallEmptySpace".equals(stringType)) {
type = RibbonActionItem.Type.SMALL_EMPTY_SPACE;
} else {
throw new ViewDefinitionParserNodeException(itemNode, "Unsupported ribbon item type '" + stringType + "'");
}
InternalRibbonActionItem item = null;
if ("bigButtons".equals(stringType) || "smallButtons".equals(stringType)) {
item = new RibbonComboItemImpl();
} else if ("combobox".equals(stringType)) {
item = new RibbonComboBoxImpl();
} else {
item = new RibbonActionItemImpl();
}
item.setIcon(parser.getStringAttribute(itemNode, "icon"));
item.setName(parser.getStringAttribute(itemNode, NAME));
String accesskey = parser.getStringAttribute(itemNode, "accesskey");
if (accesskey != null) {
item.setAccesskey(accesskey);
}
item.setAction(RibbonUtils.translateRibbonAction(parser.getStringAttribute(itemNode, "action"), viewDefinition));
item.setType(type);
String state = parser.getStringAttribute(itemNode, "state");
if (state == null) {
item.setEnabled(true);
} else {
if ("enabled".equals(state)) {
item.setEnabled(true);
} else if ("disabled".equals(state)) {
item.setEnabled(false);
} else {
throw new ViewDefinitionParserNodeException(itemNode, "Unsupported ribbon item state : " + state);
}
}
item.setDefaultEnabled(item.isEnabled());
String message = parser.getStringAttribute(itemNode, "message");
if (message != null) {
item.setMessage(message);
}
NodeList childNodes = itemNode.getChildNodes();
for (int i = 0; i < childNodes.getLength(); i++) {
Node child = childNodes.item(i);
if (child.getNodeType() == Node.ELEMENT_NODE && "script".equals(child.getNodeName())) {
item.setScript(parser.getStringNodeContent(child));
}
}
if (item instanceof RibbonComboItem) {
for (int i = 0; i < childNodes.getLength(); i++) {
Node child = childNodes.item(i);
if (child.getNodeType() == Node.ELEMENT_NODE && !"script".equals(child.getNodeName())) {
((InternalRibbonComboItem) item).addItem(parseRibbonItem(child, parser, viewDefinition));
}
}
} else if (item instanceof RibbonComboBox) {
for (int i = 0; i < childNodes.getLength(); i++) {
Node child = childNodes.item(i);
if (child.getNodeType() == Node.ELEMENT_NODE && !"script".equals(child.getNodeName())) {
if (!"option".equals(child.getNodeName())) {
throw new ViewDefinitionParserNodeException(child, "ribbon combobox can only have 'option' elements");
}
((RibbonComboBox) item).addOption(parser.getStringAttribute(child, NAME));
}
}
} else {
(item).setAction(RibbonUtils.translateRibbonAction(parser.getStringAttribute(itemNode, "action"), viewDefinition));
}
return item;
}
Aggregations