in progress
[jalview.git] / forester / java / src / org / forester / archaeopteryx / Options.java
index 31c9873..083a6b1 100644 (file)
@@ -27,6 +27,9 @@ package org.forester.archaeopteryx;
 
 import java.awt.Font;
 
+import org.forester.phylogeny.data.NodeVisualization;
+import org.forester.phylogeny.data.NodeVisualization.NodeFill;
+import org.forester.phylogeny.data.NodeVisualization.NodeShape;
 import org.forester.util.ForesterUtil;
 
 /*
@@ -34,43 +37,44 @@ import org.forester.util.ForesterUtil;
  */
 final public class Options {
 
-    static final double             MIN_CONFIDENCE_DEFAULT = 0.0;
-    private boolean                 _show_branch_length_values;
-    private boolean                 _internal_number_are_confidence_for_nh_parsing;
-    private boolean                 _show_scale;
-    private boolean                 _show_overview;
-    private boolean                 _antialias_screen;
-    private boolean                 _antialias_print;
-    private boolean                 _graphics_export_visible_only;
-    private int                     _print_size_x;
-    private int                     _print_size_y;
-    private double                  _min_confidence_value;
-    private boolean                 _print_black_and_white;
-    private boolean                 _print_using_actual_size;
-    private boolean                 _graphics_export_using_actual_size;
-    private PHYLOGENY_GRAPHICS_TYPE _phylogeny_graphics_type;
-    private CLADOGRAM_TYPE          _cladogram_type;
-    private OVERVIEW_PLACEMENT_TYPE _ov_placement;
-    private NODE_LABEL_DIRECTION    _node_label_direction;
-    private Font                    _base_font;
-    private boolean                 _match_whole_terms_only;
-    private boolean                 _search_case_sensitive;
-    private float                   _print_line_width;
-    private boolean                 _inverse_search_result;
-    private double                  _scale_bar_length;
-    private short                   _number_of_digits_after_comma_for_confidence_values;
-    private short                   _number_of_digits_after_comma_for_branch_length_values;
-    private boolean                 _nh_parsing_replace_underscores;
-    private boolean                 _nh_parsing_extract_pfam_taxonomy_codes;
-    private boolean                 _editable;
-    private boolean                 _background_color_gradient;
-    private boolean                 _show_domain_labels;
-    private boolean                 _color_labels_same_as_parent_branch;
-    private boolean                 _abbreviate_scientific_names;
-    private NodeShape               _default_node_shape;
-    private NodeFill                _default_node_fill;
-    private short                   _default_node_shape_size;
-    private boolean                 _taxonomy_colorize_node_shapes_instead_of_labels;
+    static final double                 MIN_CONFIDENCE_DEFAULT = 0.0;
+    private boolean                     _show_branch_length_values;
+    private boolean                     _internal_number_are_confidence_for_nh_parsing;
+    private boolean                     _show_scale;
+    private boolean                     _show_overview;
+    private boolean                     _antialias_screen;
+    private boolean                     _antialias_print;
+    private boolean                     _graphics_export_visible_only;
+    private int                         _print_size_x;
+    private int                         _print_size_y;
+    private double                      _min_confidence_value;
+    private boolean                     _print_black_and_white;
+    private boolean                     _print_using_actual_size;
+    private boolean                     _graphics_export_using_actual_size;
+    private PHYLOGENY_GRAPHICS_TYPE     _phylogeny_graphics_type;
+    private CLADOGRAM_TYPE              _cladogram_type;
+    private OVERVIEW_PLACEMENT_TYPE     _ov_placement;
+    private NODE_LABEL_DIRECTION        _node_label_direction;
+    private Font                        _base_font;
+    private boolean                     _match_whole_terms_only;
+    private boolean                     _search_case_sensitive;
+    private float                       _print_line_width;
+    private boolean                     _inverse_search_result;
+    private double                      _scale_bar_length;
+    private short                       _number_of_digits_after_comma_for_confidence_values;
+    private short                       _number_of_digits_after_comma_for_branch_length_values;
+    private boolean                     _nh_parsing_replace_underscores;
+    private boolean                     _nh_parsing_extract_pfam_taxonomy_codes;
+    private boolean                     _editable;
+    private boolean                     _background_color_gradient;
+    private boolean                     _show_domain_labels;
+    private boolean                     _color_labels_same_as_parent_branch;
+    private boolean                     _abbreviate_scientific_names;
+    private NodeVisualization.NodeShape _default_node_shape;
+    private NodeVisualization.NodeFill  _default_node_fill;
+    private short                       _default_node_shape_size;
+    private boolean                     _taxonomy_colorize_node_shapes;
+    private boolean                     _show_default_node_shapes;
 
     private Options() {
         init();
@@ -84,11 +88,6 @@ final public class Options {
         return _cladogram_type;
     }
 
-    int getDefaultNodeBoxSize() {
-        // TODO make variable ~~
-        return 8;
-    }
-
     final NodeFill getDefaultNodeFill() {
         return _default_node_fill;
     }
@@ -142,10 +141,10 @@ final public class Options {
     }
 
     final private void init() {
-        _default_node_shape = NodeShape.NONE;
+        _default_node_shape = NodeShape.CIRCLE;
         _default_node_fill = NodeFill.GRADIENT;
         _default_node_shape_size = Constants.DEFAULT_NODE_SHAPE_SIZE_DEFAULT;
-        _taxonomy_colorize_node_shapes_instead_of_labels = false;
+        _taxonomy_colorize_node_shapes = false;
         _show_branch_length_values = false;
         _internal_number_are_confidence_for_nh_parsing = false;
         _show_scale = false;
@@ -154,6 +153,7 @@ final public class Options {
         _graphics_export_visible_only = false;
         _editable = true;
         _background_color_gradient = false;
+        _show_default_node_shapes = false;
         if ( Util.isUsOrCanada() ) {
             _print_size_x = Constants.US_LETTER_SIZE_X;
             _print_size_y = Constants.US_LETTER_SIZE_Y;
@@ -270,8 +270,8 @@ final public class Options {
         return _show_scale;
     }
 
-    boolean isTaxonomyColorizeNodeShapesInsteadOfLabels() {
-        return _taxonomy_colorize_node_shapes_instead_of_labels;
+    boolean isTaxonomyColorizeNodeShapes() {
+        return _taxonomy_colorize_node_shapes;
     }
 
     final void setAbbreviateScientificTaxonNames( final boolean abbreviate_scientific_names ) {
@@ -420,15 +420,23 @@ final public class Options {
         _show_scale = show_scale;
     }
 
-    void setTaxonomyColorizeNodeShapesInsteadOfLabels( final boolean taxonomy_colorize_node_shapes_instead_of_labels ) {
-        _taxonomy_colorize_node_shapes_instead_of_labels = taxonomy_colorize_node_shapes_instead_of_labels;
+    void setTaxonomyColorizeNodeShapes( final boolean taxonomy_colorize_node_shapes ) {
+        _taxonomy_colorize_node_shapes = taxonomy_colorize_node_shapes;
     }
 
     final static Options createDefaultInstance() {
         return new Options();
     }
 
-    final static Options createInstance( final Configuration configuration ) {
+    boolean isShowDefaultNodeShapes() {
+        return _show_default_node_shapes;
+    }
+
+    void setShowDefaultNodeShapes( final boolean show_default_node_shapes ) {
+        _show_default_node_shapes = show_default_node_shapes;
+    }
+
+    public final static Options createInstance( final Configuration configuration ) {
         final Options instance = createDefaultInstance();
         if ( configuration != null ) {
             instance.setAntialiasScreen( configuration.isAntialiasScreen() );
@@ -484,8 +492,8 @@ final public class Options {
             if ( configuration.getDefaultNodeShapeSize() >= 0 ) {
                 instance.setDefaultNodeShapeSize( configuration.getDefaultNodeShapeSize() );
             }
-            instance.setTaxonomyColorizeNodeShapesInsteadOfLabels( configuration
-                    .isTaxonomyColorizeNodeShapesInsteadOfLabels() );
+            instance.setTaxonomyColorizeNodeShapes( configuration.isTaxonomyColorizeNodeShapes() );
+            instance.setShowDefaultNodeShapes( configuration.isShowDefaultNodeShapes() );
         }
         return instance;
     }
@@ -498,14 +506,6 @@ final public class Options {
         HORIZONTAL, RADIAL;
     }
 
-    enum NodeFill {
-        NONE, GRADIENT, SOLID
-    }
-
-    enum NodeShape {
-        NONE, CIRCLE, RECTANGLE
-    }
-
     static enum OVERVIEW_PLACEMENT_TYPE {
         UPPER_LEFT( "upper left" ),
         UPPER_RIGHT( "upper right" ),