/* * 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.openapi.updateSettings.impl; import com.intellij.CommonBundle; import com.intellij.ide.IdeBundle; import com.intellij.openapi.application.ex.ApplicationEx; import com.intellij.openapi.application.ex.ApplicationManagerEx; 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.ui.LicensingFacade; 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 String myLicenseInfo = null; protected boolean myPaidUpgrade; protected boolean mySubscribtionLicense = false; public AbstractUpdateDialog(boolean enableLink) { super(true); myEnableLink = enableLink; setTitle(IdeBundle.message("updates.info.dialog.title")); } protected AbstractUpdateDialog(Component parent, boolean enableLink) { super(parent, true); myEnableLink = enableLink; setTitle(IdeBundle.message("updates.info.dialog.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 restart() { final ApplicationEx app = ApplicationManagerEx.getApplicationEx(); // do not stack several modal dialogs (native & swing) app.invokeLater(new Runnable() { @Override public void run() { app.restart(true); } }); } protected void initLicensingInfo(@NotNull UpdateChannel channel, @NotNull BuildInfo build) { LicensingFacade facade = LicensingFacade.getInstance(); if (facade != null) { mySubscribtionLicense = facade.isSubscriptionLicense(); if (!channel.getLicensing().equals(UpdateChannel.LICENSING_EAP)) { Boolean paidUpgrade = facade.isPaidUpgrade(channel.getMajorVersion(), build.getReleaseDate()); if (paidUpgrade == Boolean.TRUE) { myPaidUpgrade = true; myLicenseInfo = IdeBundle.message("updates.channel.key.needed", channel.getEvalDays()); } else if (paidUpgrade == Boolean.FALSE) { myLicenseInfo = IdeBundle.message("updates.channel.existing.key"); } } else { myLicenseInfo = IdeBundle.message("updates.channel.bundled.key"); } } } protected void configureMessageArea(@NotNull JEditorPane area) { configureMessageArea(area, IdeBundle.message("updates.configure.label", ShowSettingsUtil.getSettingsMenuName()), null, null); } protected void configureMessageArea(final @NotNull JEditorPane area, @NotNull String messageBody, @Nullable Color fontColor, @Nullable HyperlinkListener listener) { String text = "" + UIUtil.getCssFontDeclaration(UIUtil.getLabelFont(), fontColor, null, null) + "" + "" + messageBody + ""; area.setBackground(UIUtil.getPanelBackground()); area.setBorder(IdeBorderFactory.createEmptyBorder()); area.setText(text); area.setEditable(false); if (listener == null && myEnableLink) { listener = new HyperlinkListener() { @Override public void hyperlinkUpdate(final HyperlinkEvent e) { if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) { UpdateSettingsConfigurable settings = new UpdateSettingsConfigurable(); settings.setCheckNowEnabled(false); ShowSettingsUtil.getInstance().editConfigurable(area, settings); } } }; } if (listener != null) { area.addHyperlinkListener(listener); } } }