2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.4)
3 * Copyright (C) 2008 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 package jalview.appletgui;
25 import jalview.datamodel.*;
33 public class PaintRefresher
35 static Hashtable components;
45 public static void Register(Component comp, String seqSetId)
47 if (components == null)
49 components = new Hashtable();
52 if (components.containsKey(seqSetId))
54 Vector comps = (Vector) components.get(seqSetId);
55 if (!comps.contains(comp))
57 comps.addElement(comp);
62 Vector vcoms = new Vector();
63 vcoms.addElement(comp);
64 components.put(seqSetId, vcoms);
68 public static void RemoveComponent(Component comp)
70 if (components == null)
75 Enumeration en = components.keys();
76 while (en.hasMoreElements())
78 String id = en.nextElement().toString();
79 Vector comps = (Vector) components.get(id);
80 comps.removeElement(comp);
81 if (comps.size() == 0)
83 components.remove(id);
88 public static void Refresh(Component source, String id)
90 Refresh(source, id, false, false);
93 public static void Refresh(Component source, String id,
94 boolean alignmentChanged, boolean validateSequences)
96 if (components == null)
102 Vector comps = (Vector) components.get(id);
109 Enumeration e = comps.elements();
110 while (e.hasMoreElements())
112 comp = (Component) e.nextElement();
121 comps.removeElement(comp);
123 else if (validateSequences && comp instanceof AlignmentPanel
124 && source instanceof AlignmentPanel)
126 validateSequences(((AlignmentPanel) source).av.alignment,
127 ((AlignmentPanel) comp).av.alignment);
130 if (comp instanceof AlignmentPanel && alignmentChanged)
132 ((AlignmentPanel) comp).alignmentChanged();
139 static void validateSequences(AlignmentI source, AlignmentI comp)
142 if (source.getHiddenSequences().getSize() > 0)
144 a1 = source.getHiddenSequences().getFullAlignment()
145 .getSequencesArray();
149 a1 = source.getSequencesArray();
153 if (comp.getHiddenSequences().getSize() > 0)
155 a2 = comp.getHiddenSequences().getFullAlignment().getSequencesArray();
159 a2 = comp.getSequencesArray();
162 int i, iSize = a1.length, j, jSize = a2.length;
169 boolean exists = false;
170 for (i = 0; i < iSize; i++)
174 for (j = 0; j < jSize; j++)
185 if (i < comp.getHeight())
187 comp.getSequences().insertElementAt(a1[i], i);
191 comp.addSequence(a1[i]);
194 if (comp.getHiddenSequences().getSize() > 0)
196 a2 = comp.getHiddenSequences().getFullAlignment()
197 .getSequencesArray();
201 a2 = comp.getSequencesArray();
211 for (j = 0; j < jSize; j++)
214 for (i = 0; i < iSize; i++)
225 comp.deleteSequence(a2[j]);