/* * Copyright 2003-2005 Bas Leijdekkers * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.codeInspection.ui; import com.intellij.codeInspection.InspectionProfileEntry; import org.jetbrains.annotations.NonNls; import javax.swing.*; import javax.swing.event.ChangeEvent; import javax.swing.event.ChangeListener; import java.awt.*; import java.lang.reflect.Field; public class MultipleCheckboxOptionsPanel extends JPanel { private final InspectionProfileEntry owner; public MultipleCheckboxOptionsPanel(InspectionProfileEntry owner) { super(new GridBagLayout()); this.owner = owner; } public void addCheckbox(String label, @NonNls String property) { final boolean selected = getPropertyValue(owner, property); final JCheckBox checkBox = new JCheckBox(label, selected); configureCheckbox(owner, property, checkBox); final GridBagConstraints constraints = new GridBagConstraints(); constraints.anchor = GridBagConstraints.FIRST_LINE_START; constraints.gridx = 0; constraints.gridy = 0; constraints.weightx = 1.0; constraints.fill = GridBagConstraints.HORIZONTAL; final Component[] components = getComponents(); removeAll(); for (Component component : components) { add(component, constraints); constraints.gridy++; } constraints.weighty = 1.0; add(checkBox, constraints); } private static void configureCheckbox(InspectionProfileEntry owner, String property, JCheckBox checkBox) { final ButtonModel model = checkBox.getModel(); final CheckboxChangeListener changeListener = new CheckboxChangeListener(owner, property, model); model.addChangeListener(changeListener); } public static void initAndConfigureCheckbox(InspectionProfileEntry owner, String property, JCheckBox checkBox) { checkBox.setSelected(getPropertyValue(owner, property)); configureCheckbox(owner, property, checkBox); } private static boolean getPropertyValue(InspectionProfileEntry owner, String property) { try { final Class<? extends InspectionProfileEntry> aClass = owner.getClass(); final Field field = aClass.getField(property); return field.getBoolean(owner); } catch (IllegalAccessException ignored) { return false; } catch (NoSuchFieldException ignored) { return false; } } private static class CheckboxChangeListener implements ChangeListener { private final InspectionProfileEntry owner; private final String property; private final ButtonModel model; CheckboxChangeListener(InspectionProfileEntry owner, String property, ButtonModel model) { this.owner = owner; this.property = property; this.model = model; } @Override public void stateChanged(ChangeEvent e) { setPropertyValue(owner, property, model.isSelected()); } private static void setPropertyValue(InspectionProfileEntry owner, String property, boolean selected) { try { final Class<? extends InspectionProfileEntry> aClass = owner.getClass(); final Field field = aClass.getField(property); field.setBoolean(owner, selected); } catch (IllegalAccessException ignored) { // nothing } catch (NoSuchFieldException ignored) { // nothing } } } }