/* * Copyright 2000-2016 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.openapi.updateSettings.impl; import com.intellij.CommonBundle; import com.intellij.ide.IdeBundle; import com.intellij.openapi.options.ShowSettingsUtil; import com.intellij.openapi.ui.DialogWrapper; import com.intellij.ui.ColorUtil; import com.intellij.ui.IdeBorderFactory; import com.intellij.util.ui.UIUtil; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import javax.swing.*; import javax.swing.event.HyperlinkEvent; import javax.swing.event.HyperlinkListener; import java.awt.*; /** * @author anna */ public abstract class AbstractUpdateDialog extends DialogWrapper { private final boolean myEnableLink; protected AbstractUpdateDialog(boolean enableLink) { super(true); myEnableLink = enableLink; setTitle(IdeBundle.message("update.notifications.title")); } @Override protected void init() { setOKButtonText(getOkButtonText()); setCancelButtonText(getCancelButtonText()); super.init(); } protected String getOkButtonText() { return CommonBundle.getOkButtonText(); } protected String getCancelButtonText() { return CommonBundle.getCancelButtonText(); } protected void configureMessageArea(@NotNull JEditorPane area) { String messageBody = myEnableLink ? IdeBundle.message("updates.configure.label", ShowSettingsUtil.getSettingsMenuName()) : ""; configureMessageArea(area, messageBody, null, null); } protected void configureMessageArea(@NotNull JEditorPane area, @NotNull String messageBody, @Nullable Color fontColor, @Nullable HyperlinkListener listener) { String text = "<html><head>" + UIUtil.getCssFontDeclaration(UIUtil.getLabelFont(), fontColor, null, null) + "<style>body {background: #" + ColorUtil.toHex(UIUtil.getPanelBackground()) + ";}</style>" + "</head><body>" + messageBody + "</body></html>"; area.setBackground(UIUtil.getPanelBackground()); area.setBorder(IdeBorderFactory.createEmptyBorder()); area.setText(text); area.setCaretPosition(0); area.setEditable(false); if (listener == null && myEnableLink) { listener = (e) -> { if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) { ShowSettingsUtil.getInstance().editConfigurable(area, new UpdateSettingsConfigurable(false)); } }; } if (listener != null) { area.addHyperlinkListener(listener); } } }