blob: 214b036ce84546cbaa0b3a18a8b73a2642e3db6d [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* 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.application.options.codeStyle.arrangement.component;
import com.intellij.application.options.codeStyle.arrangement.ArrangementConstants;
import com.intellij.psi.codeStyle.arrangement.model.ArrangementAtomMatchCondition;
import com.intellij.psi.codeStyle.arrangement.model.ArrangementMatchCondition;
import com.intellij.psi.codeStyle.arrangement.std.ArrangementSettingsToken;
import com.intellij.ui.components.JBCheckBox;
import com.intellij.util.ui.GridBag;
import org.jetbrains.annotations.NotNull;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
/**
* @author Denis Zhdanov
* @since 3/11/13 10:25 AM
*/
public class ArrangementCheckBoxUiComponent extends AbstractArrangementUiComponent {
@NotNull private final JPanel myComponent = new JPanel(new GridBagLayout());
@NotNull private final ArrangementAtomMatchCondition myCondition;
@NotNull private final JBCheckBox myCheckBox;
@NotNull private final JLabel myTextLabel;
public ArrangementCheckBoxUiComponent(@NotNull ArrangementSettingsToken token) {
super(token);
myComponent.setOpaque(false);
myCondition = new ArrangementAtomMatchCondition(token);
myCheckBox = new JBCheckBox();
myCheckBox.setOpaque(false);
myTextLabel = new JLabel(token.getRepresentationValue());
myCheckBox.addItemListener(new ItemListener() {
@Override
public void itemStateChanged(ItemEvent e) {
myTextLabel.setEnabled(myCheckBox.isEnabled());
fireStateChanged();
}
});
myTextLabel.addMouseListener(new MouseAdapter() {
@Override
public void mousePressed(MouseEvent e) {
myCheckBox.setSelected(!myCheckBox.isSelected());
}
});
myComponent.add(myCheckBox, new GridBag().anchor(GridBagConstraints.WEST).insets(0, 0, 0, 2));
myComponent.add(myTextLabel, new GridBag().anchor(GridBagConstraints.WEST).insets(0, 0, 0, ArrangementConstants.HORIZONTAL_GAP));
}
@NotNull
@Override
public ArrangementSettingsToken getToken() {
return myCondition.getType();
}
@Override
public void chooseToken(@NotNull ArrangementSettingsToken data) throws UnsupportedOperationException {
if (!getToken().equals(data)) {
throw new UnsupportedOperationException(String.format(
"Can't choose '%s' data at the check box token with data '%s'", data, getToken()
));
}
}
@NotNull
@Override
public ArrangementMatchCondition getMatchCondition() {
return myCondition;
}
@Override
protected JComponent doGetUiComponent() {
return myComponent;
}
@Override
protected void doReset() {
}
@Override
public boolean isEnabled() {
return myCheckBox.isEnabled();
}
@Override
public void setEnabled(boolean enabled) {
myCheckBox.setEnabled(enabled);
}
@Override
public boolean isSelected() {
return myCheckBox.isSelected();
}
@Override
public void setSelected(boolean selected) {
myCheckBox.setSelected(selected);
}
@Override
public int getBaselineToUse(int width, int height) {
return myTextLabel.getBaseline(width, height);
}
}