X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Farchaeopteryx%2FControlPanel.java;h=6a4531000b4b366acdf6b34a3ab596f3f4f2e323;hb=4a71774e563925de62c37378a6c32c3275f2e287;hp=174ba3520a74359fa52525786964cbf875a85033;hpb=4ca4ac162d7a3caa78a08c28213a0451968cd1ad;p=jalview.git diff --git a/forester/java/src/org/forester/archaeopteryx/ControlPanel.java b/forester/java/src/org/forester/archaeopteryx/ControlPanel.java index 174ba35..6a45310 100644 --- a/forester/java/src/org/forester/archaeopteryx/ControlPanel.java +++ b/forester/java/src/org/forester/archaeopteryx/ControlPanel.java @@ -44,6 +44,7 @@ import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Map; +import java.util.Set; import javax.swing.BorderFactory; import javax.swing.DefaultListCellRenderer; @@ -59,6 +60,7 @@ import javax.swing.ListCellRenderer; import org.forester.archaeopteryx.Options.CLADOGRAM_TYPE; import org.forester.archaeopteryx.Options.PHYLOGENY_GRAPHICS_TYPE; +import org.forester.archaeopteryx.util.TypomaticJButton; import org.forester.phylogeny.Phylogeny; import org.forester.phylogeny.PhylogenyMethods; import org.forester.phylogeny.PhylogenyMethods.DESCENDANT_SORT_PRIORITY; @@ -71,16 +73,39 @@ import org.forester.util.ForesterUtil; final class ControlPanel extends JPanel implements ActionListener { - final static Font jcb_bold_font = new Font( Configuration.getDefaultFontFamilyName(), - Font.BOLD, - 9 ); - final static Font jcb_font = new Font( Configuration.getDefaultFontFamilyName(), - Font.PLAIN, - 9 ); - final static Font js_font = new Font( Configuration.getDefaultFontFamilyName(), - Font.PLAIN, - 9 ); + enum NodeClickAction { + ADD_NEW_NODE, + BLAST, + COLLAPSE, + COLOR_SUBTREE, + COPY_SUBTREE, + CUT_SUBTREE, + DELETE_NODE_OR_SUBTREE, + EDIT_NODE_DATA, + GET_EXT_DESC_DATA, + OPEN_PDB_WEB, + OPEN_SEQ_WEB, + OPEN_TAX_WEB, + PASTE_SUBTREE, + REROOT, + SELECT_NODES, + SHOW_DATA, + SORT_DESCENDENTS, + SUBTREE, + SWAP, + CHANGE_NODE_FONT, + COLOR_NODE_FONT, + UNCOLLAPSE_ALL, + ORDER_SUBTREE; + } + final static Font jcb_bold_font = new Font( Configuration + .getDefaultFontFamilyName(), Font.BOLD, 9 ); + final static Font jcb_font = new Font( Configuration + .getDefaultFontFamilyName(), Font.PLAIN, 9 ); + final static Font js_font = new Font( Configuration + .getDefaultFontFamilyName(), Font.PLAIN, 9 ); private static final String RETURN_TO_SUPER_TREE_TEXT = "Back to Super Tree"; + private static final String SEARCH_TIP_TEXT = "Enter text to search for. Use ',' for logical OR and '+' for logical AND (not used in this manner for regular expression searches)."; private static final long serialVersionUID = -8463483932821545633L; private NodeClickAction _action_when_node_clicked; private int _add_new_node_item; @@ -91,6 +116,8 @@ final class ControlPanel extends JPanel implements ActionListener { private JLabel _click_to_label; private List _click_to_names; private int _collapse_cb_item; + private int _uncollapse_all_cb_item; + private int _order_subtree_cb_item; private JCheckBox _color_acc_species; private JCheckBox _color_acc_sequence; private JCheckBox _color_according_to_annotation; @@ -109,6 +136,8 @@ final class ControlPanel extends JPanel implements ActionListener { private JCheckBox _display_internal_data; private JLabel _domain_display_label; private JTextField _domain_structure_evalue_thr_tf; + private JTextField _depth_collapse_depth_tf; + private JTextField _rank_collapse_depth_tf; private List _draw_phylogram; private JCheckBox _dynamically_hide_data; private int _edit_node_data_item; @@ -121,11 +150,10 @@ final class ControlPanel extends JPanel implements ActionListener { private int _open_tax_web_item; private int _color_node_font_item; private JButton _order; - private boolean _order_of_appearance; private int _paste_subtree_item; private int _reroot_cb_item; private JButton _return_to_super_tree; - // Search + // Search private JLabel _search_found_label_0; private JLabel _search_found_label_1; private JButton _search_reset_button_0; @@ -142,6 +170,8 @@ final class ControlPanel extends JPanel implements ActionListener { // Indices for the click-to options in the combo box private int _show_data_item; private JCheckBox _show_domain_architectures; + private JCheckBox _show_mol_seqs; + private JCheckBox _write_branch_length_values; private JCheckBox _show_events; private JCheckBox _show_gene_names; private JCheckBox _show_node_names; @@ -151,6 +181,7 @@ final class ControlPanel extends JPanel implements ActionListener { private JCheckBox _show_sequence_acc; private JComboBox _show_sequence_relations; private JCheckBox _show_taxo_code; + private JCheckBox _show_taxo_rank; private JCheckBox _show_taxo_common_names; private JCheckBox _show_taxo_images_cb; private JCheckBox _show_taxo_scientific_names; @@ -171,6 +202,12 @@ final class ControlPanel extends JPanel implements ActionListener { private JButton _zoom_out_domain_structure; private JButton _zoom_out_x; private JButton _zoom_out_y; + private JButton _decr_depth_collapse_level; + private JButton _incr_depth_collapse_level; + private JLabel _depth_collapse_label; + private JButton _decr_rank_collapse_level; + private JButton _incr_rank_collapse_level; + private JLabel _rank_collapse_label; ControlPanel( final MainPanel ap, final Configuration configuration ) { init(); @@ -181,7 +218,6 @@ final class ControlPanel extends JPanel implements ActionListener { setBorder( BorderFactory.createRaisedBevelBorder() ); } setLayout( new GridLayout( 0, 1, 2, 2 ) ); - _order_of_appearance = true; setupControls(); } @@ -233,22 +269,23 @@ final class ControlPanel extends JPanel implements ActionListener { } // Zoom buttons else if ( e.getSource() == _zoom_in_x ) { - zoomInX( Constants.BUTTON_ZOOM_IN_FACTOR, Constants.BUTTON_ZOOM_IN_X_CORRECTION_FACTOR ); + zoomInX( AptxConstants.BUTTON_ZOOM_IN_FACTOR, AptxConstants.BUTTON_ZOOM_IN_X_CORRECTION_FACTOR ); displayedPhylogenyMightHaveChanged( false ); } else if ( e.getSource() == _zoom_in_y ) { - zoomInY( Constants.BUTTON_ZOOM_IN_FACTOR ); + zoomInY( AptxConstants.BUTTON_ZOOM_IN_FACTOR ); displayedPhylogenyMightHaveChanged( false ); } else if ( e.getSource() == _zoom_out_x ) { - zoomOutX( Constants.BUTTON_ZOOM_OUT_FACTOR, Constants.BUTTON_ZOOM_OUT_X_CORRECTION_FACTOR ); + zoomOutX( AptxConstants.BUTTON_ZOOM_OUT_FACTOR, AptxConstants.BUTTON_ZOOM_OUT_X_CORRECTION_FACTOR ); displayedPhylogenyMightHaveChanged( false ); } else if ( e.getSource() == _zoom_out_y ) { - zoomOutY( Constants.BUTTON_ZOOM_OUT_FACTOR ); + zoomOutY( AptxConstants.BUTTON_ZOOM_OUT_FACTOR ); displayedPhylogenyMightHaveChanged( false ); } else if ( e.getSource() == _show_whole ) { + displayedPhylogenyMightHaveChanged( true ); showWhole(); } else if ( e.getSource() == _return_to_super_tree ) { @@ -256,24 +293,21 @@ final class ControlPanel extends JPanel implements ActionListener { showWhole(); } else if ( e.getSource() == _order ) { - DESCENDANT_SORT_PRIORITY pri = DESCENDANT_SORT_PRIORITY.TAXONOMY; - if ( ( !isShowTaxonomyScientificNames() && !isShowTaxonomyCode() && !isShowTaxonomyCommonNames() ) ) { - if ( ( isShowSequenceAcc() || isShowSeqNames() || isShowSeqSymbols() ) ) { - pri = DESCENDANT_SORT_PRIORITY.SEQUENCE; - } - else if ( isShowNodeNames() ) { - pri = DESCENDANT_SORT_PRIORITY.NODE_NAME; - } + DESCENDANT_SORT_PRIORITY pri = DESCENDANT_SORT_PRIORITY.NODE_NAME; + if ( isShowTaxonomyScientificNames() || isShowTaxonomyCode() ) { + pri = DESCENDANT_SORT_PRIORITY.TAXONOMY; } - PhylogenyMethods.orderAppearance( tp.getPhylogeny().getRoot(), _order_of_appearance, true, pri ); - _order_of_appearance = !_order_of_appearance; + else if ( isShowSeqNames() || isShowSeqSymbols() || isShowGeneNames() ) { + pri = DESCENDANT_SORT_PRIORITY.SEQUENCE; + } + PhylogenyMethods.orderAppearanceX( tp.getPhylogeny().getRoot(), true, pri ); tp.setNodeInPreorderToNull(); tp.getPhylogeny().externalNodesHaveChanged(); tp.getPhylogeny().clearHashIdToNodeMap(); tp.getPhylogeny().recalculateNumberOfExternalDescendants( true ); tp.resetNodeIdToDistToLeafMap(); tp.setEdited( true ); - displayedPhylogenyMightHaveChanged( false ); + displayedPhylogenyMightHaveChanged( true ); } else if ( e.getSource() == _uncollapse_all ) { uncollapseAll( tp ); @@ -288,11 +322,15 @@ final class ControlPanel extends JPanel implements ActionListener { displayedPhylogenyMightHaveChanged( true ); } else if ( e.getSource() == _decr_domain_structure_evalue_thr ) { - _mainpanel.getCurrentTreePanel().decreaseDomainStructureEvalueThreshold(); + _mainpanel.getCurrentTreePanel().decreaseDomainStructureEvalueThresholdExp(); + search0(); + search1(); displayedPhylogenyMightHaveChanged( true ); } else if ( e.getSource() == _incr_domain_structure_evalue_thr ) { - _mainpanel.getCurrentTreePanel().increaseDomainStructureEvalueThreshold(); + _mainpanel.getCurrentTreePanel().increaseDomainStructureEvalueThresholdExp(); + search0(); + search1(); displayedPhylogenyMightHaveChanged( true ); } else if ( e.getSource() == _search_tf_0 ) { @@ -308,6 +346,50 @@ final class ControlPanel extends JPanel implements ActionListener { setDynamicHidingIsOn( false ); displayedPhylogenyMightHaveChanged( true ); } + else if ( ( e.getSource() == _decr_depth_collapse_level ) + || ( e.getSource() == _incr_depth_collapse_level ) ) { + if ( e.getSource() == _decr_depth_collapse_level ) { + _mainpanel.getCurrentTreePanel().decreaseDepthCollapseLevel(); + } + else { + _mainpanel.getCurrentTreePanel().increaseDepthCollapseLevel(); + } + search0(); + search1(); + _mainpanel.getCurrentTreePanel().updateSetOfCollapsedExternalNodes(); + _mainpanel.getCurrentTreePanel().getPhylogeny().recalculateNumberOfExternalDescendants( true ); + _mainpanel.getCurrentTreePanel().resetNodeIdToDistToLeafMap(); + _mainpanel.getCurrentTreePanel().calculateLongestExtNodeInfo(); + _mainpanel.getCurrentTreePanel().setNodeInPreorderToNull(); + displayedPhylogenyMightHaveChanged( true ); + _mainpanel.getCurrentTreePanel().resetPreferredSize(); + _mainpanel.getCurrentTreePanel().updateOvSizes(); + _mainpanel.adjustJScrollPane(); + showWhole(); + repaint(); + } + else if ( ( e.getSource() == _decr_rank_collapse_level ) + || ( e.getSource() == _incr_rank_collapse_level ) ) { + if ( e.getSource() == _decr_rank_collapse_level ) { + _mainpanel.getCurrentTreePanel().decreaseRankCollapseLevel(); + } + else { + _mainpanel.getCurrentTreePanel().increaseRankCollapseLevel(); + } + search0(); + search1(); + _mainpanel.getCurrentTreePanel().updateSetOfCollapsedExternalNodes(); + _mainpanel.getCurrentTreePanel().getPhylogeny().recalculateNumberOfExternalDescendants( true ); + _mainpanel.getCurrentTreePanel().resetNodeIdToDistToLeafMap(); + _mainpanel.getCurrentTreePanel().calculateLongestExtNodeInfo(); + _mainpanel.getCurrentTreePanel().setNodeInPreorderToNull(); + displayedPhylogenyMightHaveChanged( true ); + _mainpanel.getCurrentTreePanel().resetPreferredSize(); + _mainpanel.getCurrentTreePanel().updateOvSizes(); + _mainpanel.adjustJScrollPane(); + showWhole(); + repaint(); + } else { displayedPhylogenyMightHaveChanged( true ); } @@ -324,16 +406,12 @@ final class ControlPanel extends JPanel implements ActionListener { } } - public JCheckBox getColorAccSpeciesCb() { - return _color_acc_species; - } - public JCheckBox getColorAccSequenceCb() { return _color_acc_sequence; } - public JCheckBox getUseVisualStylesCb() { - return _use_visual_styles_cb; + public JCheckBox getColorAccSpeciesCb() { + return _color_acc_species; } public JCheckBox getDisplayAsPhylogramCb() { @@ -372,7 +450,8 @@ final class ControlPanel extends JPanel implements ActionListener { public JComboBox getSequenceRelationTypeBox() { if ( _sequence_relation_type_box == null ) { _sequence_relation_type_box = new JComboBox(); - for( final SequenceRelation.SEQUENCE_RELATION_TYPE type : SequenceRelation.SEQUENCE_RELATION_TYPE.values() ) { + for( final SequenceRelation.SEQUENCE_RELATION_TYPE type : SequenceRelation.SEQUENCE_RELATION_TYPE + .values() ) { _sequence_relation_type_box.addItem( type ); } _sequence_relation_type_box.addActionListener( new ActionListener() { @@ -392,10 +471,18 @@ final class ControlPanel extends JPanel implements ActionListener { return _show_events; } + public JCheckBox getUseVisualStylesCb() { + return _use_visual_styles_cb; + } + public JCheckBox getWriteConfidenceCb() { return _write_confidence; } + public boolean isShowMolSequences() { + return ( ( _show_mol_seqs != null ) && _show_mol_seqs.isSelected() ); + } + public boolean isShowProperties() { return ( ( _show_properties_cb != null ) && _show_properties_cb.isSelected() ); } @@ -421,7 +508,7 @@ final class ControlPanel extends JPanel implements ActionListener { } final ArrayList sequenceNamesToAdd = new ArrayList(); for( final Sequence seq : sequenceRelationQueries ) { - if ( seq.hasSequenceRelations() ) { + if ( seq.isHasSequenceRelations() ) { boolean fFoundForCurrentType = false; for( final SequenceRelation sq : seq.getSequenceRelations() ) { if ( sq.getType().equals( relationType ) ) { @@ -454,101 +541,755 @@ final class ControlPanel extends JPanel implements ActionListener { } ); } - void activateButtonToReturnToSuperTree( int index ) { - --index; - if ( index > 0 ) { - _return_to_super_tree.setText( RETURN_TO_SUPER_TREE_TEXT + " " + index ); - } - else { - _return_to_super_tree.setText( RETURN_TO_SUPER_TREE_TEXT ); + private void addClickToOption( final int which, final String title ) { + _click_to_combobox.addItem( title ); + _click_to_names.add( title ); + _all_click_to_names.put( new Integer( which ), title ); + if ( !_configuration.isUseNativeUI() ) { + _click_to_combobox.setBackground( getConfiguration().getGuiButtonBackgroundColor() ); + _click_to_combobox.setForeground( getConfiguration().getGuiButtonTextColor() ); } - _return_to_super_tree.setForeground( getConfiguration().getGuiCheckboxAndButtonActiveColor() ); - _return_to_super_tree.setEnabled( true ); } - /** - * Add zoom and quick edit buttons. (Last modified 8/9/04) - */ - void addButtons() { + /* GUILHEM_BEG */ + private void addSequenceRelationBlock() { final JLabel spacer = new JLabel( "" ); - spacer.setOpaque( false ); + spacer.setSize( 1, 1 ); add( spacer ); - final JPanel x_panel = new JPanel( new GridLayout( 1, 1, 0, 0 ) ); - final JPanel y_panel = new JPanel( new GridLayout( 1, 3, 0, 0 ) ); - final JPanel z_panel = new JPanel( new GridLayout( 1, 1, 0, 0 ) ); - if ( !getConfiguration().isUseNativeUI() ) { - x_panel.setBackground( getBackground() ); - y_panel.setBackground( getBackground() ); - z_panel.setBackground( getBackground() ); + final JLabel mainLabel = new JLabel( "Sequence relations to display" ); + final JLabel typeLabel = customizeLabel( new JLabel( "(type) " ), getConfiguration() ); + typeLabel.setFont( ControlPanel.js_font.deriveFont( 7 ) ); + getSequenceRelationTypeBox().setFocusable( false ); + _sequence_relation_type_box.setFont( ControlPanel.js_font ); + if ( !_configuration.isUseNativeUI() ) { + _sequence_relation_type_box.setBackground( getConfiguration().getGuiButtonBackgroundColor() ); + _sequence_relation_type_box.setForeground( getConfiguration().getGuiButtonTextColor() ); } - add( _zoom_label = new JLabel( "Zoom:" ) ); - customizeLabel( _zoom_label, getConfiguration() ); - add( x_panel ); - add( y_panel ); - add( z_panel ); - if ( getConfiguration().isUseNativeUI() ) { - _zoom_in_x = new JButton( "+" ); - _zoom_out_x = new JButton( "-" ); + _sequence_relation_type_box.setRenderer( new ListCellRenderer() { + + @Override + public Component getListCellRendererComponent( final JList list, + final Object value, + final int index, + final boolean isSelected, + final boolean cellHasFocus ) { + final Component component = new DefaultListCellRenderer() + .getListCellRendererComponent( list, value, index, isSelected, cellHasFocus ); + if ( ( value != null ) && ( value instanceof SequenceRelation.SEQUENCE_RELATION_TYPE ) ) { + ( ( DefaultListCellRenderer ) component ).setText( SequenceRelation + .getPrintableNameByType( ( SequenceRelation.SEQUENCE_RELATION_TYPE ) value ) ); + } + return component; + } + } ); + final GridBagLayout gbl = new GridBagLayout(); + _sequence_relation_type_box.setMinimumSize( new Dimension( 115, 17 ) ); + _sequence_relation_type_box.setPreferredSize( new Dimension( 115, 20 ) ); + final JPanel horizGrid = new JPanel( gbl ); + horizGrid.setBackground( getBackground() ); + horizGrid.add( typeLabel ); + horizGrid.add( _sequence_relation_type_box ); + add( customizeLabel( mainLabel, getConfiguration() ) ); + add( horizGrid ); + add( getSequenceRelationBox() ); + if ( _configuration.doDisplayOption( Configuration.show_relation_confidence ) ) { + addCheckbox( Configuration.show_relation_confidence, + _configuration.getDisplayTitle( Configuration.show_relation_confidence ) ); + setCheckbox( Configuration.show_relation_confidence, + _configuration.doCheckOption( Configuration.show_relation_confidence ) ); + } + }// addSequenceRelationBlock + + /* GUILHEM_END */ + private List getIsDrawPhylogramList() { + return _draw_phylogram; + } + + // This takes care of ArchaeopteryxE-issue. + // Can, and will, return null prior to ArchaeopteryxE initialization completion. + final private MainFrame getMainFrame() { + MainFrame mf = getMainPanel().getMainFrame(); + if ( mf == null ) { + // Must be "E" applet version. + final ArchaeopteryxE e = ( ArchaeopteryxE ) ( ( MainPanelApplets ) getMainPanel() ).getApplet(); + if ( e.getMainPanel() == null ) { + return null; + } + mf = e.getMainPanel().getMainFrame(); + } + return mf; + } + + private void init() { + _draw_phylogram = new ArrayList(); + setSpeciesColors( new HashMap() ); + setSequenceColors( new HashMap() ); + setAnnotationColors( new HashMap() ); + } + + private boolean isDrawPhylogram( final int index ) { + return getIsDrawPhylogramList().get( index ); + } + + private void search0( final MainPanel main_panel, final Phylogeny tree, final String query_str ) { + getSearchFoundCountsLabel0().setVisible( true ); + getSearchResetButton0().setEnabled( true ); + getSearchResetButton0().setVisible( true ); + String[] queries = null; + Set nodes = null; + if ( ( query_str.indexOf( ',' ) >= 0 ) && !getOptions().isSearchWithRegex() ) { + queries = query_str.split( ",+" ); } else { - _zoom_in_x = new JButton( "X+" ); - _zoom_out_x = new JButton( "X-" ); + queries = new String[ 1 ]; + queries[ 0 ] = query_str.trim(); } - _zoom_in_y = new JButton( "Y+" ); - _zoom_out_y = new JButton( "Y-" ); - _show_whole = new JButton( "F" ); - _show_whole.setToolTipText( "To fit the complete phylogeny to the current display size [F or Home]" ); - _zoom_in_x.setToolTipText( "To zoom in horizontally [Shift+cursor-right]" ); - _zoom_in_y.setToolTipText( "To zoom in vertically [Shift+cursor-up]" ); - _zoom_out_x.setToolTipText( "To zoom out horizontally [Shift+cursor-left]" ); - _zoom_out_y.setToolTipText( "To zoom out vertically [Shift+cursor-down]" ); - if ( getConfiguration().isUseNativeUI() && ForesterUtil.isMac() ) { - _zoom_out_x.setPreferredSize( new Dimension( 55, 10 ) ); - _zoom_in_x.setPreferredSize( new Dimension( 55, 10 ) ); + if ( ( queries != null ) && ( queries.length > 0 ) ) { + nodes = new HashSet(); + for( String query : queries ) { + if ( ForesterUtil.isEmpty( query ) ) { + continue; + } + query = query.trim(); + final TreePanel tp = getMainPanel().getCurrentTreePanel(); + if ( ( query.indexOf( '+' ) > 0 ) && !getOptions().isSearchWithRegex() ) { + nodes.addAll( PhylogenyMethods.searchDataLogicalAnd( query.split( "\\++" ), + tree, + getOptions().isSearchCaseSensitive(), + !getOptions().isMatchWholeTermsOnly(), + isShowDomainArchitectures(), + tp != null + ? Math.pow( 10, + tp.getDomainStructureEvalueThresholdExp() ) + : 0 ) ); + } + else { + nodes.addAll( PhylogenyMethods + .searchData( query, + tree, + getOptions().isSearchCaseSensitive(), + !getOptions().isMatchWholeTermsOnly(), + getOptions().isSearchWithRegex(), + isShowDomainArchitectures(), + tp != null ? Math.pow( 10, tp.getDomainStructureEvalueThresholdExp() ) : 0 ) ); + } + } + if ( getOptions().isInverseSearchResult() ) { + final List all = PhylogenyMethods.obtainAllNodesAsList( tree ); + final Set temp_nodes = nodes; + nodes = new HashSet(); + for( final PhylogenyNode n : all ) { + if ( ( !temp_nodes.contains( n.getId() ) ) && n.isHasNodeData() ) { + nodes.add( n.getId() ); + } + } + } + } + if ( ( nodes != null ) && ( nodes.size() > 0 ) ) { + main_panel.getCurrentTreePanel().setFoundNodes0( new HashSet() ); + for( final Long node : nodes ) { + main_panel.getCurrentTreePanel().getFoundNodes0().add( node ); + } + setSearchFoundCountsOnLabel0( nodes.size() ); } else { - _zoom_out_x.setPreferredSize( new Dimension( 10, 10 ) ); - _zoom_in_x.setPreferredSize( new Dimension( 10, 10 ) ); + setSearchFoundCountsOnLabel0( 0 ); + searchReset0(); } - _zoom_out_y.setPreferredSize( new Dimension( 10, 10 ) ); - _zoom_in_y.setPreferredSize( new Dimension( 10, 10 ) ); - _show_whole.setPreferredSize( new Dimension( 10, 10 ) ); - _return_to_super_tree = new JButton( RETURN_TO_SUPER_TREE_TEXT ); - _return_to_super_tree.setEnabled( false ); - _order = new JButton( "Order Subtrees" ); - _uncollapse_all = new JButton( "Uncollapse All" ); - addJButton( _zoom_in_y, x_panel ); - addJButton( _zoom_out_x, y_panel ); - addJButton( _show_whole, y_panel ); - addJButton( _zoom_in_x, y_panel ); - addJButton( _zoom_out_y, z_panel ); - if ( getConfiguration().doDisplayOption( Configuration.show_domain_architectures ) ) { - setUpControlsForDomainStrucures(); + } + + private void search1( final MainPanel main_panel, final Phylogeny tree, final String query_str ) { + getSearchFoundCountsLabel1().setVisible( true ); + getSearchResetButton1().setEnabled( true ); + getSearchResetButton1().setVisible( true ); + String[] queries = null; + Set nodes = null; + if ( ( query_str.indexOf( ',' ) >= 0 ) && !getOptions().isSearchWithRegex() ) { + queries = query_str.split( ",+" ); + } + else { + queries = new String[ 1 ]; + queries[ 0 ] = query_str.trim(); + } + if ( ( queries != null ) && ( queries.length > 0 ) ) { + nodes = new HashSet(); + for( String query : queries ) { + if ( ForesterUtil.isEmpty( query ) ) { + continue; + } + query = query.trim(); + final TreePanel tp = getMainPanel().getCurrentTreePanel(); + if ( ( query.indexOf( '+' ) > 0 ) && !getOptions().isSearchWithRegex() ) { + nodes.addAll( PhylogenyMethods.searchDataLogicalAnd( query.split( "\\++" ), + tree, + getOptions().isSearchCaseSensitive(), + !getOptions().isMatchWholeTermsOnly(), + isShowDomainArchitectures(), + tp != null + ? Math.pow( 10, + tp.getDomainStructureEvalueThresholdExp() ) + : 0 ) ); + } + else { + nodes.addAll( PhylogenyMethods + .searchData( query, + tree, + getOptions().isSearchCaseSensitive(), + !getOptions().isMatchWholeTermsOnly(), + getOptions().isSearchWithRegex(), + isShowDomainArchitectures(), + tp != null ? Math.pow( 10, tp.getDomainStructureEvalueThresholdExp() ) : 0 ) ); + } + } + if ( getOptions().isInverseSearchResult() ) { + final List all = PhylogenyMethods.obtainAllNodesAsList( tree ); + final Set temp_nodes = nodes; + nodes = new HashSet(); + for( final PhylogenyNode n : all ) { + if ( ( !temp_nodes.contains( n.getId() ) ) && n.isHasNodeData() ) { + nodes.add( n.getId() ); + } + } + } + } + if ( ( nodes != null ) && ( nodes.size() > 0 ) ) { + main_panel.getCurrentTreePanel().setFoundNodes1( new HashSet() ); + for( final Long node : nodes ) { + main_panel.getCurrentTreePanel().getFoundNodes1().add( node ); + } + setSearchFoundCountsOnLabel1( nodes.size() ); + } + else { + setSearchFoundCountsOnLabel1( 0 ); + searchReset1(); } - final JLabel spacer2 = new JLabel( "" ); - add( spacer2 ); - addJButton( _return_to_super_tree, this ); - addJButton( _order, this ); - addJButton( _uncollapse_all, this ); - final JLabel spacer3 = new JLabel( "" ); - add( spacer3 ); - setVisibilityOfDomainStrucureControls(); } - void addCheckbox( final int which, final String title ) { - final JPanel ch_panel = new JPanel( new BorderLayout( 0, 0 ) ); - switch ( which ) { - case Configuration.display_as_phylogram: - _display_as_phylogram_cb = new JCheckBox( title ); - getDisplayAsPhylogramCb().setToolTipText( "To switch between phylogram and cladogram display" ); - addJCheckBox( getDisplayAsPhylogramCb(), ch_panel ); - add( ch_panel ); - break; - case Configuration.display_internal_data: - _display_internal_data = new JCheckBox( title ); - _display_internal_data.setToolTipText( "To allow or disallow display of internal labels" ); - addJCheckBox( _display_internal_data, ch_panel ); - add( ch_panel ); + private void setDrawPhylogram( final int index, final boolean b ) { + getIsDrawPhylogramList().set( index, b ); + } + + private void setupClickToOptions() { + final int default_option = _configuration.getDefaultDisplayClicktoOption(); + int selected_index = 0; + int cb_index = 0; + if ( _configuration.doDisplayClickToOption( Configuration.display_node_data ) ) { + _show_data_item = cb_index; + addClickToOption( Configuration.display_node_data, + _configuration.getClickToTitle( Configuration.display_node_data ) ); + if ( default_option == Configuration.display_node_data ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.collapse_uncollapse ) ) { + _collapse_cb_item = cb_index; + addClickToOption( Configuration.collapse_uncollapse, + _configuration.getClickToTitle( Configuration.collapse_uncollapse ) ); + if ( default_option == Configuration.collapse_uncollapse ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.uncollapse_all ) ) { + _uncollapse_all_cb_item = cb_index; + addClickToOption( Configuration.uncollapse_all, + _configuration.getClickToTitle( Configuration.uncollapse_all ) ); + if ( default_option == Configuration.uncollapse_all ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.reroot ) ) { + _reroot_cb_item = cb_index; + addClickToOption( Configuration.reroot, _configuration.getClickToTitle( Configuration.reroot ) ); + if ( default_option == Configuration.reroot ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.subtree ) ) { + _subtree_cb_item = cb_index; + addClickToOption( Configuration.subtree, _configuration.getClickToTitle( Configuration.subtree ) ); + if ( default_option == Configuration.subtree ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.swap ) ) { + _swap_cb_item = cb_index; + addClickToOption( Configuration.swap, _configuration.getClickToTitle( Configuration.swap ) ); + if ( default_option == Configuration.swap ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.order_subtree ) ) { + _order_subtree_cb_item = cb_index; + addClickToOption( Configuration.order_subtree, + _configuration.getClickToTitle( Configuration.order_subtree ) ); + if ( default_option == Configuration.order_subtree ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.sort_descendents ) ) { + _sort_descendents_item = cb_index; + addClickToOption( Configuration.sort_descendents, + _configuration.getClickToTitle( Configuration.sort_descendents ) ); + if ( default_option == Configuration.sort_descendents ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.color_node_font ) ) { + _color_node_font_item = cb_index; + addClickToOption( Configuration.color_node_font, + _configuration.getClickToTitle( Configuration.color_node_font ) ); + if ( default_option == Configuration.color_node_font ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.change_node_font ) ) { + _change_node_font_item = cb_index; + addClickToOption( Configuration.change_node_font, + _configuration.getClickToTitle( Configuration.change_node_font ) ); + if ( default_option == Configuration.change_node_font ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.color_subtree ) ) { + _color_subtree_cb_item = cb_index; + addClickToOption( Configuration.color_subtree, + _configuration.getClickToTitle( Configuration.color_subtree ) ); + if ( default_option == Configuration.color_subtree ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.open_seq_web ) ) { + _open_seq_web_item = cb_index; + addClickToOption( Configuration.open_seq_web, + _configuration.getClickToTitle( Configuration.open_seq_web ) ); + if ( default_option == Configuration.open_seq_web ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.open_pdb_web ) ) { + _open_pdb_item = cb_index; + addClickToOption( Configuration.open_pdb_web, + _configuration.getClickToTitle( Configuration.open_pdb_web ) ); + if ( default_option == Configuration.open_pdb_web ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.open_tax_web ) ) { + _open_tax_web_item = cb_index; + addClickToOption( Configuration.open_tax_web, + _configuration.getClickToTitle( Configuration.open_tax_web ) ); + if ( default_option == Configuration.open_tax_web ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.blast ) ) { + _blast_item = cb_index; + addClickToOption( Configuration.blast, _configuration.getClickToTitle( Configuration.blast ) ); + if ( default_option == Configuration.blast ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.select_nodes ) ) { + _select_nodes_item = cb_index; + addClickToOption( Configuration.select_nodes, + _configuration.getClickToTitle( Configuration.select_nodes ) ); + if ( default_option == Configuration.select_nodes ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.get_ext_desc_data ) ) { + _get_ext_desc_data = cb_index; + if ( !ForesterUtil.isEmpty( getConfiguration().getLabelForGetExtDescendentsData() ) ) { + addClickToOption( Configuration.get_ext_desc_data, + getConfiguration().getLabelForGetExtDescendentsData() ); + } + else { + addClickToOption( Configuration.get_ext_desc_data, + getConfiguration().getClickToTitle( Configuration.get_ext_desc_data ) ); + } + if ( default_option == Configuration.get_ext_desc_data ) { + selected_index = cb_index; + } + cb_index++; + } + if ( getOptions().isEditable() ) { + if ( _configuration.doDisplayClickToOption( Configuration.cut_subtree ) ) { + _cut_subtree_item = cb_index; + addClickToOption( Configuration.cut_subtree, + _configuration.getClickToTitle( Configuration.cut_subtree ) ); + if ( default_option == Configuration.cut_subtree ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.copy_subtree ) ) { + _copy_subtree_item = cb_index; + addClickToOption( Configuration.copy_subtree, + _configuration.getClickToTitle( Configuration.copy_subtree ) ); + if ( default_option == Configuration.copy_subtree ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.paste_subtree ) ) { + _paste_subtree_item = cb_index; + addClickToOption( Configuration.paste_subtree, + _configuration.getClickToTitle( Configuration.paste_subtree ) ); + if ( default_option == Configuration.paste_subtree ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.delete_subtree_or_node ) ) { + _delete_node_or_subtree_item = cb_index; + addClickToOption( Configuration.delete_subtree_or_node, + _configuration.getClickToTitle( Configuration.delete_subtree_or_node ) ); + if ( default_option == Configuration.delete_subtree_or_node ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.add_new_node ) ) { + _add_new_node_item = cb_index; + addClickToOption( Configuration.add_new_node, + _configuration.getClickToTitle( Configuration.add_new_node ) ); + if ( default_option == Configuration.add_new_node ) { + selected_index = cb_index; + } + cb_index++; + } + if ( _configuration.doDisplayClickToOption( Configuration.edit_node_data ) ) { + _edit_node_data_item = cb_index; + addClickToOption( Configuration.edit_node_data, + _configuration.getClickToTitle( Configuration.edit_node_data ) ); + if ( default_option == Configuration.edit_node_data ) { + selected_index = cb_index; + } + cb_index++; + } + } + // Set default selection and its action + _click_to_combobox.setSelectedIndex( selected_index ); + setClickToAction( selected_index ); + } + + private void setupDisplayCheckboxes() { + if ( _configuration.doDisplayOption( Configuration.display_as_phylogram ) ) { + addCheckbox( Configuration.display_as_phylogram, + _configuration.getDisplayTitle( Configuration.display_as_phylogram ) ); + setCheckbox( Configuration.display_as_phylogram, + _configuration.doCheckOption( Configuration.display_as_phylogram ) ); + } + if ( _configuration.doDisplayOption( Configuration.dynamically_hide_data ) ) { + addCheckbox( Configuration.dynamically_hide_data, + _configuration.getDisplayTitle( Configuration.dynamically_hide_data ) ); + setCheckbox( Configuration.dynamically_hide_data, + _configuration.doCheckOption( Configuration.dynamically_hide_data ) ); + } + if ( _configuration.doDisplayOption( Configuration.node_data_popup ) ) { + addCheckbox( Configuration.node_data_popup, + _configuration.getDisplayTitle( Configuration.node_data_popup ) ); + setCheckbox( Configuration.node_data_popup, _configuration.doCheckOption( Configuration.node_data_popup ) ); + } + if ( _configuration.doDisplayOption( Configuration.display_internal_data ) ) { + addCheckbox( Configuration.display_internal_data, + _configuration.getDisplayTitle( Configuration.display_internal_data ) ); + setCheckbox( Configuration.display_internal_data, + _configuration.doCheckOption( Configuration.display_internal_data ) ); + } + if ( _configuration.doDisplayOption( Configuration.color_according_to_sequence ) ) { + addCheckbox( Configuration.color_according_to_sequence, + _configuration.getDisplayTitle( Configuration.color_according_to_sequence ) ); + setCheckbox( Configuration.color_according_to_sequence, + _configuration.doCheckOption( Configuration.color_according_to_sequence ) ); + } + if ( _configuration.doDisplayOption( Configuration.color_according_to_species ) ) { + addCheckbox( Configuration.color_according_to_species, + _configuration.getDisplayTitle( Configuration.color_according_to_species ) ); + setCheckbox( Configuration.color_according_to_species, + _configuration.doCheckOption( Configuration.color_according_to_species ) ); + } + if ( _configuration.doDisplayOption( Configuration.color_according_to_annotation ) ) { + addCheckbox( Configuration.color_according_to_annotation, + _configuration.getDisplayTitle( Configuration.color_according_to_annotation ) ); + setCheckbox( Configuration.color_according_to_annotation, + _configuration.doCheckOption( Configuration.color_according_to_annotation ) ); + } + if ( _configuration.doDisplayOption( Configuration.use_style ) ) { + addCheckbox( Configuration.use_style, _configuration.getDisplayTitle( Configuration.use_style ) ); + setCheckbox( Configuration.use_style, _configuration.doCheckOption( Configuration.use_style ) ); + } + if ( _configuration.doDisplayOption( Configuration.width_branches ) ) { + addCheckbox( Configuration.width_branches, _configuration.getDisplayTitle( Configuration.width_branches ) ); + setCheckbox( Configuration.width_branches, _configuration.doCheckOption( Configuration.width_branches ) ); + } + final JLabel label = new JLabel( "Display Data:" ); + label.setFont( ControlPanel.jcb_bold_font ); + if ( !getConfiguration().isUseNativeUI() ) { + label.setForeground( getConfiguration().getGuiCheckboxTextColor() ); + } + add( label ); + if ( _configuration.doDisplayOption( Configuration.show_node_names ) ) { + addCheckbox( Configuration.show_node_names, + _configuration.getDisplayTitle( Configuration.show_node_names ) ); + setCheckbox( Configuration.show_node_names, _configuration.doCheckOption( Configuration.show_node_names ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_tax_code ) ) { + addCheckbox( Configuration.show_tax_code, _configuration.getDisplayTitle( Configuration.show_tax_code ) ); + setCheckbox( Configuration.show_tax_code, _configuration.doCheckOption( Configuration.show_tax_code ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_taxonomy_scientific_names ) ) { + addCheckbox( Configuration.show_taxonomy_scientific_names, + _configuration.getDisplayTitle( Configuration.show_taxonomy_scientific_names ) ); + setCheckbox( Configuration.show_taxonomy_scientific_names, + _configuration.doCheckOption( Configuration.show_taxonomy_scientific_names ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_taxonomy_common_names ) ) { + addCheckbox( Configuration.show_taxonomy_common_names, + _configuration.getDisplayTitle( Configuration.show_taxonomy_common_names ) ); + setCheckbox( Configuration.show_taxonomy_common_names, + _configuration.doCheckOption( Configuration.show_taxonomy_common_names ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_tax_rank ) ) { + addCheckbox( Configuration.show_tax_rank, _configuration.getDisplayTitle( Configuration.show_tax_rank ) ); + setCheckbox( Configuration.show_tax_rank, _configuration.doCheckOption( Configuration.show_tax_rank ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_seq_names ) ) { + addCheckbox( Configuration.show_seq_names, _configuration.getDisplayTitle( Configuration.show_seq_names ) ); + setCheckbox( Configuration.show_seq_names, _configuration.doCheckOption( Configuration.show_seq_names ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_gene_names ) ) { + addCheckbox( Configuration.show_gene_names, + _configuration.getDisplayTitle( Configuration.show_gene_names ) ); + setCheckbox( Configuration.show_gene_names, _configuration.doCheckOption( Configuration.show_gene_names ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_seq_symbols ) ) { + addCheckbox( Configuration.show_seq_symbols, + _configuration.getDisplayTitle( Configuration.show_seq_symbols ) ); + setCheckbox( Configuration.show_seq_symbols, + _configuration.doCheckOption( Configuration.show_seq_symbols ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_sequence_acc ) ) { + addCheckbox( Configuration.show_sequence_acc, + _configuration.getDisplayTitle( Configuration.show_sequence_acc ) ); + setCheckbox( Configuration.show_sequence_acc, + _configuration.doCheckOption( Configuration.show_sequence_acc ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_annotation ) ) { + addCheckbox( Configuration.show_annotation, + _configuration.getDisplayTitle( Configuration.show_annotation ) ); + setCheckbox( Configuration.show_annotation, _configuration.doCheckOption( Configuration.show_annotation ) ); + } + if ( _configuration.doDisplayOption( Configuration.write_confidence_values ) ) { + addCheckbox( Configuration.write_confidence_values, + _configuration.getDisplayTitle( Configuration.write_confidence_values ) ); + setCheckbox( Configuration.write_confidence_values, + _configuration.doCheckOption( Configuration.write_confidence_values ) ); + } + if ( _configuration.doDisplayOption( Configuration.write_branch_length_values ) ) { + addCheckbox( Configuration.write_branch_length_values, + _configuration.getDisplayTitle( Configuration.write_branch_length_values ) ); + setCheckbox( Configuration.write_branch_length_values, + _configuration.doCheckOption( Configuration.write_branch_length_values ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_binary_characters ) ) { + addCheckbox( Configuration.show_binary_characters, + _configuration.getDisplayTitle( Configuration.show_binary_characters ) ); + setCheckbox( Configuration.show_binary_characters, + _configuration.doCheckOption( Configuration.show_binary_characters ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_binary_character_counts ) ) { + addCheckbox( Configuration.show_binary_character_counts, + _configuration.getDisplayTitle( Configuration.show_binary_character_counts ) ); + setCheckbox( Configuration.show_binary_character_counts, + _configuration.doCheckOption( Configuration.show_binary_character_counts ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_domain_architectures ) ) { + addCheckbox( Configuration.show_domain_architectures, + _configuration.getDisplayTitle( Configuration.show_domain_architectures ) ); + setCheckbox( Configuration.show_domain_architectures, + _configuration.doCheckOption( Configuration.show_domain_architectures ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_mol_seqs ) ) { + addCheckbox( Configuration.show_mol_seqs, _configuration.getDisplayTitle( Configuration.show_mol_seqs ) ); + setCheckbox( Configuration.show_mol_seqs, _configuration.doCheckOption( Configuration.show_mol_seqs ) ); + } + if ( _configuration.doDisplayOption( Configuration.write_events ) ) { + addCheckbox( Configuration.write_events, _configuration.getDisplayTitle( Configuration.write_events ) ); + setCheckbox( Configuration.write_events, _configuration.doCheckOption( Configuration.write_events ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_vector_data ) ) { + addCheckbox( Configuration.show_vector_data, + _configuration.getDisplayTitle( Configuration.show_vector_data ) ); + setCheckbox( Configuration.show_vector_data, + _configuration.doCheckOption( Configuration.show_vector_data ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_properties ) ) { + addCheckbox( Configuration.show_properties, + _configuration.getDisplayTitle( Configuration.show_properties ) ); + setCheckbox( Configuration.show_properties, _configuration.doCheckOption( Configuration.show_properties ) ); + } + if ( _configuration.doDisplayOption( Configuration.show_taxonomy_images ) ) { + addCheckbox( Configuration.show_taxonomy_images, + _configuration.getDisplayTitle( Configuration.show_taxonomy_images ) ); + setCheckbox( Configuration.show_taxonomy_images, + _configuration.doCheckOption( Configuration.show_taxonomy_images ) ); + } + } + + private void setVisibilityOfDomainStrucureControls() { + if ( _zoom_in_domain_structure != null ) { + final MainFrame mf = getMainFrame(); + if ( mf != null ) { + if ( isShowDomainArchitectures() ) { + _domain_display_label.setVisible( true ); + _zoom_in_domain_structure.setVisible( true ); + _zoom_out_domain_structure.setVisible( true ); + _decr_domain_structure_evalue_thr.setVisible( true ); + _incr_domain_structure_evalue_thr.setVisible( true ); + _domain_structure_evalue_thr_tf.setVisible( true ); + if ( mf._right_line_up_domains_cbmi != null ) { + mf._right_line_up_domains_cbmi.setVisible( true ); + } + if ( mf._show_domain_labels != null ) { + mf._show_domain_labels.setVisible( true ); + } + } + else { + _domain_display_label.setVisible( false ); + _zoom_in_domain_structure.setVisible( false ); + _zoom_out_domain_structure.setVisible( false ); + _decr_domain_structure_evalue_thr.setVisible( false ); + _incr_domain_structure_evalue_thr.setVisible( false ); + _domain_structure_evalue_thr_tf.setVisible( false ); + if ( mf._right_line_up_domains_cbmi != null ) { + mf._right_line_up_domains_cbmi.setVisible( false ); + } + if ( mf._show_domain_labels != null ) { + mf._show_domain_labels.setVisible( false ); + } + } + } + } + } + + void activateButtonToReturnToSuperTree( int index ) { + --index; + if ( index > 0 ) { + _return_to_super_tree.setText( RETURN_TO_SUPER_TREE_TEXT + " " + index ); + } + else { + _return_to_super_tree.setText( RETURN_TO_SUPER_TREE_TEXT ); + } + _return_to_super_tree.setForeground( getConfiguration().getGuiCheckboxAndButtonActiveColor() ); + _return_to_super_tree.setEnabled( true ); + } + + /** + * Add zoom and quick edit buttons. (Last modified 8/9/04) + */ + void addButtons() { + final JLabel spacer = new JLabel( "" ); + spacer.setOpaque( false ); + add( spacer ); + final JPanel x_panel = new JPanel( new GridLayout( 1, 1, 0, 0 ) ); + final JPanel y_panel = new JPanel( new GridLayout( 1, 3, 0, 0 ) ); + final JPanel z_panel = new JPanel( new GridLayout( 1, 1, 0, 0 ) ); + if ( !getConfiguration().isUseNativeUI() ) { + x_panel.setBackground( getBackground() ); + y_panel.setBackground( getBackground() ); + z_panel.setBackground( getBackground() ); + } + add( _zoom_label = new JLabel( "Zoom:" ) ); + customizeLabel( _zoom_label, getConfiguration() ); + add( x_panel ); + add( y_panel ); + add( z_panel ); + if ( getConfiguration().isUseNativeUI() ) { + _zoom_in_x = new TypomaticJButton( "+" ); + _zoom_out_x = new TypomaticJButton( "-" ); + } + else { + _zoom_in_x = new TypomaticJButton( "X+" ); + _zoom_out_x = new TypomaticJButton( "X-" ); + } + _zoom_in_y = new TypomaticJButton( "Y+" ); + _zoom_out_y = new TypomaticJButton( "Y-" ); + _show_whole = new JButton( "F" ); + _show_whole.setToolTipText( "To fit the complete phylogeny to the current display size [F or Home]" ); + _zoom_in_x.setToolTipText( "To zoom in horizontally [Shift+cursor-right]" ); + _zoom_in_y.setToolTipText( "To zoom in vertically [Shift+cursor-up]" ); + _zoom_out_x.setToolTipText( "To zoom out horizontally [Shift+cursor-left]" ); + _zoom_out_y.setToolTipText( "To zoom out vertically [Shift+cursor-down]" ); + if ( getConfiguration().isUseNativeUI() && ForesterUtil.isMac() ) { + _zoom_out_x.setPreferredSize( new Dimension( 55, 10 ) ); + _zoom_in_x.setPreferredSize( new Dimension( 55, 10 ) ); + } + else { + _zoom_out_x.setPreferredSize( new Dimension( 10, 10 ) ); + _zoom_in_x.setPreferredSize( new Dimension( 10, 10 ) ); + } + _zoom_out_y.setPreferredSize( new Dimension( 10, 10 ) ); + _zoom_in_y.setPreferredSize( new Dimension( 10, 10 ) ); + _show_whole.setPreferredSize( new Dimension( 10, 10 ) ); + _return_to_super_tree = new JButton( RETURN_TO_SUPER_TREE_TEXT ); + _return_to_super_tree.setEnabled( false ); + _order = new JButton( "Order Tree" ); + _uncollapse_all = new JButton( "Uncollapse All" ); + addJButton( _zoom_in_y, x_panel ); + addJButton( _zoom_out_x, y_panel ); + addJButton( _show_whole, y_panel ); + addJButton( _zoom_in_x, y_panel ); + addJButton( _zoom_out_y, z_panel ); + if ( getConfiguration().doDisplayOption( Configuration.show_domain_architectures ) ) { + setUpControlsForDomainStrucures(); + } + if ( true ) { + setUpControlsForDepthCollapse(); + } + if ( true ) { + setUpControlsForRankCollapse(); + } + final JLabel spacer2 = new JLabel( "" ); + add( spacer2 ); + addJButton( _return_to_super_tree, this ); + addJButton( _order, this ); + addJButton( _uncollapse_all, this ); + final JLabel spacer3 = new JLabel( "" ); + add( spacer3 ); + setVisibilityOfDomainStrucureControls(); + } + + void addCheckbox( final int which, final String title ) { + final JPanel ch_panel = new JPanel( new BorderLayout( 0, 0 ) ); + switch ( which ) { + case Configuration.display_as_phylogram: + _display_as_phylogram_cb = new JCheckBox( title ); + getDisplayAsPhylogramCb().setToolTipText( "To switch between phylogram and cladogram display" ); + addJCheckBox( getDisplayAsPhylogramCb(), ch_panel ); + add( ch_panel ); + break; + case Configuration.display_internal_data: + _display_internal_data = new JCheckBox( title ); + _display_internal_data.setToolTipText( "To allow or disallow display of internal labels" ); + addJCheckBox( _display_internal_data, ch_panel ); + add( ch_panel ); break; case Configuration.color_according_to_species: _color_acc_species = new JCheckBox( title ); @@ -589,6 +1330,11 @@ final class ControlPanel extends JPanel implements ActionListener { addJCheckBox( _show_taxo_code, ch_panel ); add( ch_panel ); break; + case Configuration.show_tax_rank: + _show_taxo_rank = new JCheckBox( title ); + addJCheckBox( _show_taxo_rank, ch_panel ); + add( ch_panel ); + break; case Configuration.show_taxonomy_images: _show_taxo_images_cb = new JCheckBox( title ); addJCheckBox( _show_taxo_images_cb, ch_panel ); @@ -632,11 +1378,21 @@ final class ControlPanel extends JPanel implements ActionListener { addJCheckBox( _width_branches, ch_panel ); add( ch_panel ); break; + case Configuration.write_branch_length_values: + _write_branch_length_values = new JCheckBox( title ); + addJCheckBox( _write_branch_length_values, ch_panel ); + add( ch_panel ); + break; case Configuration.show_domain_architectures: _show_domain_architectures = new JCheckBox( title ); addJCheckBox( _show_domain_architectures, ch_panel ); add( ch_panel ); break; + case Configuration.show_mol_seqs: + _show_mol_seqs = new JCheckBox( title ); + addJCheckBox( _show_mol_seqs, ch_panel ); + add( ch_panel ); + break; case Configuration.show_seq_names: _show_seq_names = new JCheckBox( title ); addJCheckBox( _show_seq_names, ch_panel ); @@ -730,21 +1486,24 @@ final class ControlPanel extends JPanel implements ActionListener { void displayedPhylogenyMightHaveChanged( final boolean recalc_longest_ext_node_info ) { if ( ( _mainpanel != null ) && ( ( _mainpanel.getCurrentPhylogeny() != null ) && !_mainpanel.getCurrentPhylogeny().isEmpty() ) ) { + if ( recalc_longest_ext_node_info ) { + _mainpanel.getCurrentTreePanel().initNodeData(); + _mainpanel.getCurrentTreePanel().calculateLongestExtNodeInfo(); + } if ( getOptions().isShowOverview() ) { _mainpanel.getCurrentTreePanel().updateOvSizes(); } _mainpanel.getCurrentTreePanel().recalculateMaxDistanceToRoot(); setVisibilityOfDomainStrucureControls(); updateDomainStructureEvaluethresholdDisplay(); + updateDepthCollapseDepthDisplay(); + updateRankCollapseRankDisplay(); + getMainPanel().getControlPanel(); _mainpanel.getCurrentTreePanel().calculateScaleDistance(); _mainpanel.getCurrentTreePanel().calcMaxDepth(); _mainpanel.adjustJScrollPane(); - if ( recalc_longest_ext_node_info ) { - _mainpanel.getCurrentTreePanel().initNodeData(); - _mainpanel.getCurrentTreePanel().calculateLongestExtNodeInfo(); - } _mainpanel.getCurrentTreePanel().repaint(); - // _mainpanel.getCurrentTreePanel().setUpUrtFactors(); + // _mainpanel.getCurrentTreePanel().setUpUrtFactor(); } } @@ -754,7 +1513,7 @@ final class ControlPanel extends JPanel implements ActionListener { /** * Indicates what action should be execute when a node is clicked - * + * * @return the click-on action */ NodeClickAction getActionWhenNodeClicked() { @@ -809,6 +1568,10 @@ final class ControlPanel extends JPanel implements ActionListener { return _search_tf_1; } + Map getSequenceColors() { + return _sequence_colors; + } + List getSingleClickToNames() { return _click_to_names; } @@ -817,10 +1580,6 @@ final class ControlPanel extends JPanel implements ActionListener { return _species_colors; } - Map getSequenceColors() { - return _sequence_colors; - } - boolean isAntialiasScreenText() { return true; } @@ -829,16 +1588,12 @@ final class ControlPanel extends JPanel implements ActionListener { return ( ( _color_according_to_annotation != null ) && _color_according_to_annotation.isSelected() ); } - boolean isColorAccordingToTaxonomy() { - return ( ( _color_acc_species != null ) && _color_acc_species.isSelected() ); - } - boolean isColorAccordingToSequence() { return ( ( _color_acc_sequence != null ) && _color_acc_sequence.isSelected() ); } - boolean isUseVisualStyles() { - return ( ( ( getUseVisualStylesCb() != null ) && getUseVisualStylesCb().isSelected() ) || ( ( getUseVisualStylesCb() == null ) && _color_branches ) ); + boolean isColorAccordingToTaxonomy() { + return ( ( _color_acc_species != null ) && _color_acc_species.isSelected() ); } boolean isDrawPhylogram() { @@ -913,6 +1668,10 @@ final class ControlPanel extends JPanel implements ActionListener { return ( ( _show_taxo_code != null ) && _show_taxo_code.isSelected() ); } + boolean isShowTaxonomyRank() { + return ( ( _show_taxo_rank != null ) && _show_taxo_rank.isSelected() ); + } + boolean isShowTaxonomyCommonNames() { return ( ( _show_taxo_common_names != null ) && _show_taxo_common_names.isSelected() ); } @@ -921,10 +1680,19 @@ final class ControlPanel extends JPanel implements ActionListener { return ( ( _show_taxo_scientific_names != null ) && _show_taxo_scientific_names.isSelected() ); } + boolean isUseVisualStyles() { + return ( ( ( getUseVisualStylesCb() != null ) && getUseVisualStylesCb().isSelected() ) + || ( ( getUseVisualStylesCb() == null ) && _color_branches ) ); + } + boolean isWidthBranches() { return ( ( _width_branches != null ) && _width_branches.isSelected() ); } + boolean isWriteBranchLengthValues() { + return ( ( _write_branch_length_values != null ) && _write_branch_length_values.isSelected() ); + } + void phylogenyAdded( final Configuration configuration ) { getIsDrawPhylogramList().add( configuration.isDrawAsPhylogram() ); } @@ -1042,6 +1810,11 @@ final class ControlPanel extends JPanel implements ActionListener { _show_taxo_code.setSelected( state ); } break; + case Configuration.show_tax_rank: + if ( _show_taxo_rank != null ) { + _show_taxo_rank.setSelected( state ); + } + break; case Configuration.show_taxonomy_images: if ( _show_taxo_images_cb != null ) { _show_taxo_images_cb.setSelected( state ); @@ -1087,6 +1860,16 @@ final class ControlPanel extends JPanel implements ActionListener { _show_domain_architectures.setSelected( state ); } break; + case Configuration.write_branch_length_values: + if ( _write_branch_length_values != null ) { + _write_branch_length_values.setSelected( state ); + } + break; + case Configuration.show_mol_seqs: + if ( _show_mol_seqs != null ) { + _show_mol_seqs.setSelected( state ); + } + break; case Configuration.show_seq_names: if ( _show_seq_names != null ) { _show_seq_names.setSelected( state ); @@ -1133,1297 +1916,814 @@ final class ControlPanel extends JPanel implements ActionListener { _seq_relation_confidence_switch.setSelected( state ); } break; - /* GUILHEM_END */ - default: - throw new AssertionError( "unknown checkbox: " + which ); - } - } - - /** - * Set this checkbox state. Not all checkboxes have been instantiated - * depending on the config. - */ - void setCheckbox( final JCheckBox cb, final boolean state ) { - if ( cb != null ) { - cb.setSelected( state ); - } - } - - void setClickToAction( final int action ) { - // Set click-to action - if ( action == _show_data_item ) { - setActionWhenNodeClicked( NodeClickAction.SHOW_DATA ); - } - else if ( action == _collapse_cb_item ) { - setActionWhenNodeClicked( NodeClickAction.COLLAPSE ); - } - else if ( action == _reroot_cb_item ) { - setActionWhenNodeClicked( NodeClickAction.REROOT ); - } - else if ( action == _subtree_cb_item ) { - setActionWhenNodeClicked( NodeClickAction.SUBTREE ); - } - else if ( action == _swap_cb_item ) { - setActionWhenNodeClicked( NodeClickAction.SWAP ); - } - else if ( action == _color_subtree_cb_item ) { - setActionWhenNodeClicked( NodeClickAction.COLOR_SUBTREE ); - } - else if ( action == _open_seq_web_item ) { - setActionWhenNodeClicked( NodeClickAction.OPEN_SEQ_WEB ); - } - else if ( action == _sort_descendents_item ) { - setActionWhenNodeClicked( NodeClickAction.SORT_DESCENDENTS ); - } - else if ( action == _blast_item ) { - setActionWhenNodeClicked( NodeClickAction.BLAST ); - } - else if ( action == _open_tax_web_item ) { - setActionWhenNodeClicked( NodeClickAction.OPEN_TAX_WEB ); - } - else if ( action == _cut_subtree_item ) { - setActionWhenNodeClicked( NodeClickAction.CUT_SUBTREE ); - } - else if ( action == _copy_subtree_item ) { - setActionWhenNodeClicked( NodeClickAction.COPY_SUBTREE ); - } - else if ( action == _delete_node_or_subtree_item ) { - setActionWhenNodeClicked( NodeClickAction.DELETE_NODE_OR_SUBTREE ); - } - else if ( action == _paste_subtree_item ) { - setActionWhenNodeClicked( NodeClickAction.PASTE_SUBTREE ); - } - else if ( action == _add_new_node_item ) { - setActionWhenNodeClicked( NodeClickAction.ADD_NEW_NODE ); - } - else if ( action == _edit_node_data_item ) { - setActionWhenNodeClicked( NodeClickAction.EDIT_NODE_DATA ); - } - else if ( action == _select_nodes_item ) { - setActionWhenNodeClicked( NodeClickAction.SELECT_NODES ); - } - else if ( action == _get_ext_desc_data ) { - setActionWhenNodeClicked( NodeClickAction.GET_EXT_DESC_DATA ); - } - else if ( action == _open_pdb_item ) { - setActionWhenNodeClicked( NodeClickAction.OPEN_PDB_WEB ); - } - else if ( action == _color_node_font_item ) { - setActionWhenNodeClicked( NodeClickAction.COLOR_NODE_FONT ); - } - else if ( action == _change_node_font_item ) { - setActionWhenNodeClicked( NodeClickAction.CHANGE_NODE_FONT ); - } - else { - throw new RuntimeException( "unknown action: " + action ); - } - // make sure drop down is displaying the correct action - // in case this was called from outside the class - _click_to_combobox.setSelectedIndex( action ); - } - - void setColorBranches( final boolean color_branches ) { - _color_branches = color_branches; - } - - void setDrawPhylogram( final boolean b ) { - getDisplayAsPhylogramCb().setSelected( b ); - setDrawPhylogram( getMainPanel().getCurrentTabIndex(), b ); - } - - void setDrawPhylogramEnabled( final boolean b ) { - getDisplayAsPhylogramCb().setEnabled( b ); - } - - void setDynamicHidingIsOn( final boolean is_on ) { - if ( is_on ) { - getDynamicallyHideData().setForeground( getConfiguration().getGuiCheckboxAndButtonActiveColor() ); - } - else { - if ( !_configuration.isUseNativeUI() ) { - getDynamicallyHideData().setForeground( getConfiguration().getGuiButtonTextColor() ); - } - else { - getDynamicallyHideData().setForeground( Color.BLACK ); - } - } - } - - void setSearchFoundCountsOnLabel0( final int counts ) { - getSearchFoundCountsLabel0().setText( "Found: " + counts ); - } - - void setSearchFoundCountsOnLabel1( final int counts ) { - getSearchFoundCountsLabel1().setText( "Found: " + counts ); - } - - void setShowEvents( final boolean show_events ) { - if ( getShowEventsCb() == null ) { - _show_events = new JCheckBox( "" ); - } - getShowEventsCb().setSelected( show_events ); - } - - void setSpeciesColors( final Map species_colors ) { - _species_colors = species_colors; - } - - void setSequenceColors( final Map sequence_colors ) { - _sequence_colors = sequence_colors; - } - - /* GUILHEM_END */ - /* - * Set up the controls from the config settings. 11/26/05 - */ - void setupControls() { - // The tree display options: - setupDisplayCheckboxes(); - /* GUILHEM_BEG */ - // The sequence relation query selection combo-box - if ( _configuration.displaySequenceRelations() ) { - addSequenceRelationBlock(); - } - /* GUILHEM_END */ - // Click-to options - startClickToOptions(); - setupClickToOptions(); - endClickToOptions(); - // Zoom and quick edit buttons - addButtons(); - setupSearchTools0(); - setupSearchTools1(); - } - - void setUpControlsForDomainStrucures() { - _domain_display_label = new JLabel( "Domain Architectures:" ); - add( customizeLabel( _domain_display_label, getConfiguration() ) ); - add( _domain_display_label ); - _zoom_in_domain_structure = new JButton( "d+" ); - _zoom_out_domain_structure = new JButton( "d-" ); - _decr_domain_structure_evalue_thr = new JButton( "-" ); - _incr_domain_structure_evalue_thr = new JButton( "+" ); - _zoom_in_domain_structure.setPreferredSize( new Dimension( 10, 10 ) ); - _zoom_out_domain_structure.setPreferredSize( new Dimension( 10, 10 ) ); - _decr_domain_structure_evalue_thr.setPreferredSize( new Dimension( 10, 10 ) ); - _incr_domain_structure_evalue_thr.setPreferredSize( new Dimension( 10, 10 ) ); - _incr_domain_structure_evalue_thr.setToolTipText( "Increase the E-value threshold by a factor of 10" ); - _decr_domain_structure_evalue_thr.setToolTipText( "Decrease the E-value threshold by a factor of 10" ); - _domain_structure_evalue_thr_tf = new JTextField( 3 ); - _domain_structure_evalue_thr_tf.setEditable( false ); - if ( !getConfiguration().isUseNativeUI() ) { - _domain_structure_evalue_thr_tf.setForeground( getConfiguration().getGuiMenuBackgroundColor() ); - _domain_structure_evalue_thr_tf.setBackground( getConfiguration().getGuiCheckboxTextColor() ); - _domain_structure_evalue_thr_tf.setBorder( null ); - } - final JPanel d1_panel = new JPanel( new GridLayout( 1, 2, 0, 0 ) ); - final JPanel d2_panel = new JPanel( new GridLayout( 1, 3, 0, 0 ) ); - if ( !_configuration.isUseNativeUI() ) { - d1_panel.setBackground( getBackground() ); - d2_panel.setBackground( getBackground() ); - } - add( d1_panel ); - add( d2_panel ); - addJButton( _zoom_out_domain_structure, d1_panel ); - addJButton( _zoom_in_domain_structure, d1_panel ); - addJButton( _decr_domain_structure_evalue_thr, d2_panel ); - addJTextField( _domain_structure_evalue_thr_tf, d2_panel ); - addJButton( _incr_domain_structure_evalue_thr, d2_panel ); - } - - void setupSearchTools0() { - final String tip = "Enter text to search for. Use ',' for multiple searches (logical OR) and '+' for logical AND."; - final JLabel search_label = new JLabel( "Search (A):" ); - search_label.setFont( ControlPanel.jcb_bold_font ); - if ( !getConfiguration().isUseNativeUI() ) { - search_label.setForeground( getConfiguration().getGuiCheckboxTextColor() ); - } - add( search_label ); - search_label.setToolTipText( tip ); - _search_found_label_0 = new JLabel(); - getSearchFoundCountsLabel0().setVisible( false ); - _search_found_label_0.setFont( ControlPanel.jcb_bold_font ); - if ( !getConfiguration().isUseNativeUI() ) { - _search_found_label_0.setForeground( getConfiguration().getGuiCheckboxTextColor() ); - } - _search_tf_0 = new JTextField( 3 ); - _search_tf_0.setToolTipText( tip ); - _search_tf_0.setEditable( true ); - if ( !getConfiguration().isUseNativeUI() ) { - _search_tf_0.setForeground( getConfiguration().getGuiMenuBackgroundColor() ); - _search_tf_0.setBackground( getConfiguration().getGuiCheckboxTextColor() ); - _search_tf_0.setBorder( null ); - } - _search_reset_button_0 = new JButton(); - getSearchResetButton0().setText( "Reset" ); - getSearchResetButton0().setEnabled( false ); - getSearchResetButton0().setVisible( false ); - final JPanel s_panel_1 = new JPanel( new BorderLayout() ); - final JPanel s_panel_2 = new JPanel( new GridLayout( 1, 2, 0, 0 ) ); - s_panel_1.setBackground( getBackground() ); - add( s_panel_1 ); - s_panel_2.setBackground( getBackground() ); - add( s_panel_2 ); - final KeyAdapter key_adapter = new KeyAdapter() { - - @Override - public void keyReleased( final KeyEvent key_event ) { - search0(); - displayedPhylogenyMightHaveChanged( true ); - } - }; - final ActionListener action_listener = new ActionListener() { - - @Override - public void actionPerformed( final ActionEvent e ) { - searchReset0(); - setSearchFoundCountsOnLabel0( 0 ); - getSearchFoundCountsLabel0().setVisible( false ); - getSearchTextField0().setText( "" ); - getSearchResetButton0().setEnabled( false ); - getSearchResetButton0().setVisible( false ); - displayedPhylogenyMightHaveChanged( true ); - } - }; - _search_reset_button_0.addActionListener( action_listener ); - _search_tf_0.addKeyListener( key_adapter ); - addJTextField( _search_tf_0, s_panel_1 ); - s_panel_2.add( _search_found_label_0 ); - addJButton( _search_reset_button_0, s_panel_2 ); + /* GUILHEM_END */ + default: + throw new AssertionError( "unknown checkbox: " + which ); + } } - void setupSearchTools1() { - final String tip = "Enter text to search for. Use ',' for multiple searches (logical OR) and '+' for logical AND."; - final JLabel search_label = new JLabel( "Search (B):" ); - search_label.setFont( ControlPanel.jcb_bold_font ); - if ( !getConfiguration().isUseNativeUI() ) { - search_label.setForeground( getConfiguration().getGuiCheckboxTextColor() ); - } - add( search_label ); - search_label.setToolTipText( tip ); - _search_found_label_1 = new JLabel(); - getSearchFoundCountsLabel1().setVisible( false ); - _search_found_label_1.setFont( ControlPanel.jcb_bold_font ); - if ( !getConfiguration().isUseNativeUI() ) { - _search_found_label_1.setForeground( getConfiguration().getGuiCheckboxTextColor() ); - } - _search_tf_1 = new JTextField( 3 ); - _search_tf_1.setToolTipText( tip ); - _search_tf_1.setEditable( true ); - if ( !getConfiguration().isUseNativeUI() ) { - _search_tf_1.setForeground( getConfiguration().getGuiMenuBackgroundColor() ); - _search_tf_1.setBackground( getConfiguration().getGuiCheckboxTextColor() ); - _search_tf_1.setBorder( null ); + /** + * Set this checkbox state. Not all checkboxes have been instantiated + * depending on the config. + */ + void setCheckbox( final JCheckBox cb, final boolean state ) { + if ( cb != null ) { + cb.setSelected( state ); } - _search_reset_button_1 = new JButton(); - getSearchResetButton1().setText( "Reset" ); - getSearchResetButton1().setEnabled( false ); - getSearchResetButton1().setVisible( false ); - final JPanel s_panel_1 = new JPanel( new BorderLayout() ); - final JPanel s_panel_2 = new JPanel( new GridLayout( 1, 2, 0, 0 ) ); - s_panel_1.setBackground( getBackground() ); - add( s_panel_1 ); - s_panel_2.setBackground( getBackground() ); - add( s_panel_2 ); - final KeyAdapter key_adapter = new KeyAdapter() { - - @Override - public void keyReleased( final KeyEvent key_event ) { - search1(); - displayedPhylogenyMightHaveChanged( true ); - } - }; - final ActionListener action_listener = new ActionListener() { - - @Override - public void actionPerformed( final ActionEvent e ) { - searchReset1(); - setSearchFoundCountsOnLabel1( 0 ); - getSearchFoundCountsLabel1().setVisible( false ); - getSearchTextField1().setText( "" ); - getSearchResetButton1().setEnabled( false ); - getSearchResetButton1().setVisible( false ); - displayedPhylogenyMightHaveChanged( true ); - } - }; - _search_reset_button_1.addActionListener( action_listener ); - _search_tf_1.addKeyListener( key_adapter ); - addJTextField( _search_tf_1, s_panel_1 ); - s_panel_2.add( _search_found_label_1 ); - addJButton( _search_reset_button_1, s_panel_2 ); } - void showAnnotations() { - if ( _show_annotation != null ) { - _show_annotation.setSelected( true ); + void setClickToAction( final int action ) { + // Set click-to action + if ( action == _show_data_item ) { + setActionWhenNodeClicked( NodeClickAction.SHOW_DATA ); } - if ( _color_according_to_annotation != null ) { - _color_according_to_annotation.setSelected( true ); + else if ( action == _collapse_cb_item ) { + setActionWhenNodeClicked( NodeClickAction.COLLAPSE ); } - if ( _color_acc_species != null ) { - _color_acc_species.setSelected( false ); + else if ( action == _reroot_cb_item ) { + setActionWhenNodeClicked( NodeClickAction.REROOT ); } - if ( _color_acc_sequence != null ) { - _color_acc_sequence.setSelected( false ); + else if ( action == _subtree_cb_item ) { + setActionWhenNodeClicked( NodeClickAction.SUBTREE ); } - _mainpanel.getCurrentTreePanel().repaint(); - } - - /** - * Fit entire tree into window. - */ - void showWhole() { - if ( ( _mainpanel.getCurrentScrollPane() == null ) || _mainpanel.getCurrentTreePanel().getPhylogeny().isEmpty() ) { - return; + else if ( action == _swap_cb_item ) { + setActionWhenNodeClicked( NodeClickAction.SWAP ); } - getCurrentTreePanel().updateSetOfCollapsedExternalNodes(); - displayedPhylogenyMightHaveChanged( true ); - _mainpanel.getCurrentTreePanel().updateOvSettings(); - _mainpanel.getCurrentTreePanel().validate(); - _mainpanel.validate(); - _mainpanel.getCurrentTreePanel().calcParametersForPainting( _mainpanel.getSizeOfViewport().width, - _mainpanel.getSizeOfViewport().height, - true ); - _mainpanel.getCurrentTreePanel().resetPreferredSize(); - _mainpanel.adjustJScrollPane(); - _mainpanel.getCurrentTreePanel().repaint(); - _mainpanel.getCurrentTreePanel().validate(); - _mainpanel.validate(); - _mainpanel.getCurrentTreePanel().calcParametersForPainting( _mainpanel.getSizeOfViewport().width, - _mainpanel.getSizeOfViewport().height, - true ); - _mainpanel.getCurrentTreePanel().resetPreferredSize(); - _mainpanel.adjustJScrollPane(); - _mainpanel.getCurrentTreePanel().repaint(); - _mainpanel.getCurrentTreePanel().updateOvSizes(); - } - - void showWholeAll() { - for( final TreePanel tree_panel : _mainpanel.getTreePanels() ) { - if ( tree_panel != null ) { - tree_panel.validate(); - tree_panel.calcParametersForPainting( _mainpanel.getSizeOfViewport().width, - _mainpanel.getSizeOfViewport().height, - true ); - tree_panel.resetPreferredSize(); - tree_panel.repaint(); - } + else if ( action == _color_subtree_cb_item ) { + setActionWhenNodeClicked( NodeClickAction.COLOR_SUBTREE ); } - } - - // Create header for click-to combo box. - void startClickToOptions() { - final JLabel spacer = new JLabel( "" ); - spacer.setFont( ControlPanel.jcb_font ); - add( spacer ); - _click_to_label = new JLabel( "Click on Node to:" ); - add( customizeLabel( _click_to_label, getConfiguration() ) ); - _click_to_combobox = new JComboBox(); - _click_to_combobox.setFocusable( false ); - _click_to_combobox.setMaximumRowCount( 14 ); - _click_to_combobox.setFont( ControlPanel.js_font ); - if ( !_configuration.isUseNativeUI() ) { - _click_to_combobox.setBackground( getConfiguration().getGuiBackgroundColor() ); + else if ( action == _open_seq_web_item ) { + setActionWhenNodeClicked( NodeClickAction.OPEN_SEQ_WEB ); } - // don't add listener until all items are set (or each one will trigger - // an event) - // click_to_list.addActionListener(this); - add( _click_to_combobox ); - // Correlates option names to titles - _all_click_to_names = new HashMap(); - _click_to_names = new ArrayList(); - } - - void tabChanged() { - if ( getMainPanel().getTabbedPane().getTabCount() > 0 ) { - if ( getCurrentTreePanel().isPhyHasBranchLengths() - && ( getCurrentTreePanel().getPhylogenyGraphicsType() != PHYLOGENY_GRAPHICS_TYPE.CIRCULAR ) ) { - setDrawPhylogramEnabled( true ); - setDrawPhylogram( isDrawPhylogram() ); - } - else { - setDrawPhylogramEnabled( false ); - setDrawPhylogram( false ); - } - if ( getMainPanel().getMainFrame() == null ) { - // Must be "E" applet version. - final ArchaeopteryxE e = ( ArchaeopteryxE ) ( ( MainPanelApplets ) getMainPanel() ).getApplet(); - e.setSelectedTypeInTypeMenu( e.getCurrentTreePanel().getPhylogenyGraphicsType() ); - } - else { - getMainPanel().getMainFrame().setSelectedTypeInTypeMenu( getMainPanel().getCurrentTreePanel() - .getPhylogenyGraphicsType() ); - } - getMainPanel().getCurrentTreePanel().updateSubSuperTreeButton(); - getMainPanel().getControlPanel().search0(); - getMainPanel().getControlPanel().search1(); - getMainPanel().getControlPanel().updateDomainStructureEvaluethresholdDisplay(); - getSequenceRelationTypeBox().removeAllItems(); - for( final SequenceRelation.SEQUENCE_RELATION_TYPE type : getMainPanel().getCurrentPhylogeny() - .getRelevantSequenceRelationTypes() ) { - _sequence_relation_type_box.addItem( type ); - } - getMainPanel().getCurrentTreePanel().repaint(); - //setSequenceRelationQueries( getMainPanel().getCurrentPhylogeny().getSequenceRelationQueries() ); - // according to GUILHEM the line above can be removed. + else if ( action == _sort_descendents_item ) { + setActionWhenNodeClicked( NodeClickAction.SORT_DESCENDENTS ); } - } - - /** - * Uncollapse all nodes. - */ - void uncollapseAll( final TreePanel tp ) { - final Phylogeny t = tp.getPhylogeny(); - if ( ( t != null ) && !t.isEmpty() ) { - for( final PhylogenyNodeIterator iter = t.iteratorPreorder(); iter.hasNext(); ) { - final PhylogenyNode node = iter.next(); - node.setCollapse( false ); - } - tp.resetNodeIdToDistToLeafMap(); - tp.updateSetOfCollapsedExternalNodes(); - t.recalculateNumberOfExternalDescendants( false ); - tp.setNodeInPreorderToNull(); - t.clearHashIdToNodeMap(); - showWhole(); + else if ( action == _blast_item ) { + setActionWhenNodeClicked( NodeClickAction.BLAST ); } - } - - void updateDomainStructureEvaluethresholdDisplay() { - if ( _domain_structure_evalue_thr_tf != null ) { - _domain_structure_evalue_thr_tf.setText( "10^" - + getMainPanel().getCurrentTreePanel().getDomainStructureEvalueThreshold() ); + else if ( action == _open_tax_web_item ) { + setActionWhenNodeClicked( NodeClickAction.OPEN_TAX_WEB ); } - } - - void zoomInX( final float factor, final float x_correction_factor ) { - final JScrollBar sb = getMainPanel().getCurrentScrollPane().getHorizontalScrollBar(); - final TreePanel treepanel = getMainPanel().getCurrentTreePanel(); - treepanel.multiplyUrtFactor( 1f ); - if ( ( treepanel.getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.CIRCULAR ) - || ( treepanel.getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.UNROOTED ) - || isDrawPhylogram( getMainPanel().getCurrentTabIndex() ) - || ( getOptions().getCladogramType() == CLADOGRAM_TYPE.NON_LINED_UP ) ) { - final double x = ( sb.getMaximum() - sb.getMinimum() ) / ( sb.getValue() + ( sb.getVisibleAmount() / 2.0 ) ); - treepanel.setXdistance( ( treepanel.getXdistance() * factor ) ); - treepanel.setXcorrectionFactor( ( treepanel.getXcorrectionFactor() * x_correction_factor ) ); - getMainPanel().adjustJScrollPane(); - treepanel.resetPreferredSize(); - getMainPanel().getCurrentScrollPane().getViewport().validate(); - sb.setValue( ForesterUtil.roundToInt( ( ( sb.getMaximum() - sb.getMinimum() ) / x ) - - ( sb.getVisibleAmount() / 2.0 ) ) ); + else if ( action == _cut_subtree_item ) { + setActionWhenNodeClicked( NodeClickAction.CUT_SUBTREE ); } - else { - final int x = sb.getMaximum() - sb.getMinimum() - sb.getVisibleAmount() - sb.getValue(); - treepanel.setXdistance( ( treepanel.getXdistance() * factor ) ); - treepanel.setXcorrectionFactor( ( treepanel.getXcorrectionFactor() * x_correction_factor ) ); - getMainPanel().adjustJScrollPane(); - treepanel.resetPreferredSize(); - getMainPanel().getCurrentScrollPane().getViewport().validate(); - sb.setValue( sb.getMaximum() - sb.getMinimum() - x - sb.getVisibleAmount() ); + else if ( action == _copy_subtree_item ) { + setActionWhenNodeClicked( NodeClickAction.COPY_SUBTREE ); + } + else if ( action == _delete_node_or_subtree_item ) { + setActionWhenNodeClicked( NodeClickAction.DELETE_NODE_OR_SUBTREE ); + } + else if ( action == _paste_subtree_item ) { + setActionWhenNodeClicked( NodeClickAction.PASTE_SUBTREE ); + } + else if ( action == _add_new_node_item ) { + setActionWhenNodeClicked( NodeClickAction.ADD_NEW_NODE ); + } + else if ( action == _edit_node_data_item ) { + setActionWhenNodeClicked( NodeClickAction.EDIT_NODE_DATA ); + } + else if ( action == _select_nodes_item ) { + setActionWhenNodeClicked( NodeClickAction.SELECT_NODES ); + } + else if ( action == _get_ext_desc_data ) { + setActionWhenNodeClicked( NodeClickAction.GET_EXT_DESC_DATA ); + } + else if ( action == _open_pdb_item ) { + setActionWhenNodeClicked( NodeClickAction.OPEN_PDB_WEB ); + } + else if ( action == _color_node_font_item ) { + setActionWhenNodeClicked( NodeClickAction.COLOR_NODE_FONT ); + } + else if ( action == _change_node_font_item ) { + setActionWhenNodeClicked( NodeClickAction.CHANGE_NODE_FONT ); } - treepanel.resetPreferredSize(); - treepanel.updateOvSizes(); + else if ( action == _uncollapse_all_cb_item ) { + setActionWhenNodeClicked( NodeClickAction.UNCOLLAPSE_ALL ); + } + else if ( action == _order_subtree_cb_item ) { + setActionWhenNodeClicked( NodeClickAction.ORDER_SUBTREE ); + } + else { + throw new RuntimeException( "unknown action: " + action ); + } + // make sure drop down is displaying the correct action + // in case this was called from outside the class + _click_to_combobox.setSelectedIndex( action ); } - void zoomInY( final float factor ) { - final JScrollBar sb = getMainPanel().getCurrentScrollPane().getVerticalScrollBar(); - final TreePanel treepanel = getMainPanel().getCurrentTreePanel(); - treepanel.multiplyUrtFactor( 1.1f ); - final double x = ( sb.getMaximum() - sb.getMinimum() ) / ( sb.getValue() + ( sb.getVisibleAmount() / 2.0 ) ); - treepanel.setYdistance( ( treepanel.getYdistance() * factor ) ); - getMainPanel().adjustJScrollPane(); - treepanel.resetPreferredSize(); - getMainPanel().getCurrentScrollPane().getViewport().validate(); - sb.setValue( ForesterUtil.roundToInt( ( ( sb.getMaximum() - sb.getMinimum() ) / x ) - - ( sb.getVisibleAmount() / 2.0 ) ) ); - treepanel.resetPreferredSize(); - treepanel.updateOvSizes(); + void setColorBranches( final boolean color_branches ) { + _color_branches = color_branches; } - void zoomOutX( final float factor, final float x_correction_factor ) { - final TreePanel treepanel = getMainPanel().getCurrentTreePanel(); - treepanel.multiplyUrtFactor( 1f ); - if ( ( treepanel.getXdistance() * factor ) > 0.0 ) { - final JScrollBar sb = getMainPanel().getCurrentScrollPane().getHorizontalScrollBar(); - if ( ( treepanel.getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.CIRCULAR ) - || ( treepanel.getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.UNROOTED ) - || isDrawPhylogram( getMainPanel().getCurrentTabIndex() ) - || ( getOptions().getCladogramType() == CLADOGRAM_TYPE.NON_LINED_UP ) ) { - getMainPanel().adjustJScrollPane(); - treepanel.resetPreferredSize(); - getMainPanel().getCurrentScrollPane().getViewport().validate(); - final double x = ( sb.getMaximum() - sb.getMinimum() ) - / ( sb.getValue() + ( sb.getVisibleAmount() / 2.0 ) ); - treepanel.setXdistance( ( treepanel.getXdistance() * factor ) ); - treepanel.setXcorrectionFactor( ( treepanel.getXcorrectionFactor() * x_correction_factor ) ); - getMainPanel().adjustJScrollPane(); - treepanel.resetPreferredSize(); - getMainPanel().getCurrentScrollPane().getViewport().validate(); - sb.setValue( ForesterUtil.roundToInt( ( ( sb.getMaximum() - sb.getMinimum() ) / x ) - - ( sb.getVisibleAmount() / 2.0 ) ) ); + void setDrawPhylogram( final boolean b ) { + getDisplayAsPhylogramCb().setSelected( b ); + setDrawPhylogram( getMainPanel().getCurrentTabIndex(), b ); + } + + void setDrawPhylogramEnabled( final boolean b ) { + getDisplayAsPhylogramCb().setEnabled( b ); + } + + void setDynamicHidingIsOn( final boolean is_on ) { + if ( is_on ) { + getDynamicallyHideData().setForeground( getConfiguration().getGuiCheckboxAndButtonActiveColor() ); + } + else { + if ( !_configuration.isUseNativeUI() ) { + getDynamicallyHideData().setForeground( getConfiguration().getGuiButtonTextColor() ); } else { - final int x = sb.getMaximum() - sb.getMinimum() - sb.getVisibleAmount() - sb.getValue(); - treepanel.setXdistance( treepanel.getXdistance() * factor ); - treepanel.setXcorrectionFactor( treepanel.getXcorrectionFactor() * x_correction_factor ); - if ( x > 0 ) { - getMainPanel().adjustJScrollPane(); - treepanel.resetPreferredSize(); - getMainPanel().getCurrentScrollPane().getViewport().validate(); - sb.setValue( sb.getMaximum() - sb.getMinimum() - x - sb.getVisibleAmount() ); - } + getDynamicallyHideData().setForeground( Color.BLACK ); } - treepanel.resetPreferredSize(); - treepanel.updateOvSizes(); } } - void zoomOutY( final float factor ) { - final TreePanel treepanel = getMainPanel().getCurrentTreePanel(); - treepanel.multiplyUrtFactor( 0.9f ); - if ( ( treepanel.getYdistance() * factor ) > 0.0 ) { - final JScrollBar sb = getMainPanel().getCurrentScrollPane().getVerticalScrollBar(); - final double x = ( sb.getMaximum() - sb.getMinimum() ) / ( sb.getValue() + ( sb.getVisibleAmount() / 2.0 ) ); - treepanel.setYdistance( ( treepanel.getYdistance() * factor ) ); - getMainPanel().adjustJScrollPane(); - treepanel.resetPreferredSize(); - getMainPanel().getCurrentScrollPane().getViewport().validate(); - sb.setValue( ForesterUtil.roundToInt( ( ( sb.getMaximum() - sb.getMinimum() ) / x ) - - ( sb.getVisibleAmount() / 2.0 ) ) ); - treepanel.resetPreferredSize(); - treepanel.updateOvSizes(); - } + void setSearchFoundCountsOnLabel0( final int counts ) { + getSearchFoundCountsLabel0().setText( "Found: " + counts ); } - private void addClickToOption( final int which, final String title ) { - _click_to_combobox.addItem( title ); - _click_to_names.add( title ); - _all_click_to_names.put( new Integer( which ), title ); - if ( !_configuration.isUseNativeUI() ) { - _click_to_combobox.setBackground( getConfiguration().getGuiButtonBackgroundColor() ); - _click_to_combobox.setForeground( getConfiguration().getGuiButtonTextColor() ); - } + void setSearchFoundCountsOnLabel1( final int counts ) { + getSearchFoundCountsLabel1().setText( "Found: " + counts ); } - /* GUILHEM_BEG */ - private void addSequenceRelationBlock() { - final JLabel spacer = new JLabel( "" ); - spacer.setSize( 1, 1 ); - add( spacer ); - final JLabel mainLabel = new JLabel( "Sequence relations to display" ); - final JLabel typeLabel = customizeLabel( new JLabel( "(type) " ), getConfiguration() ); - typeLabel.setFont( ControlPanel.js_font.deriveFont( 7 ) ); - getSequenceRelationTypeBox().setFocusable( false ); - _sequence_relation_type_box.setFont( ControlPanel.js_font ); - if ( !_configuration.isUseNativeUI() ) { - _sequence_relation_type_box.setBackground( getConfiguration().getGuiButtonBackgroundColor() ); - _sequence_relation_type_box.setForeground( getConfiguration().getGuiButtonTextColor() ); - } - _sequence_relation_type_box.setRenderer( new ListCellRenderer() { - - @Override - public Component getListCellRendererComponent( final JList list, - final Object value, - final int index, - final boolean isSelected, - final boolean cellHasFocus ) { - final Component component = new DefaultListCellRenderer().getListCellRendererComponent( list, - value, - index, - isSelected, - cellHasFocus ); - if ( ( value != null ) && ( value instanceof SequenceRelation.SEQUENCE_RELATION_TYPE ) ) { - ( ( DefaultListCellRenderer ) component ).setText( SequenceRelation - .getPrintableNameByType( ( SequenceRelation.SEQUENCE_RELATION_TYPE ) value ) ); - } - return component; - } - } ); - final GridBagLayout gbl = new GridBagLayout(); - _sequence_relation_type_box.setMinimumSize( new Dimension( 115, 17 ) ); - _sequence_relation_type_box.setPreferredSize( new Dimension( 115, 20 ) ); - final JPanel horizGrid = new JPanel( gbl ); - horizGrid.setBackground( getBackground() ); - horizGrid.add( typeLabel ); - horizGrid.add( _sequence_relation_type_box ); - add( customizeLabel( mainLabel, getConfiguration() ) ); - add( horizGrid ); - add( getSequenceRelationBox() ); - if ( _configuration.doDisplayOption( Configuration.show_relation_confidence ) ) { - addCheckbox( Configuration.show_relation_confidence, - _configuration.getDisplayTitle( Configuration.show_relation_confidence ) ); - setCheckbox( Configuration.show_relation_confidence, - _configuration.doCheckOption( Configuration.show_relation_confidence ) ); - } - }// addSequenceRelationBlock - - /* GUILHEM_END */ - private List getIsDrawPhylogramList() { - return _draw_phylogram; + void setSequenceColors( final Map sequence_colors ) { + _sequence_colors = sequence_colors; } - private void init() { - _draw_phylogram = new ArrayList(); - setSpeciesColors( new HashMap() ); - setSequenceColors( new HashMap() ); - setAnnotationColors( new HashMap() ); + void setShowEvents( final boolean show_events ) { + if ( getShowEventsCb() == null ) { + _show_events = new JCheckBox( "" ); + } + getShowEventsCb().setSelected( show_events ); } - private boolean isDrawPhylogram( final int index ) { - return getIsDrawPhylogramList().get( index ); + void setSpeciesColors( final Map species_colors ) { + _species_colors = species_colors; } - private void search0( final MainPanel main_panel, final Phylogeny tree, final String query_str ) { - getSearchFoundCountsLabel0().setVisible( true ); - getSearchResetButton0().setEnabled( true ); - getSearchResetButton0().setVisible( true ); - String[] queries = null; - List nodes = null; - if ( query_str.indexOf( ',' ) >= 0 ) { - queries = query_str.split( ",+" ); - } - else { - queries = new String[ 1 ]; - queries[ 0 ] = query_str.trim(); - } - if ( ( queries != null ) && ( queries.length > 0 ) ) { - nodes = new ArrayList(); - for( String query : queries ) { - if ( ForesterUtil.isEmpty( query ) ) { - continue; - } - query = query.trim(); - if ( query.indexOf( '+' ) >= 0 ) { - nodes.addAll( PhylogenyMethods.searchDataLogicalAnd( query.split( "\\++" ), - tree, - getOptions().isSearchCaseSensitive(), - !getOptions().isMatchWholeTermsOnly(), - isShowDomainArchitectures() ) ); - } - else { - nodes.addAll( PhylogenyMethods.searchData( query, - tree, - getOptions().isSearchCaseSensitive(), - !getOptions().isMatchWholeTermsOnly(), - isShowDomainArchitectures() ) ); - } - } - if ( getOptions().isInverseSearchResult() ) { - final List all = PhylogenyMethods.obtainAllNodesAsList( tree ); - all.removeAll( nodes ); - nodes = all; - } - } - if ( ( nodes != null ) && ( nodes.size() > 0 ) ) { - main_panel.getCurrentTreePanel().setFoundNodes0( new HashSet() ); - for( final PhylogenyNode node : nodes ) { - main_panel.getCurrentTreePanel().getFoundNodes0().add( node.getId() ); - } - setSearchFoundCountsOnLabel0( nodes.size() ); - } - else { - setSearchFoundCountsOnLabel0( 0 ); - searchReset0(); + void setupControls() { + // The tree display options: + setupDisplayCheckboxes(); + /* GUILHEM_BEG */ + // The sequence relation query selection combo-box + if ( _configuration.displaySequenceRelations() ) { + addSequenceRelationBlock(); } + /* GUILHEM_END */ + // Click-to options + startClickToOptions(); + setupClickToOptions(); + endClickToOptions(); + // Zoom and quick edit buttons + addButtons(); + setupSearchTools0(); + setupSearchTools1(); } - private void search1( final MainPanel main_panel, final Phylogeny tree, final String query_str ) { - getSearchFoundCountsLabel1().setVisible( true ); - getSearchResetButton1().setEnabled( true ); - getSearchResetButton1().setVisible( true ); - String[] queries = null; - List nodes = null; - if ( query_str.indexOf( ',' ) >= 0 ) { - queries = query_str.split( ",+" ); - } - else { - queries = new String[ 1 ]; - queries[ 0 ] = query_str.trim(); - } - if ( ( queries != null ) && ( queries.length > 0 ) ) { - nodes = new ArrayList(); - for( String query : queries ) { - if ( ForesterUtil.isEmpty( query ) ) { - continue; - } - query = query.trim(); - if ( query.indexOf( '+' ) >= 0 ) { - nodes.addAll( PhylogenyMethods.searchDataLogicalAnd( query.split( "\\++" ), - tree, - getOptions().isSearchCaseSensitive(), - !getOptions().isMatchWholeTermsOnly(), - isShowDomainArchitectures() ) ); - } - else { - nodes.addAll( PhylogenyMethods.searchData( query, - tree, - getOptions().isSearchCaseSensitive(), - !getOptions().isMatchWholeTermsOnly(), - isShowDomainArchitectures() ) ); - } - } - if ( getOptions().isInverseSearchResult() ) { - final List all = PhylogenyMethods.obtainAllNodesAsList( tree ); - all.removeAll( nodes ); - nodes = all; - } - } - if ( ( nodes != null ) && ( nodes.size() > 0 ) ) { - main_panel.getCurrentTreePanel().setFoundNodes1( new HashSet() ); - for( final PhylogenyNode node : nodes ) { - main_panel.getCurrentTreePanel().getFoundNodes1().add( node.getId() ); - } - setSearchFoundCountsOnLabel1( nodes.size() ); + void setUpControlsForDomainStrucures() { + _domain_display_label = new JLabel( "Domain Architectures:" ); + add( customizeLabel( _domain_display_label, getConfiguration() ) ); + add( _domain_display_label ); + _zoom_in_domain_structure = new TypomaticJButton( "d+" ); + _zoom_out_domain_structure = new TypomaticJButton( "d-" ); + _decr_domain_structure_evalue_thr = new JButton( "-" ); + _incr_domain_structure_evalue_thr = new JButton( "+" ); + _zoom_in_domain_structure.setPreferredSize( new Dimension( 10, 10 ) ); + _zoom_out_domain_structure.setPreferredSize( new Dimension( 10, 10 ) ); + _decr_domain_structure_evalue_thr.setPreferredSize( new Dimension( 10, 10 ) ); + _incr_domain_structure_evalue_thr.setPreferredSize( new Dimension( 10, 10 ) ); + _incr_domain_structure_evalue_thr.setToolTipText( "Increase the E-value threshold by a factor of 10" ); + _decr_domain_structure_evalue_thr.setToolTipText( "Decrease the E-value threshold by a factor of 10" ); + _domain_structure_evalue_thr_tf = new JTextField( 3 ); + _domain_structure_evalue_thr_tf.setEditable( false ); + if ( !getConfiguration().isUseNativeUI() ) { + _domain_structure_evalue_thr_tf.setForeground( getConfiguration().getGuiMenuBackgroundColor() ); + _domain_structure_evalue_thr_tf.setBackground( getConfiguration().getGuiCheckboxTextColor() ); + _domain_structure_evalue_thr_tf.setBorder( null ); } - else { - setSearchFoundCountsOnLabel1( 0 ); - searchReset1(); + final JPanel d1_panel = new JPanel( new GridLayout( 1, 2, 0, 0 ) ); + final JPanel d2_panel = new JPanel( new GridLayout( 1, 3, 0, 0 ) ); + if ( !_configuration.isUseNativeUI() ) { + d1_panel.setBackground( getBackground() ); + d2_panel.setBackground( getBackground() ); } + add( d1_panel ); + add( d2_panel ); + addJButton( _zoom_out_domain_structure, d1_panel ); + addJButton( _zoom_in_domain_structure, d1_panel ); + addJButton( _decr_domain_structure_evalue_thr, d2_panel ); + addJTextField( _domain_structure_evalue_thr_tf, d2_panel ); + addJButton( _incr_domain_structure_evalue_thr, d2_panel ); } - private void setDrawPhylogram( final int index, final boolean b ) { - getIsDrawPhylogramList().set( index, b ); - } - - private void setupClickToOptions() { - final int default_option = _configuration.getDefaultDisplayClicktoOption(); - int selected_index = 0; - int cb_index = 0; - if ( _configuration.doDisplayClickToOption( Configuration.display_node_data ) ) { - _show_data_item = cb_index; - addClickToOption( Configuration.display_node_data, - _configuration.getClickToTitle( Configuration.display_node_data ) ); - if ( default_option == Configuration.display_node_data ) { - selected_index = cb_index; - } - cb_index++; - } - if ( _configuration.doDisplayClickToOption( Configuration.collapse_uncollapse ) ) { - _collapse_cb_item = cb_index; - addClickToOption( Configuration.collapse_uncollapse, - _configuration.getClickToTitle( Configuration.collapse_uncollapse ) ); - if ( default_option == Configuration.collapse_uncollapse ) { - selected_index = cb_index; - } - cb_index++; + void setUpControlsForDepthCollapse() { + _depth_collapse_label = new JLabel( "Collapse by Node Depth:" ); + _depth_collapse_label + .setToolTipText( "to automaticall collapse nodes with a depth equal or larger than a threshold" ); + add( customizeLabel( _depth_collapse_label, getConfiguration() ) ); + add( _depth_collapse_label ); + _decr_depth_collapse_level = new TypomaticJButton( "-" ); + _incr_depth_collapse_level = new TypomaticJButton( "+" ); + _decr_depth_collapse_level.setPreferredSize( new Dimension( 10, 10 ) ); + _incr_depth_collapse_level.setPreferredSize( new Dimension( 10, 10 ) ); + _decr_depth_collapse_level.setToolTipText( "to decrease the depth threshold (wraps around)" ); + _incr_depth_collapse_level.setToolTipText( "to increase the depth threshold (wraps around)" ); + _depth_collapse_depth_tf = new JTextField( 3 ); + _depth_collapse_depth_tf.setToolTipText( "the current depth threshold" ); + _depth_collapse_depth_tf.setEditable( false ); + if ( !getConfiguration().isUseNativeUI() ) { + _depth_collapse_depth_tf.setForeground( getConfiguration().getGuiMenuBackgroundColor() ); + _depth_collapse_depth_tf.setBackground( getConfiguration().getGuiCheckboxTextColor() ); + _depth_collapse_depth_tf.setBorder( null ); } - if ( _configuration.doDisplayClickToOption( Configuration.reroot ) ) { - _reroot_cb_item = cb_index; - addClickToOption( Configuration.reroot, _configuration.getClickToTitle( Configuration.reroot ) ); - if ( default_option == Configuration.reroot ) { - selected_index = cb_index; - } - cb_index++; + final JPanel panel = new JPanel( new GridLayout( 1, 3, 0, 0 ) ); + if ( !_configuration.isUseNativeUI() ) { + panel.setBackground( getBackground() ); + } + add( panel ); + addJButton( _decr_depth_collapse_level, panel ); + addJTextField( _depth_collapse_depth_tf, panel ); + addJButton( _incr_depth_collapse_level, panel ); + } + + void setUpControlsForRankCollapse() { + _rank_collapse_label = new JLabel( "Collapse by Node Rank:" ); + _rank_collapse_label + .setToolTipText( "to automatically collapse nodes with a taxonomic rank equal or lower than a threshold" ); + add( customizeLabel( _rank_collapse_label, getConfiguration() ) ); + add( _rank_collapse_label ); + _decr_rank_collapse_level = new TypomaticJButton( "-" ); + _incr_rank_collapse_level = new TypomaticJButton( "+" ); + _decr_rank_collapse_level.setPreferredSize( new Dimension( 10, 10 ) ); + _incr_rank_collapse_level.setPreferredSize( new Dimension( 10, 10 ) ); + _decr_rank_collapse_level.setToolTipText( "to decrease the taxonomic rank threshold (wraps around)" ); + _incr_rank_collapse_level.setToolTipText( "to increase the taxonomic rank threshold (wraps around)" ); + _rank_collapse_depth_tf = new JTextField( 3 ); + _rank_collapse_depth_tf.setToolTipText( "the current taxonomic rank threshold" ); + _rank_collapse_depth_tf.setEditable( false ); + if ( !getConfiguration().isUseNativeUI() ) { + _rank_collapse_depth_tf.setForeground( getConfiguration().getGuiMenuBackgroundColor() ); + _rank_collapse_depth_tf.setBackground( getConfiguration().getGuiCheckboxTextColor() ); + _rank_collapse_depth_tf.setBorder( null ); } - if ( _configuration.doDisplayClickToOption( Configuration.subtree ) ) { - _subtree_cb_item = cb_index; - addClickToOption( Configuration.subtree, _configuration.getClickToTitle( Configuration.subtree ) ); - if ( default_option == Configuration.subtree ) { - selected_index = cb_index; - } - cb_index++; + final JPanel panel = new JPanel( new GridLayout( 1, 3, 0, 0 ) ); + if ( !_configuration.isUseNativeUI() ) { + panel.setBackground( getBackground() ); } - if ( _configuration.doDisplayClickToOption( Configuration.swap ) ) { - _swap_cb_item = cb_index; - addClickToOption( Configuration.swap, _configuration.getClickToTitle( Configuration.swap ) ); - if ( default_option == Configuration.swap ) { - selected_index = cb_index; - } - cb_index++; + add( panel ); + addJButton( _decr_rank_collapse_level, panel ); + addJTextField( _rank_collapse_depth_tf, panel ); + addJButton( _incr_rank_collapse_level, panel ); + } + + void setupSearchTools0() { + final JLabel search_label = new JLabel( "Search (A):" ); + search_label.setFont( ControlPanel.jcb_bold_font ); + if ( !getConfiguration().isUseNativeUI() ) { + search_label.setForeground( getConfiguration().getGuiCheckboxTextColor() ); } - if ( _configuration.doDisplayClickToOption( Configuration.sort_descendents ) ) { - _sort_descendents_item = cb_index; - addClickToOption( Configuration.sort_descendents, - _configuration.getClickToTitle( Configuration.sort_descendents ) ); - if ( default_option == Configuration.sort_descendents ) { - selected_index = cb_index; - } - cb_index++; + add( search_label ); + search_label.setToolTipText( SEARCH_TIP_TEXT ); + _search_found_label_0 = new JLabel(); + getSearchFoundCountsLabel0().setVisible( false ); + _search_found_label_0.setFont( ControlPanel.jcb_bold_font ); + if ( !getConfiguration().isUseNativeUI() ) { + _search_found_label_0.setForeground( getConfiguration().getGuiCheckboxTextColor() ); } - if ( _configuration.doDisplayClickToOption( Configuration.color_node_font ) ) { - _color_node_font_item = cb_index; - addClickToOption( Configuration.color_node_font, - _configuration.getClickToTitle( Configuration.color_node_font ) ); - if ( default_option == Configuration.color_node_font ) { - selected_index = cb_index; - } - cb_index++; + _search_tf_0 = new JTextField( 3 ); + _search_tf_0.setToolTipText( SEARCH_TIP_TEXT ); + _search_tf_0.setEditable( true ); + if ( !getConfiguration().isUseNativeUI() ) { + _search_tf_0.setForeground( getConfiguration().getGuiMenuBackgroundColor() ); + _search_tf_0.setBackground( getConfiguration().getGuiCheckboxTextColor() ); + _search_tf_0.setBorder( null ); } - if ( _configuration.doDisplayClickToOption( Configuration.change_node_font ) ) { - _change_node_font_item = cb_index; - addClickToOption( Configuration.change_node_font, - _configuration.getClickToTitle( Configuration.change_node_font ) ); - if ( default_option == Configuration.change_node_font ) { - selected_index = cb_index; + _search_reset_button_0 = new JButton(); + getSearchResetButton0().setText( "Reset" ); + getSearchResetButton0().setEnabled( false ); + getSearchResetButton0().setVisible( false ); + final JPanel s_panel_1 = new JPanel( new BorderLayout() ); + final JPanel s_panel_2 = new JPanel( new GridLayout( 1, 2, 0, 0 ) ); + s_panel_1.setBackground( getBackground() ); + add( s_panel_1 ); + s_panel_2.setBackground( getBackground() ); + add( s_panel_2 ); + final KeyAdapter key_adapter = new KeyAdapter() { + + @Override + public void keyReleased( final KeyEvent key_event ) { + search0(); + displayedPhylogenyMightHaveChanged( true ); } - cb_index++; - } - if ( _configuration.doDisplayClickToOption( Configuration.color_subtree ) ) { - _color_subtree_cb_item = cb_index; - addClickToOption( Configuration.color_subtree, _configuration.getClickToTitle( Configuration.color_subtree ) ); - if ( default_option == Configuration.color_subtree ) { - selected_index = cb_index; + }; + final ActionListener action_listener = new ActionListener() { + + @Override + public void actionPerformed( final ActionEvent e ) { + searchReset0(); + setSearchFoundCountsOnLabel0( 0 ); + getSearchFoundCountsLabel0().setVisible( false ); + getSearchTextField0().setText( "" ); + getSearchResetButton0().setEnabled( false ); + getSearchResetButton0().setVisible( false ); + displayedPhylogenyMightHaveChanged( true ); } - cb_index++; + }; + _search_reset_button_0.addActionListener( action_listener ); + _search_tf_0.addKeyListener( key_adapter ); + addJTextField( _search_tf_0, s_panel_1 ); + s_panel_2.add( _search_found_label_0 ); + addJButton( _search_reset_button_0, s_panel_2 ); + } + + void setupSearchTools1() { + final JLabel search_label = new JLabel( "Search (B):" ); + search_label.setFont( ControlPanel.jcb_bold_font ); + if ( !getConfiguration().isUseNativeUI() ) { + search_label.setForeground( getConfiguration().getGuiCheckboxTextColor() ); } - if ( _configuration.doDisplayClickToOption( Configuration.open_seq_web ) ) { - _open_seq_web_item = cb_index; - addClickToOption( Configuration.open_seq_web, _configuration.getClickToTitle( Configuration.open_seq_web ) ); - if ( default_option == Configuration.open_seq_web ) { - selected_index = cb_index; - } - cb_index++; + add( search_label ); + search_label.setToolTipText( SEARCH_TIP_TEXT ); + _search_found_label_1 = new JLabel(); + getSearchFoundCountsLabel1().setVisible( false ); + _search_found_label_1.setFont( ControlPanel.jcb_bold_font ); + if ( !getConfiguration().isUseNativeUI() ) { + _search_found_label_1.setForeground( getConfiguration().getGuiCheckboxTextColor() ); } - if ( _configuration.doDisplayClickToOption( Configuration.open_pdb_web ) ) { - _open_pdb_item = cb_index; - addClickToOption( Configuration.open_pdb_web, _configuration.getClickToTitle( Configuration.open_pdb_web ) ); - if ( default_option == Configuration.open_pdb_web ) { - selected_index = cb_index; - } - cb_index++; + _search_tf_1 = new JTextField( 3 ); + _search_tf_1.setToolTipText( SEARCH_TIP_TEXT ); + _search_tf_1.setEditable( true ); + if ( !getConfiguration().isUseNativeUI() ) { + _search_tf_1.setForeground( getConfiguration().getGuiMenuBackgroundColor() ); + _search_tf_1.setBackground( getConfiguration().getGuiCheckboxTextColor() ); + _search_tf_1.setBorder( null ); } - if ( _configuration.doDisplayClickToOption( Configuration.open_tax_web ) ) { - _open_tax_web_item = cb_index; - addClickToOption( Configuration.open_tax_web, _configuration.getClickToTitle( Configuration.open_tax_web ) ); - if ( default_option == Configuration.open_tax_web ) { - selected_index = cb_index; + _search_reset_button_1 = new JButton(); + getSearchResetButton1().setText( "Reset" ); + getSearchResetButton1().setEnabled( false ); + getSearchResetButton1().setVisible( false ); + final JPanel s_panel_1 = new JPanel( new BorderLayout() ); + final JPanel s_panel_2 = new JPanel( new GridLayout( 1, 2, 0, 0 ) ); + s_panel_1.setBackground( getBackground() ); + add( s_panel_1 ); + s_panel_2.setBackground( getBackground() ); + add( s_panel_2 ); + final KeyAdapter key_adapter = new KeyAdapter() { + + @Override + public void keyReleased( final KeyEvent key_event ) { + search1(); + displayedPhylogenyMightHaveChanged( true ); } - cb_index++; - } - if ( _configuration.doDisplayClickToOption( Configuration.blast ) ) { - _blast_item = cb_index; - addClickToOption( Configuration.blast, _configuration.getClickToTitle( Configuration.blast ) ); - if ( default_option == Configuration.blast ) { - selected_index = cb_index; + }; + final ActionListener action_listener = new ActionListener() { + + @Override + public void actionPerformed( final ActionEvent e ) { + searchReset1(); + setSearchFoundCountsOnLabel1( 0 ); + getSearchFoundCountsLabel1().setVisible( false ); + getSearchTextField1().setText( "" ); + getSearchResetButton1().setEnabled( false ); + getSearchResetButton1().setVisible( false ); + displayedPhylogenyMightHaveChanged( true ); } - cb_index++; - } - if ( _configuration.doDisplayClickToOption( Configuration.select_nodes ) ) { - _select_nodes_item = cb_index; - addClickToOption( Configuration.select_nodes, _configuration.getClickToTitle( Configuration.select_nodes ) ); - if ( default_option == Configuration.select_nodes ) { - selected_index = cb_index; + }; + _search_reset_button_1.addActionListener( action_listener ); + _search_tf_1.addKeyListener( key_adapter ); + addJTextField( _search_tf_1, s_panel_1 ); + s_panel_2.add( _search_found_label_1 ); + addJButton( _search_reset_button_1, s_panel_2 ); + } + + void setVisibilityOfDomainStrucureCB() { + try { + if ( ( getCurrentTreePanel() != null ) && ( ( getCurrentTreePanel() + .getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.CIRCULAR ) + || ( getCurrentTreePanel().getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.UNROOTED ) ) ) { + if ( getMainPanel().getMainFrame()._right_line_up_domains_cbmi != null ) { + getMainPanel().getMainFrame()._right_line_up_domains_cbmi.setVisible( false ); + } + if ( getMainPanel().getMainFrame()._show_domain_labels != null ) { + getMainPanel().getMainFrame()._show_domain_labels.setVisible( false ); + } } - cb_index++; - } - if ( _configuration.doDisplayClickToOption( Configuration.get_ext_desc_data ) ) { - _get_ext_desc_data = cb_index; - if ( !ForesterUtil.isEmpty( getConfiguration().getLabelForGetExtDescendentsData() ) ) { - addClickToOption( Configuration.get_ext_desc_data, getConfiguration() - .getLabelForGetExtDescendentsData() ); + else if ( isShowDomainArchitectures() ) { + if ( getMainPanel().getMainFrame()._right_line_up_domains_cbmi != null ) { + getMainPanel().getMainFrame()._right_line_up_domains_cbmi.setVisible( true ); + } + if ( getMainPanel().getMainFrame()._show_domain_labels != null ) { + getMainPanel().getMainFrame()._show_domain_labels.setVisible( true ); + } } else { - String s = ";"; - switch ( getConfiguration().getExtDescNodeDataToReturn() ) { - case NODE_NAME: - s = "Node Names"; - break; - case SEQUENCE_ACC: - s = "Sequence Accessors"; - break; - case SEQUENCE_MOL_SEQ: - s = "Molecular Sequence"; - break; - case SEQUENCE_MOL_SEQ_FASTA: - s = "Molecular Sequence (Fasta)"; - break; - case SEQUENCE_NAME: - s = "Sequence Names"; - break; - case GENE_NAME: - s = "Gene Names"; - break; - case SEQUENCE_SYMBOL: - s = "Sequence Symbols"; - break; - case TAXONOMY_CODE: - s = "Taxonomy Codes"; - break; - case TAXONOMY_COMM0N_NAME: - s = "Taxonomy Common Names"; - break; - case TAXONOMY_SCIENTIFIC_NAME: - s = "Scientific Names"; - break; - case UNKNOWN: - s = "User Selected Data"; - break; - default: - throw new IllegalStateException( "dont know how to deal with " - + getConfiguration().getExtDescNodeDataToReturn() ); + if ( getMainPanel().getMainFrame()._right_line_up_domains_cbmi != null ) { + getMainPanel().getMainFrame()._right_line_up_domains_cbmi.setVisible( false ); + } + if ( getMainPanel().getMainFrame()._show_domain_labels != null ) { + getMainPanel().getMainFrame()._show_domain_labels.setVisible( false ); } - final String label = _configuration.getClickToTitle( Configuration.get_ext_desc_data ) + " " + s; - addClickToOption( Configuration.get_ext_desc_data, label ); - } - if ( default_option == Configuration.get_ext_desc_data ) { - selected_index = cb_index; } - cb_index++; } - if ( getOptions().isEditable() ) { - if ( _configuration.doDisplayClickToOption( Configuration.cut_subtree ) ) { - _cut_subtree_item = cb_index; - addClickToOption( Configuration.cut_subtree, _configuration.getClickToTitle( Configuration.cut_subtree ) ); - if ( default_option == Configuration.cut_subtree ) { - selected_index = cb_index; + catch ( final Exception ignore ) { + //not important... + } + } + + void setVisibilityOfX() { + final MainFrame mf = getMainFrame(); + if ( mf != null ) { + if ( ( getCurrentTreePanel() != null ) && ( getCurrentTreePanel().getPhylogeny() != null ) ) { + if ( AptxUtil.isHasAtLeastOneBranchWithSupportSD( getCurrentTreePanel().getPhylogeny() ) ) { + if ( mf._show_confidence_stddev_cbmi != null ) { + mf._show_confidence_stddev_cbmi.setVisible( true ); + } + } + else { + if ( mf._show_confidence_stddev_cbmi != null ) { + mf._show_confidence_stddev_cbmi.setVisible( false ); + } + } + if ( AptxUtil.isHasAtLeastOneNodeWithScientificName( getCurrentTreePanel().getPhylogeny() ) ) { + if ( mf._abbreviate_scientific_names != null ) { + mf._abbreviate_scientific_names.setVisible( true ); + } + } + else { + if ( mf._abbreviate_scientific_names != null ) { + mf._abbreviate_scientific_names.setVisible( false ); + } + } + if ( AptxUtil.isHasAtLeastOneNodeWithSequenceAnnotation( getCurrentTreePanel().getPhylogeny() ) ) { + if ( mf._show_annotation_ref_source != null ) { + mf._show_annotation_ref_source.setVisible( true ); + } + } + else { + if ( mf._show_annotation_ref_source != null ) { + mf._show_annotation_ref_source.setVisible( false ); + } } - cb_index++; } - if ( _configuration.doDisplayClickToOption( Configuration.copy_subtree ) ) { - _copy_subtree_item = cb_index; - addClickToOption( Configuration.copy_subtree, - _configuration.getClickToTitle( Configuration.copy_subtree ) ); - if ( default_option == Configuration.copy_subtree ) { - selected_index = cb_index; + if ( isDrawPhylogram() || ( ( getCurrentTreePanel() != null ) && ( ( getCurrentTreePanel() + .getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.CIRCULAR ) + || ( getCurrentTreePanel().getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.UNROOTED ) ) ) ) { + if ( mf._non_lined_up_cladograms_rbmi != null ) { + mf._non_lined_up_cladograms_rbmi.setVisible( false ); + } + if ( mf._ext_node_dependent_cladogram_rbmi != null ) { + mf._ext_node_dependent_cladogram_rbmi.setVisible( false ); } - cb_index++; } - if ( _configuration.doDisplayClickToOption( Configuration.paste_subtree ) ) { - _paste_subtree_item = cb_index; - addClickToOption( Configuration.paste_subtree, - _configuration.getClickToTitle( Configuration.paste_subtree ) ); - if ( default_option == Configuration.paste_subtree ) { - selected_index = cb_index; + else { + if ( mf._non_lined_up_cladograms_rbmi != null ) { + mf._non_lined_up_cladograms_rbmi.setVisible( true ); + } + if ( mf._ext_node_dependent_cladogram_rbmi != null ) { + mf._ext_node_dependent_cladogram_rbmi.setVisible( true ); } - cb_index++; } - if ( _configuration.doDisplayClickToOption( Configuration.delete_subtree_or_node ) ) { - _delete_node_or_subtree_item = cb_index; - addClickToOption( Configuration.delete_subtree_or_node, - _configuration.getClickToTitle( Configuration.delete_subtree_or_node ) ); - if ( default_option == Configuration.delete_subtree_or_node ) { - selected_index = cb_index; + if ( isDrawPhylogram() ) { + if ( mf._show_scale_cbmi != null ) { + mf._show_scale_cbmi.setVisible( true ); } - cb_index++; } - if ( _configuration.doDisplayClickToOption( Configuration.add_new_node ) ) { - _add_new_node_item = cb_index; - addClickToOption( Configuration.add_new_node, - _configuration.getClickToTitle( Configuration.add_new_node ) ); - if ( default_option == Configuration.add_new_node ) { - selected_index = cb_index; + else { + if ( mf._show_scale_cbmi != null ) { + mf._show_scale_cbmi.setVisible( false ); } - cb_index++; } - if ( _configuration.doDisplayClickToOption( Configuration.edit_node_data ) ) { - _edit_node_data_item = cb_index; - addClickToOption( Configuration.edit_node_data, - _configuration.getClickToTitle( Configuration.edit_node_data ) ); - if ( default_option == Configuration.edit_node_data ) { - selected_index = cb_index; + if ( getCurrentTreePanel() != null ) { + if ( ( getCurrentTreePanel().getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.CIRCULAR ) + || ( getCurrentTreePanel().getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.UNROOTED ) ) { + if ( mf._label_direction_cbmi != null ) { + mf._label_direction_cbmi.setVisible( true ); + } + } + else { + if ( mf._label_direction_cbmi != null ) { + mf._label_direction_cbmi.setVisible( false ); + } } - cb_index++; } } - // Set default selection and its action - _click_to_combobox.setSelectedIndex( selected_index ); - setClickToAction( selected_index ); } - private void setupDisplayCheckboxes() { - if ( _configuration.doDisplayOption( Configuration.display_as_phylogram ) ) { - addCheckbox( Configuration.display_as_phylogram, - _configuration.getDisplayTitle( Configuration.display_as_phylogram ) ); - setCheckbox( Configuration.display_as_phylogram, - _configuration.doCheckOption( Configuration.display_as_phylogram ) ); - } - if ( _configuration.doDisplayOption( Configuration.dynamically_hide_data ) ) { - addCheckbox( Configuration.dynamically_hide_data, - _configuration.getDisplayTitle( Configuration.dynamically_hide_data ) ); - setCheckbox( Configuration.dynamically_hide_data, - _configuration.doCheckOption( Configuration.dynamically_hide_data ) ); - } - if ( _configuration.doDisplayOption( Configuration.node_data_popup ) ) { - addCheckbox( Configuration.node_data_popup, _configuration.getDisplayTitle( Configuration.node_data_popup ) ); - setCheckbox( Configuration.node_data_popup, _configuration.doCheckOption( Configuration.node_data_popup ) ); - } - if ( _configuration.doDisplayOption( Configuration.display_internal_data ) ) { - addCheckbox( Configuration.display_internal_data, - _configuration.getDisplayTitle( Configuration.display_internal_data ) ); - setCheckbox( Configuration.display_internal_data, - _configuration.doCheckOption( Configuration.display_internal_data ) ); - } - if ( _configuration.doDisplayOption( Configuration.color_according_to_sequence ) ) { - addCheckbox( Configuration.color_according_to_sequence, - _configuration.getDisplayTitle( Configuration.color_according_to_sequence ) ); - setCheckbox( Configuration.color_according_to_sequence, - _configuration.doCheckOption( Configuration.color_according_to_sequence ) ); - } - if ( _configuration.doDisplayOption( Configuration.color_according_to_species ) ) { - addCheckbox( Configuration.color_according_to_species, - _configuration.getDisplayTitle( Configuration.color_according_to_species ) ); - setCheckbox( Configuration.color_according_to_species, - _configuration.doCheckOption( Configuration.color_according_to_species ) ); - } - if ( _configuration.doDisplayOption( Configuration.color_according_to_annotation ) ) { - addCheckbox( Configuration.color_according_to_annotation, - _configuration.getDisplayTitle( Configuration.color_according_to_annotation ) ); - setCheckbox( Configuration.color_according_to_annotation, - _configuration.doCheckOption( Configuration.color_according_to_annotation ) ); - } - if ( _configuration.doDisplayOption( Configuration.use_style ) ) { - addCheckbox( Configuration.use_style, _configuration.getDisplayTitle( Configuration.use_style ) ); - setCheckbox( Configuration.use_style, _configuration.doCheckOption( Configuration.use_style ) ); - } - if ( _configuration.doDisplayOption( Configuration.width_branches ) ) { - addCheckbox( Configuration.width_branches, _configuration.getDisplayTitle( Configuration.width_branches ) ); - setCheckbox( Configuration.width_branches, _configuration.doCheckOption( Configuration.width_branches ) ); - } - final JLabel label = new JLabel( "Display Data:" ); - label.setFont( ControlPanel.jcb_bold_font ); - if ( !getConfiguration().isUseNativeUI() ) { - label.setForeground( getConfiguration().getGuiCheckboxTextColor() ); + void showAnnotations() { + if ( _show_annotation != null ) { + _show_annotation.setSelected( true ); } - add( label ); - if ( _configuration.doDisplayOption( Configuration.show_node_names ) ) { - addCheckbox( Configuration.show_node_names, _configuration.getDisplayTitle( Configuration.show_node_names ) ); - setCheckbox( Configuration.show_node_names, _configuration.doCheckOption( Configuration.show_node_names ) ); + if ( _color_according_to_annotation != null ) { + _color_according_to_annotation.setSelected( true ); } - if ( _configuration.doDisplayOption( Configuration.show_tax_code ) ) { - addCheckbox( Configuration.show_tax_code, _configuration.getDisplayTitle( Configuration.show_tax_code ) ); - setCheckbox( Configuration.show_tax_code, _configuration.doCheckOption( Configuration.show_tax_code ) ); + if ( _color_acc_species != null ) { + _color_acc_species.setSelected( false ); } - if ( _configuration.doDisplayOption( Configuration.show_taxonomy_scientific_names ) ) { - addCheckbox( Configuration.show_taxonomy_scientific_names, - _configuration.getDisplayTitle( Configuration.show_taxonomy_scientific_names ) ); - setCheckbox( Configuration.show_taxonomy_scientific_names, - _configuration.doCheckOption( Configuration.show_taxonomy_scientific_names ) ); + if ( _color_acc_sequence != null ) { + _color_acc_sequence.setSelected( false ); } - if ( _configuration.doDisplayOption( Configuration.show_taxonomy_common_names ) ) { - addCheckbox( Configuration.show_taxonomy_common_names, - _configuration.getDisplayTitle( Configuration.show_taxonomy_common_names ) ); - setCheckbox( Configuration.show_taxonomy_common_names, - _configuration.doCheckOption( Configuration.show_taxonomy_common_names ) ); + _mainpanel.getCurrentTreePanel().repaint(); + } + + /** + * Fit entire tree into window. + */ + void showWhole() { + if ( ( _mainpanel.getCurrentScrollPane() == null ) + || _mainpanel.getCurrentTreePanel().getPhylogeny().isEmpty() ) { + return; } - if ( _configuration.doDisplayOption( Configuration.show_seq_names ) ) { - addCheckbox( Configuration.show_seq_names, _configuration.getDisplayTitle( Configuration.show_seq_names ) ); - setCheckbox( Configuration.show_seq_names, _configuration.doCheckOption( Configuration.show_seq_names ) ); + getCurrentTreePanel().updateSetOfCollapsedExternalNodes(); + displayedPhylogenyMightHaveChanged( true ); + _mainpanel.getCurrentTreePanel().updateOvSettings(); + _mainpanel.getCurrentTreePanel().validate(); + _mainpanel.validate(); + _mainpanel.getCurrentTreePanel().calcParametersForPainting( _mainpanel.getSizeOfViewport().width, + _mainpanel.getSizeOfViewport().height ); + _mainpanel.getCurrentTreePanel().resetPreferredSize(); + _mainpanel.adjustJScrollPane(); + _mainpanel.getCurrentTreePanel().repaint(); + _mainpanel.getCurrentTreePanel().validate(); + _mainpanel.validate(); + _mainpanel.getCurrentTreePanel().calcParametersForPainting( _mainpanel.getSizeOfViewport().width, + _mainpanel.getSizeOfViewport().height ); + _mainpanel.getCurrentTreePanel().resetPreferredSize(); + _mainpanel.adjustJScrollPane(); + _mainpanel.getCurrentTreePanel().repaint(); + _mainpanel.getCurrentTreePanel().updateOvSizes(); + } + + void showWholeAll() { + for( final TreePanel tree_panel : _mainpanel.getTreePanels() ) { + if ( tree_panel != null ) { + tree_panel.validate(); + tree_panel.calcParametersForPainting( _mainpanel.getSizeOfViewport().width, + _mainpanel.getSizeOfViewport().height ); + tree_panel.resetPreferredSize(); + tree_panel.repaint(); + } } - if ( _configuration.doDisplayOption( Configuration.show_gene_names ) ) { - addCheckbox( Configuration.show_gene_names, _configuration.getDisplayTitle( Configuration.show_gene_names ) ); - setCheckbox( Configuration.show_gene_names, _configuration.doCheckOption( Configuration.show_gene_names ) ); + } + + // Create header for click-to combo box. + void startClickToOptions() { + final JLabel spacer = new JLabel( "" ); + spacer.setFont( ControlPanel.jcb_font ); + add( spacer ); + _click_to_label = new JLabel( "Click on Node to:" ); + add( customizeLabel( _click_to_label, getConfiguration() ) ); + _click_to_combobox = new JComboBox(); + _click_to_combobox.setFocusable( false ); + _click_to_combobox.setMaximumRowCount( 14 ); + _click_to_combobox.setFont( ControlPanel.js_font ); + if ( !_configuration.isUseNativeUI() ) { + _click_to_combobox.setBackground( getConfiguration().getGuiBackgroundColor() ); } - if ( _configuration.doDisplayOption( Configuration.show_seq_symbols ) ) { - addCheckbox( Configuration.show_seq_symbols, - _configuration.getDisplayTitle( Configuration.show_seq_symbols ) ); - setCheckbox( Configuration.show_seq_symbols, _configuration.doCheckOption( Configuration.show_seq_symbols ) ); + // don't add listener until all items are set (or each one will trigger + // an event) + // click_to_list.addActionListener(this); + add( _click_to_combobox ); + // Correlates option names to titles + _all_click_to_names = new HashMap(); + _click_to_names = new ArrayList(); + } + + void tabChanged() { + if ( getMainPanel().getTabbedPane().getTabCount() > 0 ) { + if ( getCurrentTreePanel().isPhyHasBranchLengths() + && ( getCurrentTreePanel().getPhylogenyGraphicsType() != PHYLOGENY_GRAPHICS_TYPE.CIRCULAR ) ) { + setDrawPhylogramEnabled( true ); + setDrawPhylogram( isDrawPhylogram() ); + } + else { + setDrawPhylogramEnabled( false ); + setDrawPhylogram( false ); + } + if ( getMainPanel().getMainFrame() == null ) { + // Must be "E" applet version. + final ArchaeopteryxE e = ( ArchaeopteryxE ) ( ( MainPanelApplets ) getMainPanel() ).getApplet(); + e.setSelectedTypeInTypeMenu( e.getCurrentTreePanel().getPhylogenyGraphicsType() ); + } + else { + getMainPanel().getMainFrame() + .setSelectedTypeInTypeMenu( getMainPanel().getCurrentTreePanel().getPhylogenyGraphicsType() ); + } + getMainPanel().getCurrentTreePanel().updateSubSuperTreeButton(); + getMainPanel().getControlPanel().search0(); + getMainPanel().getControlPanel().search1(); + getMainPanel().getControlPanel().updateDomainStructureEvaluethresholdDisplay(); + getMainPanel().getControlPanel().updateDepthCollapseDepthDisplay(); + getMainPanel().getControlPanel().updateRankCollapseRankDisplay(); + getSequenceRelationTypeBox().removeAllItems(); + for( final SequenceRelation.SEQUENCE_RELATION_TYPE type : getMainPanel().getCurrentPhylogeny() + .getRelevantSequenceRelationTypes() ) { + _sequence_relation_type_box.addItem( type ); + } + getMainPanel().getCurrentTreePanel().repaint(); + //setSequenceRelationQueries( getMainPanel().getCurrentPhylogeny().getSequenceRelationQueries() ); + // according to GUILHEM the line above can be removed. } - if ( _configuration.doDisplayOption( Configuration.show_sequence_acc ) ) { - addCheckbox( Configuration.show_sequence_acc, - _configuration.getDisplayTitle( Configuration.show_sequence_acc ) ); - setCheckbox( Configuration.show_sequence_acc, - _configuration.doCheckOption( Configuration.show_sequence_acc ) ); + } + + /** + * Uncollapse all nodes. + */ + final void uncollapseAll( final TreePanel tp ) { + final Phylogeny t = tp.getPhylogeny(); + if ( ( t != null ) && !t.isEmpty() ) { + for( final PhylogenyNodeIterator iter = t.iteratorPreorder(); iter.hasNext(); ) { + final PhylogenyNode node = iter.next(); + node.setCollapse( false ); + } + tp.resetNodeIdToDistToLeafMap(); + tp.updateSetOfCollapsedExternalNodes(); + t.recalculateNumberOfExternalDescendants( false ); + tp.setNodeInPreorderToNull(); + t.clearHashIdToNodeMap(); + tp.resetDepthCollapseDepthValue(); + tp.resetRankCollapseRankValue(); + showWhole(); } - if ( _configuration.doDisplayOption( Configuration.show_annotation ) ) { - addCheckbox( Configuration.show_annotation, _configuration.getDisplayTitle( Configuration.show_annotation ) ); - setCheckbox( Configuration.show_annotation, _configuration.doCheckOption( Configuration.show_annotation ) ); + } + + final void updateDomainStructureEvaluethresholdDisplay() { + if ( _domain_structure_evalue_thr_tf != null ) { + _domain_structure_evalue_thr_tf + .setText( "10^" + getMainPanel().getCurrentTreePanel().getDomainStructureEvalueThresholdExp() ); } - if ( _configuration.doDisplayOption( Configuration.show_binary_characters ) ) { - addCheckbox( Configuration.show_binary_characters, - _configuration.getDisplayTitle( Configuration.show_binary_characters ) ); - setCheckbox( Configuration.show_binary_characters, - _configuration.doCheckOption( Configuration.show_binary_characters ) ); + } + + private final String obtainDepthCollapseDepthValue() { + if ( getMainPanel().getCurrentTreePanel() == null ) { + return ""; } - if ( _configuration.doDisplayOption( Configuration.show_binary_character_counts ) ) { - addCheckbox( Configuration.show_binary_character_counts, - _configuration.getDisplayTitle( Configuration.show_binary_character_counts ) ); - setCheckbox( Configuration.show_binary_character_counts, - _configuration.doCheckOption( Configuration.show_binary_character_counts ) ); + final TreePanel tp = getMainPanel().getCurrentTreePanel(); + final Phylogeny p = tp.getPhylogeny(); + if ( ( p == null ) || ( p.getNumberOfExternalNodes() < 3 ) ) { + return "off"; } - if ( _configuration.doDisplayOption( Configuration.show_domain_architectures ) ) { - addCheckbox( Configuration.show_domain_architectures, - _configuration.getDisplayTitle( Configuration.show_domain_architectures ) ); - setCheckbox( Configuration.show_domain_architectures, - _configuration.doCheckOption( Configuration.show_domain_architectures ) ); + else if ( tp.getDepthCollapseDepthValue() < 0 ) { + tp.setDepthCollapseDepthValue( PhylogenyMethods.calculateMaxDepth( p ) ); + return "off"; } - if ( _configuration.doDisplayOption( Configuration.write_confidence_values ) ) { - addCheckbox( Configuration.write_confidence_values, - _configuration.getDisplayTitle( Configuration.write_confidence_values ) ); - setCheckbox( Configuration.write_confidence_values, - _configuration.doCheckOption( Configuration.write_confidence_values ) ); + else if ( tp.getDepthCollapseDepthValue() == PhylogenyMethods.calculateMaxDepth( p ) ) { + return "off"; } - if ( _configuration.doDisplayOption( Configuration.write_events ) ) { - addCheckbox( Configuration.write_events, _configuration.getDisplayTitle( Configuration.write_events ) ); - setCheckbox( Configuration.write_events, _configuration.doCheckOption( Configuration.write_events ) ); + return String.valueOf( tp.getDepthCollapseDepthValue() ); + } + + private final String obtainRankCollapseDepthValue() { + if ( getMainPanel().getCurrentTreePanel() == null ) { + return ""; } - if ( _configuration.doDisplayOption( Configuration.show_vector_data ) ) { - addCheckbox( Configuration.show_vector_data, - _configuration.getDisplayTitle( Configuration.show_vector_data ) ); - setCheckbox( Configuration.show_vector_data, _configuration.doCheckOption( Configuration.show_vector_data ) ); + final TreePanel tp = getMainPanel().getCurrentTreePanel(); + final Phylogeny p = tp.getPhylogeny(); + if ( ( p == null ) || ( p.getNumberOfExternalNodes() < 3 ) ) { + return "off"; } - if ( _configuration.doDisplayOption( Configuration.show_properties ) ) { - addCheckbox( Configuration.show_properties, _configuration.getDisplayTitle( Configuration.show_properties ) ); - setCheckbox( Configuration.show_properties, _configuration.doCheckOption( Configuration.show_properties ) ); + else { + final String ranks[] = PhylogenyMethods.obtainPresentRanksSorted( p ); + if ( ranks.length < 1 ) { + return "off"; + } + else if ( tp.getRankCollapseRankValue() < 0 ) { + tp.setRankCollapseRankValue( ranks.length - 1 ); + return "off"; + } + else if ( tp.getRankCollapseRankValue() == ( ranks.length - 1 ) ) { + return "off"; + } } - if ( _configuration.doDisplayOption( Configuration.show_taxonomy_images ) ) { - addCheckbox( Configuration.show_taxonomy_images, - _configuration.getDisplayTitle( Configuration.show_taxonomy_images ) ); - setCheckbox( Configuration.show_taxonomy_images, - _configuration.doCheckOption( Configuration.show_taxonomy_images ) ); + return String.valueOf( tp.getRankCollapseRankValue() ); + } + + final void updateDepthCollapseDepthDisplay() { + if ( _depth_collapse_depth_tf != null ) { + _depth_collapse_depth_tf.setText( " " + obtainDepthCollapseDepthValue() ); } } - private void setVisibilityOfDomainStrucureControls() { - if ( _zoom_in_domain_structure != null ) { - if ( isShowDomainArchitectures() ) { - _domain_display_label.setVisible( true ); - _zoom_in_domain_structure.setVisible( true ); - _zoom_out_domain_structure.setVisible( true ); - _decr_domain_structure_evalue_thr.setVisible( true ); - _incr_domain_structure_evalue_thr.setVisible( true ); - _domain_structure_evalue_thr_tf.setVisible( true ); - if ( getMainPanel().getMainFrame()._right_line_up_domains_cbmi != null ) { - getMainPanel().getMainFrame()._right_line_up_domains_cbmi.setVisible( true ); - } - if ( getMainPanel().getMainFrame()._show_domain_labels != null ) { - getMainPanel().getMainFrame()._show_domain_labels.setVisible( true ); - } + final void updateRankCollapseRankDisplay() { + if ( _rank_collapse_depth_tf != null ) { + final String r = obtainRankCollapseDepthValue(); + if ( r.equals( "off" ) ) { + _rank_collapse_depth_tf.setText( " off" ); + _rank_collapse_depth_tf.setToolTipText( "the current taxonomic rank threshold" ); } else { - _domain_display_label.setVisible( false ); - _zoom_in_domain_structure.setVisible( false ); - _zoom_out_domain_structure.setVisible( false ); - _decr_domain_structure_evalue_thr.setVisible( false ); - _incr_domain_structure_evalue_thr.setVisible( false ); - _domain_structure_evalue_thr_tf.setVisible( false ); - if ( getMainPanel().getMainFrame()._right_line_up_domains_cbmi != null ) { - getMainPanel().getMainFrame()._right_line_up_domains_cbmi.setVisible( false ); - } - if ( getMainPanel().getMainFrame()._show_domain_labels != null ) { - getMainPanel().getMainFrame()._show_domain_labels.setVisible( false ); - } + final String ranks[] = PhylogenyMethods + .obtainPresentRanksSorted( getMainPanel().getCurrentTreePanel().getPhylogeny() ); + final int rr = Integer.parseInt( r ); + _rank_collapse_depth_tf.setText( ranks[ rr ] ); + _rank_collapse_depth_tf.setToolTipText( ( rr + 1 ) + "/" + ( ranks.length - 1 ) + ": " + + ranks[ Integer.parseInt( r ) ] ); } } } - void setVisibilityOfX() { - try { - if ( ( getCurrentTreePanel() != null ) && ( getCurrentTreePanel().getPhylogeny() != null ) ) { - if ( AptxUtil.isHasAtLeastOneBranchWithSupportSD( getCurrentTreePanel().getPhylogeny() ) ) { - if ( getMainPanel().getMainFrame()._show_confidence_stddev_cbmi != null ) { - getMainPanel().getMainFrame()._show_confidence_stddev_cbmi.setVisible( true ); - } - } - else { - if ( getMainPanel().getMainFrame()._show_confidence_stddev_cbmi != null ) { - getMainPanel().getMainFrame()._show_confidence_stddev_cbmi.setVisible( false ); - } - } - if ( AptxUtil.isHasAtLeastOneNodeWithScientificName( getCurrentTreePanel().getPhylogeny() ) ) { - if ( getMainPanel().getMainFrame()._abbreviate_scientific_names != null ) { - getMainPanel().getMainFrame()._abbreviate_scientific_names.setVisible( true ); - } - } - else { - if ( getMainPanel().getMainFrame()._abbreviate_scientific_names != null ) { - getMainPanel().getMainFrame()._abbreviate_scientific_names.setVisible( false ); - } - } - if ( AptxUtil.isHasAtLeastOneNodeWithSequenceAnnotation( getCurrentTreePanel().getPhylogeny() ) ) { - if ( getMainPanel().getMainFrame()._show_annotation_ref_source != null ) { - getMainPanel().getMainFrame()._show_annotation_ref_source.setVisible( true ); - } - } - else { - if ( getMainPanel().getMainFrame()._show_annotation_ref_source != null ) { - getMainPanel().getMainFrame()._show_annotation_ref_source.setVisible( false ); - } - } - } - if ( isDrawPhylogram() - || ( ( getCurrentTreePanel() != null ) && ( ( getCurrentTreePanel().getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.CIRCULAR ) || ( getCurrentTreePanel() - .getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.UNROOTED ) ) ) ) { - if ( getMainPanel().getMainFrame()._non_lined_up_cladograms_rbmi != null ) { - getMainPanel().getMainFrame()._non_lined_up_cladograms_rbmi.setVisible( false ); - } - if ( getMainPanel().getMainFrame()._uniform_cladograms_rbmi != null ) { - getMainPanel().getMainFrame()._uniform_cladograms_rbmi.setVisible( false ); - } - if ( getMainPanel().getMainFrame()._ext_node_dependent_cladogram_rbmi != null ) { - getMainPanel().getMainFrame()._ext_node_dependent_cladogram_rbmi.setVisible( false ); - } - } - else { - if ( getMainPanel().getMainFrame()._non_lined_up_cladograms_rbmi != null ) { - getMainPanel().getMainFrame()._non_lined_up_cladograms_rbmi.setVisible( true ); - } - if ( getMainPanel().getMainFrame()._uniform_cladograms_rbmi != null ) { - getMainPanel().getMainFrame()._uniform_cladograms_rbmi.setVisible( true ); - } - if ( getMainPanel().getMainFrame()._ext_node_dependent_cladogram_rbmi != null ) { - getMainPanel().getMainFrame()._ext_node_dependent_cladogram_rbmi.setVisible( true ); - } - } - if ( isDrawPhylogram() ) { - if ( getMainPanel().getMainFrame()._show_scale_cbmi != null ) { - getMainPanel().getMainFrame()._show_scale_cbmi.setVisible( true ); - } - } - else { - if ( getMainPanel().getMainFrame()._show_scale_cbmi != null ) { - getMainPanel().getMainFrame()._show_scale_cbmi.setVisible( false ); - } - } - if ( getCurrentTreePanel() != null ) { - if ( ( getCurrentTreePanel().getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.CIRCULAR ) - || ( getCurrentTreePanel().getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.UNROOTED ) ) { - if ( getMainPanel().getMainFrame()._label_direction_cbmi != null ) { - getMainPanel().getMainFrame()._label_direction_cbmi.setVisible( true ); - } - if ( getMainPanel().getMainFrame()._show_branch_length_values_cbmi != null ) { - getMainPanel().getMainFrame()._show_branch_length_values_cbmi.setVisible( false ); - } - } - else { - if ( getMainPanel().getMainFrame()._label_direction_cbmi != null ) { - getMainPanel().getMainFrame()._label_direction_cbmi.setVisible( false ); - } - if ( getMainPanel().getMainFrame()._show_branch_length_values_cbmi != null ) { - getMainPanel().getMainFrame()._show_branch_length_values_cbmi.setVisible( true ); - } - } - } + final void zoomInX( final float factor, final float x_correction_factor ) { + final JScrollBar sb = getMainPanel().getCurrentScrollPane().getHorizontalScrollBar(); + final TreePanel treepanel = getMainPanel().getCurrentTreePanel(); + treepanel.multiplyUrtFactor( 1f ); + if ( ( treepanel.getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.CIRCULAR ) + || ( treepanel.getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.UNROOTED ) + || isDrawPhylogram( getMainPanel().getCurrentTabIndex() ) + || ( getOptions().getCladogramType() == CLADOGRAM_TYPE.NON_LINED_UP ) ) { + final double x = ( sb.getMaximum() - sb.getMinimum() ) + / ( sb.getValue() + ( sb.getVisibleAmount() / 2.0 ) ); + treepanel.setXdistance( ( treepanel.getXdistance() * factor ) ); + treepanel.setXcorrectionFactor( ( treepanel.getXcorrectionFactor() * x_correction_factor ) ); + getMainPanel().adjustJScrollPane(); + treepanel.resetPreferredSize(); + getMainPanel().getCurrentScrollPane().getViewport().validate(); + sb.setValue( ForesterUtil + .roundToInt( ( ( sb.getMaximum() - sb.getMinimum() ) / x ) - ( sb.getVisibleAmount() / 2.0 ) ) ); } - catch ( final Exception ignore ) { - //not important... + else { + final int x = sb.getMaximum() - sb.getMinimum() - sb.getVisibleAmount() - sb.getValue(); + treepanel.setXdistance( ( treepanel.getXdistance() * factor ) ); + treepanel.setXcorrectionFactor( ( treepanel.getXcorrectionFactor() * x_correction_factor ) ); + getMainPanel().adjustJScrollPane(); + treepanel.resetPreferredSize(); + getMainPanel().getCurrentScrollPane().getViewport().validate(); + sb.setValue( sb.getMaximum() - sb.getMinimum() - x - sb.getVisibleAmount() ); } + treepanel.resetPreferredSize(); + treepanel.updateOvSizes(); } - void setVisibilityOfDomainStrucureCB() { - try { - if ( ( getCurrentTreePanel() != null ) - && ( ( getCurrentTreePanel().getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.CIRCULAR ) || ( getCurrentTreePanel() - .getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.UNROOTED ) ) ) { - if ( getMainPanel().getMainFrame()._right_line_up_domains_cbmi != null ) { - getMainPanel().getMainFrame()._right_line_up_domains_cbmi.setVisible( false ); - } - if ( getMainPanel().getMainFrame()._show_domain_labels != null ) { - getMainPanel().getMainFrame()._show_domain_labels.setVisible( false ); - } - } - else if ( isShowDomainArchitectures() ) { - if ( getMainPanel().getMainFrame()._right_line_up_domains_cbmi != null ) { - getMainPanel().getMainFrame()._right_line_up_domains_cbmi.setVisible( true ); - } - if ( getMainPanel().getMainFrame()._show_domain_labels != null ) { - getMainPanel().getMainFrame()._show_domain_labels.setVisible( true ); - } + final void zoomInY( final float factor ) { + final JScrollBar sb = getMainPanel().getCurrentScrollPane().getVerticalScrollBar(); + final TreePanel treepanel = getMainPanel().getCurrentTreePanel(); + treepanel.multiplyUrtFactor( 1.1f ); + final double x = ( sb.getMaximum() - sb.getMinimum() ) / ( sb.getValue() + ( sb.getVisibleAmount() / 2.0 ) ); + treepanel.setYdistance( ( treepanel.getYdistance() * factor ) ); + getMainPanel().adjustJScrollPane(); + treepanel.resetPreferredSize(); + getMainPanel().getCurrentScrollPane().getViewport().validate(); + sb.setValue( ForesterUtil + .roundToInt( ( ( sb.getMaximum() - sb.getMinimum() ) / x ) - ( sb.getVisibleAmount() / 2.0 ) ) ); + treepanel.resetPreferredSize(); + treepanel.updateOvSizes(); + } + + final void zoomOutX( final float factor, final float x_correction_factor ) { + final TreePanel treepanel = getMainPanel().getCurrentTreePanel(); + treepanel.multiplyUrtFactor( 1f ); + if ( ( treepanel.getXdistance() * factor ) > 0.0 ) { + final JScrollBar sb = getMainPanel().getCurrentScrollPane().getHorizontalScrollBar(); + if ( ( treepanel.getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.CIRCULAR ) + || ( treepanel.getPhylogenyGraphicsType() == PHYLOGENY_GRAPHICS_TYPE.UNROOTED ) + || isDrawPhylogram( getMainPanel().getCurrentTabIndex() ) + || ( getOptions().getCladogramType() == CLADOGRAM_TYPE.NON_LINED_UP ) ) { + getMainPanel().adjustJScrollPane(); + treepanel.resetPreferredSize(); + getMainPanel().getCurrentScrollPane().getViewport().validate(); + final double x = ( sb.getMaximum() - sb.getMinimum() ) + / ( sb.getValue() + ( sb.getVisibleAmount() / 2.0 ) ); + treepanel.setXdistance( ( treepanel.getXdistance() * factor ) ); + treepanel.setXcorrectionFactor( ( treepanel.getXcorrectionFactor() * x_correction_factor ) ); + getMainPanel().adjustJScrollPane(); + treepanel.resetPreferredSize(); + getMainPanel().getCurrentScrollPane().getViewport().validate(); + sb.setValue( ForesterUtil.roundToInt( ( ( sb.getMaximum() - sb.getMinimum() ) / x ) + - ( sb.getVisibleAmount() / 2.0 ) ) ); } else { - if ( getMainPanel().getMainFrame()._right_line_up_domains_cbmi != null ) { - getMainPanel().getMainFrame()._right_line_up_domains_cbmi.setVisible( false ); - } - if ( getMainPanel().getMainFrame()._show_domain_labels != null ) { - getMainPanel().getMainFrame()._show_domain_labels.setVisible( false ); + final int x = sb.getMaximum() - sb.getMinimum() - sb.getVisibleAmount() - sb.getValue(); + treepanel.setXdistance( treepanel.getXdistance() * factor ); + treepanel.setXcorrectionFactor( treepanel.getXcorrectionFactor() * x_correction_factor ); + if ( x > 0 ) { + getMainPanel().adjustJScrollPane(); + treepanel.resetPreferredSize(); + getMainPanel().getCurrentScrollPane().getViewport().validate(); + sb.setValue( sb.getMaximum() - sb.getMinimum() - x - sb.getVisibleAmount() ); } } + treepanel.resetPreferredSize(); + treepanel.updateOvSizes(); } - catch ( final Exception ignore ) { - //not important... + } + + final void zoomOutY( final float factor ) { + final TreePanel treepanel = getMainPanel().getCurrentTreePanel(); + treepanel.multiplyUrtFactor( 0.9f ); + if ( ( treepanel.getYdistance() * factor ) > 0.0 ) { + final JScrollBar sb = getMainPanel().getCurrentScrollPane().getVerticalScrollBar(); + final double x = ( sb.getMaximum() - sb.getMinimum() ) + / ( sb.getValue() + ( sb.getVisibleAmount() / 2.0 ) ); + treepanel.setYdistance( ( treepanel.getYdistance() * factor ) ); + getMainPanel().adjustJScrollPane(); + treepanel.resetPreferredSize(); + getMainPanel().getCurrentScrollPane().getViewport().validate(); + sb.setValue( ForesterUtil + .roundToInt( ( ( sb.getMaximum() - sb.getMinimum() ) / x ) - ( sb.getVisibleAmount() / 2.0 ) ) ); + treepanel.resetPreferredSize(); + treepanel.updateOvSizes(); } } - static JLabel customizeLabel( final JLabel label, final Configuration configuration ) { + final static JLabel customizeLabel( final JLabel label, final Configuration configuration ) { label.setFont( ControlPanel.jcb_bold_font ); if ( !configuration.isUseNativeUI() ) { label.setForeground( configuration.getGuiCheckboxTextColor() ); @@ -2432,32 +2732,7 @@ final class ControlPanel extends JPanel implements ActionListener { return label; } - enum NodeClickAction { - ADD_NEW_NODE, - BLAST, - COLLAPSE, - COLOR_SUBTREE, - COPY_SUBTREE, - CUT_SUBTREE, - DELETE_NODE_OR_SUBTREE, - EDIT_NODE_DATA, - GET_EXT_DESC_DATA, - OPEN_PDB_WEB, - OPEN_SEQ_WEB, - OPEN_TAX_WEB, - PASTE_SUBTREE, - REROOT, - SELECT_NODES, - SHOW_DATA, - SORT_DESCENDENTS, - SUBTREE, - SWAP, - CHANGE_NODE_FONT, - COLOR_NODE_FONT; - } - - public boolean isShowSequences() { - // TODO Auto-generated method stub - return true; + final public JCheckBox getUseBranchWidthsCb() { + return _width_branches; } }