view setup/command/src/main/java/com/redhat/thermostat/setup/command/internal/SetupCompleteView.java @ 1805:f362b59a5aec

Add label suggesting user note credentials at end of quick setup Reviewed-by: jerboaa Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2015-September/016219.html PR2640
author Andrew Azores <aazores@redhat.com>
date Mon, 21 Sep 2015 10:45:22 -0400
parents 040e20c32a64
children
line wrap: on
line source

/*
 * Copyright 2012-2015 Red Hat, Inc.
 *
 * This file is part of Thermostat.
 *
 * Thermostat 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 2, or (at your
 * option) any later version.
 *
 * Thermostat 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 Thermostat; see the file COPYING.  If not see
 * <http://www.gnu.org/licenses/>.
 *
 * Linking this code with other modules is making a combined work
 * based on this code.  Thus, the terms and conditions of the GNU
 * General Public License cover the whole combination.
 *
 * As a special exception, the copyright holders of this code give
 * you permission to link this code with independent modules to
 * produce an executable, regardless of the license terms of these
 * independent modules, and to copy and distribute the resulting
 * executable under terms of your choice, provided that you also
 * meet, for each linked independent module, the terms and conditions
 * of the license of that module.  An independent module is a module
 * which is not derived from or based on this code.  If you modify
 * this code, you may extend this exception to your version of the
 * library, but you are not obligated to do so.  If you do not wish
 * to do so, delete this exception statement from your version.
 */

package com.redhat.thermostat.setup.command.internal;

import com.redhat.thermostat.setup.command.locale.LocaleResources;
import com.redhat.thermostat.shared.locale.Translate;

import javax.swing.BorderFactory;
import javax.swing.Box;
import javax.swing.BoxLayout;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.LayoutManager;
import java.net.URL;

public class SetupCompleteView extends JPanel implements SetupView {

    private JButton finishBtn;
    private JPanel toolbar;
    private JPanel midPanel;
    private DisplayCredentialPanel clientInfoPanel;
    private DisplayCredentialPanel agentInfoPanel;
    private static final String THERMOSTAT_LOGO = "thermostat.png";
    private static final String PROGRESS = "Step 2 of 2";
    private static final Translate<LocaleResources> translator = LocaleResources.createLocalizer();

    public SetupCompleteView(LayoutManager layout) {
        super(layout);

        createMidPanel();
        createToolbarPanel();
    }

    public void setClientCredentials(String clientUsername, char[] clientPassword) {
        clientInfoPanel.setDisplayCredentials(clientUsername, clientPassword);
    }

    public void setAgentCredentials(String agentUsername, char[] agentPassword) {
        agentInfoPanel.setDisplayCredentials(agentUsername, agentPassword);
    }

    @Override
    public void setTitle(JLabel title) {
        title.setText(translator.localize(LocaleResources.SETUP_COMPLETE_TITLE).getContents());
    }

    @Override
    public void setProgress(JLabel progress) {
        progress.setText(PROGRESS);
    }

    public void createMidPanel() {
        clientInfoPanel = new DisplayCredentialPanel(
            translator.localize(LocaleResources.CLIENT_CRED_TITLE).getContents(),
            translator.localize(LocaleResources.CLIENT_HELP_INFO).getContents());

        agentInfoPanel = new DisplayCredentialPanel(
            translator.localize(LocaleResources.AGENT_CRED_TITLE).getContents(),
            translator.localize(LocaleResources.AGENT_HELP_INFO).getContents());

        JLabel textLabel = new JLabel(translator.localize(LocaleResources.SETUP_COMPLETE_NOTE_CREDENTIALS_TEXT).getContents());
        JPanel textLabelPanel = new JPanel();
        textLabelPanel.setOpaque(false);
        textLabelPanel.setLayout(new BoxLayout(textLabelPanel, BoxLayout.LINE_AXIS));
        textLabelPanel.add(textLabel);

        midPanel = new JPanel();
        midPanel.setLayout(new BoxLayout(midPanel, BoxLayout.PAGE_AXIS));
        midPanel.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
        midPanel.add(textLabelPanel);
        midPanel.add(Box.createRigidArea(new Dimension(0, 10)));
        midPanel.add(clientInfoPanel);
        midPanel.add(Box.createRigidArea(new Dimension(0, 20)));
        midPanel.add(agentInfoPanel);

        this.add(midPanel, BorderLayout.CENTER);
    }

    private void createToolbarPanel() {
        URL logoURL = SetupCompleteView.class.getClassLoader().getResource(THERMOSTAT_LOGO);
        JLabel thermostatLogo = new JLabel(new ImageIcon(logoURL));

        finishBtn = new JButton(translator.localize(LocaleResources.FINISH).getContents());
        finishBtn.setPreferredSize(new Dimension(70, 30));

        toolbar = new JPanel();
        toolbar.setLayout(new BoxLayout(toolbar, BoxLayout.LINE_AXIS));
        toolbar.setBorder(BorderFactory.createEmptyBorder(0, 10, 10, 10));
        toolbar.add(thermostatLogo);
        toolbar.add(Box.createHorizontalGlue());
        toolbar.add(finishBtn);

        this.add(toolbar, BorderLayout.SOUTH);
    }

    @Override
    public void setDefaultButton() {
        getRootPane().setDefaultButton(finishBtn);
    }

    @Override
    public void focusInitialComponent() {
        finishBtn.requestFocusInWindow();
    }

    @Override
    public Component getUiComponent() {
        return this;
    }

    public JButton getFinishBtn() {
        return finishBtn;
    }

}