X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.scenegraph.swing%2Fsrc%2Forg%2Fsimantics%2Fscenegraph%2Fswing%2FRadioButtonListNode.java;fp=bundles%2Forg.simantics.scenegraph.swing%2Fsrc%2Forg%2Fsimantics%2Fscenegraph%2Fswing%2FRadioButtonListNode.java;h=1be78ca089b98d42d03c820f813d144a320d50b9;hp=0000000000000000000000000000000000000000;hb=969bd23cab98a79ca9101af33334000879fb60c5;hpb=866dba5cd5a3929bbeae85991796acb212338a08 diff --git a/bundles/org.simantics.scenegraph.swing/src/org/simantics/scenegraph/swing/RadioButtonListNode.java b/bundles/org.simantics.scenegraph.swing/src/org/simantics/scenegraph/swing/RadioButtonListNode.java new file mode 100644 index 000000000..1be78ca08 --- /dev/null +++ b/bundles/org.simantics.scenegraph.swing/src/org/simantics/scenegraph/swing/RadioButtonListNode.java @@ -0,0 +1,175 @@ +/******************************************************************************* + * Copyright (c) 2007, 2010 Association for Decentralized Information Management + * in Industry THTH ry. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ +package org.simantics.scenegraph.swing; + +import java.awt.Color; +import java.awt.Font; +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import javax.swing.Box; +import javax.swing.BoxLayout; +import javax.swing.JRadioButton; + +public class RadioButtonListNode extends ComponentNode implements ActionListener { + /** + * + */ + private static final long serialVersionUID = 7073028693751719102L; + + protected boolean editable = true; + protected Object value = ""; + protected String tooltip = ""; + protected double borderWidth = 0; + + protected transient ActionListener actionListener = null; + + protected Font font = null; + protected Color color = null; + protected Map items = new HashMap(); + + @Override + public String toString() { + return super.toString() + "[editable=" + editable + ", value=" + value + "]"; + } + + @Override + public void init() { + component = new Box(BoxLayout.Y_AXIS); + component.setEnabled(editable); + component.setLocation(0, 0); + + super.init(); + } + + @SyncField("items") + public void setItems(List items) { + this.items.clear(); + component.removeAll(); + for(String item : items) { + JRadioButton btn = new JRadioButton(); + btn.setText(item); + btn.addActionListener(this); + component.add(btn); + this.items.put(item, btn); + } + if(items.size() > 0) + ((JRadioButton)component.getComponent(0)).setSelected(true); // First item selected + + component.doLayout(); + } + + @SyncField("editable") + public void setEditable(boolean value) { + this.editable = value; + + if(component != null) { + component.setEnabled(value); + } + } + + @PropertySetter("Stroke Width") + @SyncField("borderWidth") + public void setBorderWidth(Float borderWidth) { + this.borderWidth = borderWidth; +// if(component != null) { +// ((TextField)component).setBorder(borderWidth); +// } + } + + @SyncField("value") + public void setValue(Object value) { + this.value = value; + // RemoteViewer does not have component initialized + if (component != null && value != null) { + JRadioButton b = items.get(value); + if(b != null) { + for(JRadioButton i : items.values()) { + if(i == b) { + i.setSelected(true); + } else { + i.setSelected(false); + } + } + } + } + } + + @SyncField("tooltip") + public void setToolTipText(String tooltip) { + this.tooltip = tooltip; + if (component != null) { + component.setToolTipText(tooltip); + } + } + + @PropertySetter("Font") + @SyncField("font") + public void setFont(Font font) { + this.font = font; + if (component != null) { + setComponentFont(font); + } + } + + @PropertySetter("Color") + @SyncField("color") + public void setColor(Color color) { + this.color = color; + if (component != null) { + component.setForeground(color); + } + } + + public Object getValue() { + return value; + } + + public Font getFont() { + return font; + } + + public void setActionListener(ActionListener actionListener) { + this.actionListener = actionListener; + } + + /** + * Wrapper method to send event to server side + * + * @param e + */ + @ServerSide + public void performAction(ActionEvent e) { + if (actionListener != null) { + //System.out.println("MonitorNode.performAction(" + e + ")"); + actionListener.actionPerformed(e); + } + } + @Override + public void actionPerformed(ActionEvent e) { + JRadioButton b = items.get(e.getActionCommand()); + if(b != null) { + for(JRadioButton i : items.values()) { + if(i == b) { + i.setSelected(true); + } else { + i.setSelected(false); + } + } + } + performAction(e); + } + +}