/* * * Copyright 2014 http://Bither.net * * 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 net.bither.viewsystem.froms; import net.bither.fonts.AwesomeIcon; import net.bither.languages.MessageKey; import net.bither.utils.LocaliserUtils; import net.bither.viewsystem.base.Labels; import net.bither.viewsystem.base.Panels; import net.bither.viewsystem.base.RadioButtons; import net.miginfocom.swing.MigLayout; import javax.swing.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; /** * Created by nn on 15/2/13. */ public class HdmKeychainAddHotPanel extends WizardPanel { public static interface DialogHdmKeychainAddHotDelegate { public void addWithXRandom(); public void addWithoutXRandom(); } private DialogHdmKeychainAddHotDelegate dialogHdmKeychainAddHotDelegate; private JCheckBox xrandomCheckBox; public HdmKeychainAddHotPanel(final DialogHdmKeychainAddHotDelegate dialogHdmKeychainAddHotDelegate) { super(MessageKey.HDM, AwesomeIcon.FA_RECYCLE); this.dialogHdmKeychainAddHotDelegate = dialogHdmKeychainAddHotDelegate; setOkAction(new AbstractAction() { @Override public void actionPerformed(ActionEvent e) { closePanel(); if (dialogHdmKeychainAddHotDelegate != null) { if (!xrandomCheckBox.isSelected()) { dialogHdmKeychainAddHotDelegate.addWithoutXRandom(); } else { dialogHdmKeychainAddHotDelegate.addWithXRandom(); } } } }); } @Override public void initialiseContent(JPanel panel) { panel.setLayout(new MigLayout( Panels.migXYLayout(), "[][][][][][][]", // Column constraints "[]10[][][][][]80[]20[][][]" // Row constraints )); panel.add(Labels.newNoteLabel(new String[]{LocaliserUtils.getString("hdm_seed_generation_notice")}), "push,align center,wrap"); xrandomCheckBox = new JCheckBox(); xrandomCheckBox.setSelected(true); xrandomCheckBox.setText(LocaliserUtils.getString("xrandom")); panel.add(xrandomCheckBox, "push,align center,wrap"); } }