X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fjbgui%2FGRestInputParamEditDialog.java;h=89be170f7bae7f271d4a3829e53d16629dfc34fa;hb=ab43013b7e357b84b4abade0dba949668dfb2a0e;hp=f3894306e1b139b02d83ca0531d53e238db140f1;hpb=a45774ee31d9f35d4eff46d54d7deab719afb092;p=jalview.git diff --git a/src/jalview/jbgui/GRestInputParamEditDialog.java b/src/jalview/jbgui/GRestInputParamEditDialog.java index f389430..89be170 100644 --- a/src/jalview/jbgui/GRestInputParamEditDialog.java +++ b/src/jalview/jbgui/GRestInputParamEditDialog.java @@ -1,20 +1,23 @@ -/******************************************************************************* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7) - * Copyright (C) 2011 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle - * +/* + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1) + * Copyright (C) 2014 The Jalview Authors + * * This file is part of Jalview. - * + * * Jalview 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. - * + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * * Jalview 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 Jalview. If not, see . - *******************************************************************************/ + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.jbgui; import java.awt.Dimension; @@ -23,6 +26,7 @@ import java.awt.event.KeyListener; import jalview.gui.JvSwingUtils; import jalview.gui.OptsAndParamsPage; +import jalview.util.MessageManager; import javax.swing.*; import javax.swing.border.TitledBorder; @@ -31,80 +35,97 @@ import javax.swing.event.ListSelectionListener; import net.miginfocom.swing.MigLayout; - public class GRestInputParamEditDialog { protected JPanel dpane; + protected JPanel okcancel; + protected JList typeList; + protected JTextField tok; + protected JPanel options; + protected JPanel optionsPanel; - public GRestInputParamEditDialog() + + public GRestInputParamEditDialog() { jbInit(); } - protected void jbInit() { - dpane = new JPanel(new MigLayout("","[][][fill]","[][fill][]")); - dpane.setPreferredSize(new Dimension(110+100+OptsAndParamsPage.PARAM_WIDTH,400)); + + protected void jbInit() + { + dpane = new JPanel(new MigLayout("", "[][][fill]", "[][fill][]")); + dpane.setPreferredSize(new Dimension( + 110 + 100 + OptsAndParamsPage.PARAM_WIDTH, 400)); typeList = new JList(); typeList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); - typeList.getSelectionModel().addListSelectionListener(new ListSelectionListener() - { - - @Override - public void valueChanged(ListSelectionEvent e) - { - type_SelectionChangedActionPerformed(e); - }; - }); - + typeList.getSelectionModel().addListSelectionListener( + new ListSelectionListener() + { + + @Override + public void valueChanged(ListSelectionEvent e) + { + type_SelectionChangedActionPerformed(e); + }; + }); + tok = new JTextField(); tok.addKeyListener(new KeyListener() { - + @Override public void keyTyped(KeyEvent e) { } - + @Override public void keyReleased(KeyEvent e) { tokChanged_actionPerformed(); } - + @Override public void keyPressed(KeyEvent e) { - + } }); - options = new JPanel(new MigLayout("","[grow 100,fill]","")); - optionsPanel = new JPanel(new MigLayout("","[fill]","[fill]")); + options = new JPanel(new MigLayout("", "[grow 100,fill]", "")); + optionsPanel = new JPanel(new MigLayout("", "[fill]", "[fill]")); JScrollPane optionView = new JScrollPane(); optionView.setViewportView(options); - JvSwingUtils.mgAddtoLayout(dpane, "Input Parameter name", new JLabel("Name"), tok, "grow,spanx 3,wrap"); - JPanel paramsType = new JPanel(new MigLayout("","[grow 100,fill]","[grow 100,fill]")); - paramsType.setBorder(new TitledBorder("Select input type")); - JScrollPane jlistScroller=new JScrollPane(); + JvSwingUtils.mgAddtoLayout(dpane, + MessageManager.getString("label.input_parameter_name"), + new JLabel(MessageManager.getString("label.name")), tok, + "grow,spanx 3,wrap"); + JPanel paramsType = new JPanel(new MigLayout("", "[grow 100,fill]", + "[grow 100,fill]")); + paramsType.setBorder(new TitledBorder(MessageManager + .getString("label.select_input_type"))); + JScrollPane jlistScroller = new JScrollPane(); jlistScroller.setViewportView(typeList); - paramsType.add(jlistScroller,"spanx 2,spany 2"); + paramsType.add(jlistScroller, "spanx 2,spany 2"); dpane.add(paramsType); - optionsPanel.setBorder(new TitledBorder("Set options for type")); + optionsPanel.setBorder(new TitledBorder(MessageManager + .getString("label.set_options_for_type"))); optionsPanel.add(optionView); - dpane.add(optionsPanel,"wrap"); - okcancel = new JPanel(new MigLayout("","[center][center]","[]")); - dpane.add(okcancel,"spanx 3,wrap"); + dpane.add(optionsPanel, "wrap"); + okcancel = new JPanel(new MigLayout("", "[center][center]", "[]")); + dpane.add(okcancel, "spanx 3,wrap"); } + protected void tokChanged_actionPerformed() { - + } + protected void type_SelectionChangedActionPerformed(ListSelectionEvent e) { } - + }