All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alee.managers.proxy.WebSystemProxyConfirmationSupport Maven / Gradle / Ivy

/*
 * This file is part of WebLookAndFeel library.
 *
 * WebLookAndFeel library is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * WebLookAndFeel library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with WebLookAndFeel library.  If not, see .
 */

package com.alee.managers.proxy;

import com.alee.extended.optionpane.WebExtendedOptionPane;
import com.alee.laf.checkbox.WebCheckBox;
import com.alee.laf.optionpane.WebOptionPane;
import com.alee.managers.language.LanguageManager;
import com.alee.utils.SwingUtils;

/**
 * Default WebLaF system proxy detection confirm dialog support.
 *
 * @author Mikle Garin
 * @see How to use ProxyManager
 * @see com.alee.managers.proxy.ProxyManager
 * @see com.alee.managers.proxy.SystemProxyConfirmationSupport
 */

public class WebSystemProxyConfirmationSupport implements SystemProxyConfirmationSupport
{
    /**
     * UI elements.
     */
    private WebCheckBox alwaysDoTheSame;

    @Override
    public boolean shouldUseSystemProxy ()
    {
        // Whether should save the choice or not
        alwaysDoTheSame = new WebCheckBox ();
        alwaysDoTheSame.setLanguage ( "weblaf.proxy.use.system.save" );
        alwaysDoTheSame.setSelected ( false );
        alwaysDoTheSame.setFocusable ( false );

        // Ask for settings replacement with system ones
        final String message = LanguageManager.get ( "weblaf.proxy.use.system.text" );
        final String title = LanguageManager.get ( "weblaf.proxy.use.system.title" );
        final int options = WebExtendedOptionPane.YES_NO_OPTION;
        final int type = WebExtendedOptionPane.QUESTION_MESSAGE;
        final WebExtendedOptionPane dialog =
                WebExtendedOptionPane.showConfirmDialog ( SwingUtils.getActiveWindow (), message, alwaysDoTheSame, title, options, type );

        return dialog.getResult () == WebOptionPane.YES_OPTION;
    }

    @Override
    public boolean alwaysDoTheSame ()
    {
        final boolean selected = alwaysDoTheSame.isSelected ();
        alwaysDoTheSame = null;
        return selected;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy