/* * Copyright 2003-2011 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 jetbrains.mps.ide.editor.warningPanel; import com.intellij.ui.HyperlinkLabel; import com.intellij.ui.LightColors; import com.intellij.xml.util.XmlStringUtil; import jetbrains.mps.openapi.editor.style.StyleRegistry; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import javax.swing.BorderFactory; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.event.HyperlinkEvent; import javax.swing.event.HyperlinkListener; import java.awt.BorderLayout; import java.awt.Color; public class WarningPanel extends JPanel { private String myText; private EditorWarningsProvider myProvider; WarningPanel(@NotNull EditorWarningsProvider provider, @NotNull String text) { this(provider, text, null, null); } public WarningPanel(@NotNull EditorWarningsProvider provider, @NotNull String text, @Nullable String linkText, @Nullable final Runnable handler) { myProvider = provider; myText = text; setLayout(new BorderLayout()); setBackground(StyleRegistry.getInstance().isDarkTheme() ? Color.LIGHT_GRAY : LightColors.YELLOW); setBorder(BorderFactory.createEmptyBorder(4, 4, 4, 4)); final JLabel label = new JLabel("<html>" + XmlStringUtil.escapeString(text) + "</html>"); label.setForeground(StyleRegistry.getInstance().isDarkTheme() ? Color.DARK_GRAY : StyleRegistry.getInstance().getEditorForeground()); add(label, BorderLayout.CENTER); if (linkText != null && handler != null) { HyperlinkLabel hyperlinkLabel = new HyperlinkLabel(linkText); hyperlinkLabel.setOpaque(false); hyperlinkLabel.addHyperlinkListener(new HyperlinkListener() { @Override public void hyperlinkUpdate(HyperlinkEvent e) { handler.run(); } }); add(hyperlinkLabel, BorderLayout.EAST); } } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; WarningPanel that = (WarningPanel) o; return (this.myProvider.getClass() == that.myProvider.getClass()) && (this.myText.equals(that.myText)); } @Override public int hashCode() { int result = myText.hashCode(); result = 31 * result + myProvider.getClass().hashCode(); return result; } }