2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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.
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.
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.
23 import jalview.datamodel.SequenceFeature;
24 import jalview.datamodel.SequenceI;
26 import java.awt.Color;
27 import java.util.List;
31 * Abstract feature renderer interface
36 public interface FeatureRenderer
40 * compute the perceived colour for a given column position in sequenceI,
41 * taking transparency and feature visibility into account.
44 * - background colour (due to alignment/group shading schemes, etc).
46 * - sequence providing features
51 Color findFeatureColour(Color col, SequenceI sequenceI, int r);
54 * trigger the feature discovery process for a newly created feature renderer.
61 * @return display style for a feature
63 Object getFeatureStyle(String ft);
66 * update the feature style for a particular feature
70 * - currently allows java.awt.Color and
71 * jalview.schemes.GraduatedColor
73 void setColour(String ft, Object ggc);
75 AlignViewportI getViewport();
79 * @return container managing list of feature types and their visibility
81 FeaturesDisplayedI getFeaturesDisplayed();
84 * get display style for all features types - visible or invisible
88 Map<String,Object> getFeatureColours();
91 * query the alignment view to find all features
93 * @param newMadeVisible
94 * - when true, automatically make newly discovered types visible
96 void findAllFeatures(boolean newMadeVisible);
99 * get display style for all features types currently visible
103 Map<String,Object> getDisplayedFeatureCols();
106 * get all registered groups
110 List<String> getFeatureGroups();
113 * get groups that are visible/invisible
118 List<String> getGroups(boolean visible);
121 * change visibility for a range of groups
126 void setGroupVisibility(List<String> toset, boolean visible);
129 * change visibiilty of given group
134 void setGroupVisibility(String group, boolean visible);
137 * locate features at a particular position on the given sequence
143 List<SequenceFeature> findFeaturesAtRes(SequenceI sequence, int res);
147 * @return true if the rendering platform supports transparency
149 boolean isTransparencyAvailable();
152 * get current displayed types
157 String[] getDisplayedFeatureTypes();
160 * get current displayed groups
164 String[] getDisplayedFeatureGroups();
167 * display all features of these types
169 * @param featureTypes
171 void setAllVisible(List<String> featureTypes);
174 * display featureType
178 void setVisible(String featureType);