update author list in license for (JAL-826)
[jalview.git] / src / jalview / jbgui / GSequenceLink.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
3  * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, 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.gui.JvSwingUtils;
21 import jalview.util.UrlLink;
22
23 import java.awt.*;
24 import java.awt.event.*;
25 import javax.swing.*;
26
27 public class GSequenceLink extends Panel
28 {
29   public GSequenceLink()
30   {
31     try
32     {
33       jbInit();
34     } catch (Exception ex)
35     {
36       ex.printStackTrace();
37     }
38   }
39
40   private void jbInit() throws Exception
41   {
42     this.setLayout(gridBagLayout1);
43     nameTB.setFont(JvSwingUtils.getLabelFont());
44     nameTB.setBounds(new Rectangle(77, 10, 310, 23));
45     nameTB.addKeyListener(new KeyAdapter()
46     {
47       public void keyTyped(KeyEvent e)
48       {
49         nameTB_keyTyped(e);
50       }
51     });
52     urlTB.setFont(JvSwingUtils.getLabelFont());
53     urlTB.setText("http://www.");
54     urlTB.setBounds(new Rectangle(78, 40, 309, 23));
55     urlTB.addKeyListener(new KeyAdapter()
56     {
57       public void keyTyped(KeyEvent e)
58       {
59         urlTB_keyTyped(e);
60       }
61     });
62     jLabel1.setFont(JvSwingUtils.getLabelFont());
63     jLabel1.setHorizontalAlignment(SwingConstants.TRAILING);
64     jLabel1.setText("Link Name");
65     jLabel1.setBounds(new Rectangle(4, 10, 71, 24));
66     jLabel2.setFont(JvSwingUtils.getLabelFont());
67     jLabel2.setHorizontalAlignment(SwingConstants.TRAILING);
68     jLabel2.setText("URL");
69     jLabel2.setBounds(new Rectangle(17, 37, 54, 27));
70     jLabel3.setFont(new java.awt.Font("Verdana", Font.ITALIC, 11));
71     jLabel3.setText("Use $SEQUENCE_ID$ or $SEQUENCE_ID=/<regex>/=$");
72     jLabel3.setBounds(new Rectangle(21, 72, 351, 15));
73     jLabel4.setFont(new java.awt.Font("Verdana", Font.ITALIC, 11));
74     jLabel4.setText("\nto embed sequence id in URL");
75     jLabel4.setBounds(new Rectangle(21, 93, 351, 15));
76     jPanel1.setBorder(BorderFactory.createEtchedBorder());
77     jPanel1.setLayout(null);
78     jPanel1.add(jLabel1);
79     jPanel1.add(nameTB);
80     jPanel1.add(urlTB);
81     jPanel1.add(jLabel2);
82     jPanel1.add(jLabel3);
83     jPanel1.add(jLabel4);
84     this.add(jPanel1, new GridBagConstraints(0, 0, 1, 1, 1.0, 1.0,
85             GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(
86                     5, 4, 6, 5), 390, 130));
87   }
88
89   public void setName(String name)
90   {
91     nameTB.setText(name);
92   }
93
94   public void setURL(String url)
95   {
96     urlTB.setText(url);
97   }
98
99   public String getName()
100   {
101     return nameTB.getText();
102   }
103
104   public String getURL()
105   {
106     return urlTB.getText();
107   }
108
109   public boolean checkValid()
110   {
111     UrlLink ul = new UrlLink("foo|" + urlTB.getText().trim());
112     if (ul.isValid() && ul.isDynamic())
113     {
114       return true;
115     }
116
117     JOptionPane
118             .showInternalMessageDialog(
119                     jalview.gui.Desktop.desktop,
120                     "Sequence URL must contain $SEQUENCE_ID$ or a regex $SEQUENCE_ID=/<regex>/=$",
121                     "URL not valid", JOptionPane.WARNING_MESSAGE);
122     return false;
123   }
124
125   JTextField nameTB = new JTextField();
126
127   JTextField urlTB = new JTextField();
128
129   JLabel jLabel1 = new JLabel();
130
131   JLabel jLabel2 = new JLabel();
132
133   JLabel jLabel3 = new JLabel();
134
135   JLabel jLabel4 = new JLabel();
136
137   JPanel jPanel1 = new JPanel();
138
139   GridBagLayout gridBagLayout1 = new GridBagLayout();
140
141   public void nameTB_keyTyped(KeyEvent e)
142   {
143     if (e.getKeyChar() == '|')
144     {
145       e.consume();
146     }
147   }
148
149   public void urlTB_keyTyped(KeyEvent e)
150   {
151     // URLLink object validation takes care of incorrect regexes.
152     // if (e.getKeyChar() == '|' || e.getKeyChar() == ' ')
153     // {
154     // e.consume();
155     // }
156
157   }
158 }