use of blue.soundObject.ceciliaModule.CToggle in project blue by kunstmusik.
the class TogglePanel method actionPerformed.
@Override
public void actionPerformed(ActionEvent e) {
System.err.println(e.getActionCommand());
JCheckBox checkBox = (JCheckBox) e.getSource();
CToggle toggle = (CToggle) dataValues.get(e.getActionCommand());
toggle.setToggled(checkBox.isSelected());
}
use of blue.soundObject.ceciliaModule.CToggle in project blue by kunstmusik.
the class CeciliaModuleEditor method createDefaultStateData.
/**
* @param moduleDefinition
* @return
*/
private HashMap createDefaultStateData(ModuleDefinition moduleDefinition) {
String tk_interface = moduleDefinition.tk_interface;
StringTokenizer st = new StringTokenizer(tk_interface, "\n");
String line;
HashMap stateData = new HashMap();
while (st.hasMoreTokens()) {
line = st.nextToken().trim();
if (line.length() == 0) {
continue;
}
String[] tokens = TextUtilities.splitStringWithQuotes(line);
String objectType = tokens[0];
if (!objectType.equals("csepar") && tokens.length == 1) {
// show some error
continue;
}
if (objectType.equals("csepar")) {
continue;
}
String objectName = tokens[1];
CeciliaObject cObj = null;
switch(objectType) {
case "cfilein":
CeciliaObject fileIn = new CFileIn();
cObj = fileIn;
break;
case "cpopup":
CPopup popup = new CPopup();
cObj = popup;
break;
case "ctoggle":
CToggle toggle = new CToggle();
cObj = toggle;
break;
case "cslider":
CSlider slider = new CSlider();
cObj = slider;
break;
case "cgraph":
CGraph graph = new CGraph();
cObj = graph;
break;
default:
break;
}
cObj.initialize(tokens);
stateData.put(objectName, cObj);
// ObjectUtilities.printMembers(cObj);
}
return stateData;
}
use of blue.soundObject.ceciliaModule.CToggle in project blue by kunstmusik.
the class TogglePanel method editCeciliaModule.
/**
* @param ceciliaModule
*/
public void editCeciliaModule(CeciliaModule ceciliaModule) {
HashMap map = ceciliaModule.getStateData();
if (map.size() == 0) {
return;
}
for (Iterator iter = map.values().iterator(); iter.hasNext(); ) {
CeciliaObject element = (CeciliaObject) iter.next();
if (element instanceof CToggle) {
CToggle toggle = (CToggle) element;
JCheckBox checkBox = (JCheckBox) interfaceObjectMap.get(toggle.getObjectName());
checkBox.setText(toggle.getLabel());
checkBox.setSelected(toggle.isToggled());
dataValues.put(toggle.getObjectName(), toggle);
}
}
}
Aggregations