a96ac0ff0a7009abbf36e957122a0ec499fdba2d
[jalview.git] / src / jalview / schemes / IdColourScheme.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
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
10  * of the License, or (at your option) any later version.
11  *  
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.
16  * 
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.
20  */
21 package jalview.schemes;
22
23 import jalview.api.AlignViewportI;
24 import jalview.datamodel.AnnotatedCollectionI;
25 import jalview.datamodel.SequenceCollectionI;
26 import jalview.datamodel.SequenceGroup;
27 import jalview.datamodel.SequenceI;
28
29 import java.awt.Color;
30 import java.util.Map;
31
32 public class IdColourScheme implements ColourSchemeI
33 {
34   AlignViewportI view = null;
35
36   AnnotatedCollectionI coll = null;
37
38   public IdColourScheme()
39   {
40
41   }
42   public IdColourScheme(AlignViewportI view, AnnotatedCollectionI coll)
43   {
44     this.view = view;
45     this.coll = coll;
46   }
47
48
49   @Override
50   public String getSchemeName()
51   {
52     return JalviewColourScheme.IdColour.toString();
53   }
54
55   /**
56    * Returns a new instance of this colour scheme with which the given data may
57    * be coloured
58    */
59   @Override
60   public ColourSchemeI getInstance(AlignViewportI view,
61           AnnotatedCollectionI coll,
62           Map<SequenceI, SequenceCollectionI> hrs)
63   {
64     return new IdColourScheme(view, coll);
65   }
66
67   @Override
68   public void alignmentChanged(AnnotatedCollectionI alignment,
69           Map<SequenceI, SequenceCollectionI> hiddenReps)
70   {
71   }
72
73   @Override
74   public Color findColour(char symbol, int position, SequenceI seq,
75           String consensusResidue, float pid)
76   {
77     return (view == null) ? Color.WHITE
78             : ((coll instanceof SequenceGroup)
79                     ? ((SequenceGroup) coll).idColour
80                     : view.getSequenceColour(seq));
81   }
82
83   @Override
84   public boolean hasGapColour()
85   {
86     return false;
87   }
88
89   @Override
90   public boolean isApplicableTo(AnnotatedCollectionI ac)
91   {
92     return true;
93   }
94
95   @Override
96   public boolean isSimple()
97   {
98     // this is really a sequence colour
99     return true;
100   }
101 }