allows for null Jmol viewer
[jalview.git] / src2 / fr / orsay / lri / varna / controlers / ControleurSelectionHighlight.java
1 /*
2  VARNA is a tool for the automated drawing, visualization and annotation of the secondary structure of RNA, designed as a companion software for web servers and databases.
3  Copyright (C) 2008  Kevin Darty, Alain Denise and Yann Ponty.
4  electronic mail : Yann.Ponty@lri.fr
5  paper mail : LRI, bat 490 Université Paris-Sud 91405 Orsay Cedex France
6
7  This file is part of VARNA version 3.1.
8  VARNA version 3.1 is free software: you can redistribute it and/or 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  VARNA version 3.1 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
12  without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13  See the GNU General Public License for more details.
14
15  You should have received a copy of the GNU General Public License along with VARNA version 3.1.
16  If not, see http://www.gnu.org/licenses.
17  */
18 package fr.orsay.lri.varna.controlers;
19
20 import java.util.ArrayList;
21 import java.util.Collection;
22 import java.util.Vector;
23
24 import javax.swing.JMenuItem;
25 import javax.swing.event.ChangeEvent;
26 import javax.swing.event.ChangeListener;
27
28 import fr.orsay.lri.varna.VARNAPanel;
29 import fr.orsay.lri.varna.models.rna.ModeleBase;
30
31
32 public class ControleurSelectionHighlight implements ChangeListener {
33         private Collection<? extends ModeleBase> _selection;
34         private VARNAPanel _target;
35         private JMenuItem _parent;
36
37         public ControleurSelectionHighlight(int elem, VARNAPanel v, JMenuItem parent) {
38                 ArrayList<Integer> sel = new ArrayList<Integer>();
39                 sel.add(elem);
40                 _selection = v.getRNA().getBasesAt(sel);
41                 _target = v;
42                 _parent = parent;
43         }
44
45         public ControleurSelectionHighlight(Vector<Integer> sel, VARNAPanel v,
46                         JMenuItem parent) {
47                 this(new ArrayList<Integer>(sel), v, parent);
48         }
49
50         public ControleurSelectionHighlight(ArrayList<Integer> sel, VARNAPanel v,
51                         JMenuItem parent) {
52                 this(v.getRNA().getBasesAt(sel),v,parent);
53         }
54         
55         public ControleurSelectionHighlight(Collection<? extends ModeleBase> sel, VARNAPanel v,
56                         JMenuItem parent) {
57                 _selection = sel;
58                 _target = v;
59                 _parent = parent;
60         }
61
62         public void stateChanged(ChangeEvent e) {
63                 if (_parent.isSelected()) {
64                         _target.saveSelection();
65                         _target.setSelection(_selection);
66                 } else {
67                         _target.restoreSelection();
68                 }
69
70         }
71
72 }