JAL-1355 (basic i18n support)
[jalview.git] / src / jalview / jbgui / GPairwiseAlignPanel.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8)
3  * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle
4  * 
5  * This file is part of Jalview.
6  * 
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 of the License, or (at your option) any later version.
10  *  
11  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 package jalview.jbgui;
19
20 import jalview.util.MessageManager;
21
22 import java.awt.*;
23 import java.awt.event.*;
24 import javax.swing.*;
25
26 /**
27  * DOCUMENT ME!
28  * 
29  * @author $author$
30  * @version $Revision$
31  */
32 public class GPairwiseAlignPanel extends JPanel
33 {
34   protected JScrollPane scrollPane = new JScrollPane();
35
36   protected JTextArea textarea = new JTextArea();
37
38   protected JButton viewInEditorButton = new JButton();
39
40   JPanel jPanel1 = new JPanel();
41
42   BorderLayout borderLayout1 = new BorderLayout();
43
44   /**
45    * Creates a new GPairwiseAlignPanel object.
46    */
47   public GPairwiseAlignPanel()
48   {
49     try
50     {
51       jbInit();
52     } catch (Exception e)
53     {
54       e.printStackTrace();
55     }
56   }
57
58   /**
59    * DOCUMENT ME!
60    * 
61    * @throws Exception
62    *           DOCUMENT ME!
63    */
64   private void jbInit() throws Exception
65   {
66     this.setLayout(borderLayout1);
67     textarea.setFont(new java.awt.Font("Monospaced", 0, 12));
68     textarea.setText("");
69     textarea.setWrapStyleWord(false);
70     viewInEditorButton.setFont(new java.awt.Font("Verdana", 0, 12));
71     viewInEditorButton.setText(MessageManager.getString("label.view_alignment_editor"));
72     viewInEditorButton
73             .addActionListener(new java.awt.event.ActionListener()
74             {
75               public void actionPerformed(ActionEvent e)
76               {
77                 viewInEditorButton_actionPerformed(e);
78               }
79             });
80     this.add(scrollPane, BorderLayout.CENTER);
81     scrollPane.getViewport().add(textarea, null);
82     this.add(jPanel1, BorderLayout.SOUTH);
83     jPanel1.add(viewInEditorButton, null);
84   }
85
86   /**
87    * DOCUMENT ME!
88    * 
89    * @param e
90    *          DOCUMENT ME!
91    */
92   protected void viewInEditorButton_actionPerformed(ActionEvent e)
93   {
94   }
95 }