org.freehep.graphicsio.exportchooser.OptionPanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of freehep-graphicsio Show documentation
Show all versions of freehep-graphicsio Show documentation
FreeHEP GraphicsIO Base Library
// Copyright 2003, FreeHEP.
package org.freehep.graphicsio.exportchooser;
import java.awt.Component;
import java.util.Properties;
import javax.swing.BorderFactory;
import javax.swing.JPanel;
import org.freehep.graphicsbase.swing.layout.TableLayout;
/**
*
* @author Mark Donszelmann
* @version $Id: freehep-graphicsio/src/main/java/org/freehep/graphicsio/exportchooser/OptionPanel.java 5641ca92a537 2005/11/26 00:15:35 duns $
*/
public class OptionPanel extends JPanel implements Options {
public OptionPanel() {
this(null);
}
public OptionPanel(String title) {
super(new TableLayout());
if (title != null)
setBorder(BorderFactory.createTitledBorder(BorderFactory
.createEtchedBorder(), title));
}
public void setEnabled(boolean enable) {
for (int i = 0; i < getComponentCount(); i++) {
Component c = getComponent(i);
c.setEnabled(enable);
}
}
public boolean applyChangedOptions(Properties options) {
boolean changed = false;
for (int i = 0; i < getComponentCount(); i++) {
Component c = getComponent(i);
if (c instanceof Options) {
boolean changedThis = ((Options) c)
.applyChangedOptions(options);
changed = changed || changedThis;
}
}
return changed;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy