2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.jbgui;
23 import jalview.util.MessageManager;
25 import java.awt.BorderLayout;
26 import java.awt.Color;
27 import java.awt.Dimension;
28 import java.awt.GridBagConstraints;
29 import java.awt.GridBagLayout;
30 import java.awt.GridLayout;
31 import java.awt.Insets;
32 import java.awt.event.ActionEvent;
34 import javax.swing.JButton;
35 import javax.swing.JLabel;
36 import javax.swing.JPanel;
37 import javax.swing.JScrollPane;
38 import javax.swing.JTextArea;
46 public class GWebserviceInfo extends JPanel
48 protected JTextArea infoText = new JTextArea();
50 JScrollPane jScrollPane1 = new JScrollPane();
52 JPanel jPanel1 = new JPanel();
54 BorderLayout borderLayout1 = new BorderLayout();
56 BorderLayout borderLayout2 = new BorderLayout();
58 protected JPanel titlePanel = new JPanel();
60 BorderLayout borderLayout3 = new BorderLayout();
62 protected JPanel buttonPanel = new JPanel();
64 public JButton cancel = new JButton();
66 public JButton showResultsNewFrame = new JButton();
68 public JButton mergeResults = new JButton();
70 GridBagLayout gridBagLayout1 = new GridBagLayout();
72 public JPanel statusPanel = new JPanel(new GridLayout());
74 public JLabel statusBar = new JLabel();
77 * Creates a new GWebserviceInfo object.
79 public GWebserviceInfo()
96 private void jbInit() throws Exception
98 infoText.setFont(new java.awt.Font("Verdana", 0, 10));
99 infoText.setBorder(null);
100 infoText.setEditable(false);
101 infoText.setText("");
102 infoText.setLineWrap(true);
103 infoText.setWrapStyleWord(true);
104 this.setLayout(borderLayout1);
105 jPanel1.setLayout(borderLayout2);
106 titlePanel.setBackground(Color.white);
107 titlePanel.setPreferredSize(new Dimension(0, 60));
108 titlePanel.setLayout(borderLayout3);
109 jScrollPane1.setBorder(null);
110 jScrollPane1.setPreferredSize(new Dimension(400, 70));
111 cancel.setFont(new java.awt.Font("Verdana", 0, 11));
112 cancel.setText(MessageManager.getString("action.cancel"));
113 cancel.addActionListener(new java.awt.event.ActionListener()
115 public void actionPerformed(ActionEvent e)
117 cancel_actionPerformed(e);
120 buttonPanel.setLayout(gridBagLayout1);
121 buttonPanel.setOpaque(false);
122 showResultsNewFrame.setText(MessageManager
123 .getString("label.new_window"));
124 mergeResults.setText(MessageManager.getString("action.merge_results"));
125 this.setBackground(Color.white);
126 this.add(jPanel1, BorderLayout.NORTH);
127 jPanel1.add(jScrollPane1, BorderLayout.CENTER);
128 jScrollPane1.getViewport().add(infoText, null);
129 jPanel1.add(titlePanel, BorderLayout.NORTH);
130 titlePanel.add(buttonPanel, BorderLayout.EAST);
131 buttonPanel.add(cancel, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0,
132 GridBagConstraints.CENTER, GridBagConstraints.NONE, new Insets(
133 19, 6, 16, 4), 0, 0));
134 this.add(statusPanel, java.awt.BorderLayout.SOUTH);
135 statusPanel.add(statusBar, null);
144 protected void cancel_actionPerformed(ActionEvent e)