summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseancarroll <seanc28@gmail.com>2020-12-29 00:33:40 -0600
committerseancarroll <seanc28@gmail.com>2020-12-29 00:33:40 -0600
commit25bab5520132b76a9de7de8ea21f9a93912cec7b (patch)
tree06e7d9836073f3d0996bbc745a4fe21e808dae4c
parentb943a39052e39f1cf21b5184e347fc38b06eca86 (diff)
downloaddotavious-25bab5520132b76a9de7de8ea21f9a93912cec7b.zip
trying some usability changes for fill_color by accepting vec of tuples
-rw-r--r--src/lib.rs109
1 files changed, 99 insertions, 10 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 56bb96c..91c8d67 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -282,7 +282,6 @@ pub enum AttributeType {
Graph,
Node,
Edge,
- None
}
pub struct Graph<'a> {
@@ -442,7 +441,7 @@ impl<'a> GraphBuilder<'a> {
) -> &mut Self {
match attribute_type {
- AttributeType::Graph | AttributeType::None => {
+ AttributeType::Graph => {
if self.graph_attributes.is_none() {
self.graph_attributes = Some(GraphAttributeStatement::new());
}
@@ -495,7 +494,7 @@ impl<'a> GraphBuilder<'a> {
}
-trait GraphAttributes<'a> {
+pub trait GraphAttributes<'a> {
fn background(&mut self, background: String) -> &mut Self {
self.add_attribute("_background", AttributeText::attr(background))
@@ -586,10 +585,23 @@ trait GraphAttributes<'a> {
self
}
- /// Color used to fill the background, with a graident, of a node or cluster assuming
+ /// Color used to fill the background, with a gradient, of a node or cluster assuming
+ /// style=filled, or a filled arrowhead.
+ fn fill_color_with_colorlist(&mut self, fill_colors: ColorList) -> &mut Self {
+ Attributes::fill_color_with_colorlist(self.get_attributes_mut(), fill_colors);
+ self
+ }
+
+ /// Color used to fill the background, with a gradient, of a node or cluster assuming
/// style=filled, or a filled arrowhead.
- fn fill_colorlist(&mut self, fill_colors: ColorList) -> &mut Self {
- Attributes::fill_colorlist(self.get_attributes_mut(), fill_colors);
+ /// TODO: example
+ /// [crate::GraphAttributes::dpi]
+ fn fill_color_with_iter<I>(&mut self, fill_colors: I) -> &mut Self
+ where
+ I: IntoIterator,
+ I::Item: IntoWeightedColor<'a>,
+ {
+ Attributes::fill_color_with_iter(self.get_attributes_mut(), fill_colors);
self
}
@@ -1621,13 +1633,31 @@ trait NodeAttributes<'a> {
self.add_attribute("distortion", AttributeText::attr(distortion.to_string()))
}
- // color list
/// Color used to fill the background of a node or cluster assuming style=filled, or a filled arrowhead.
fn fill_color(&mut self, fill_color: Color) -> &mut Self {
Attributes::fill_color(self.get_attributes_mut(), fill_color);
self
}
+ /// Color used to fill the background, with a gradient, of a node or cluster assuming
+ /// style=filled, or a filled arrowhead.
+ fn fill_color_with_colorlist(&mut self, fill_colors: ColorList) -> &mut Self {
+ Attributes::fill_color_with_colorlist(self.get_attributes_mut(), fill_colors);
+ self
+ }
+
+ /// Color used to fill the background, with a gradient, of a node or cluster assuming
+ /// style=filled, or a filled arrowhead.
+ /// TODO: example
+ fn fill_color_with_iter<I>(&mut self, fill_colors: I) -> &mut Self
+ where
+ I: IntoIterator,
+ I::Item: IntoWeightedColor<'a>,
+ {
+ Attributes::fill_color_with_iter(self.get_attributes_mut(), fill_colors);
+ self
+ }
+
/// If true, the node size is specified by the values of the width and height attributes only and
/// is not expanded to contain the text label.
/// There will be a warning if the label (with margin) cannot fit within these limits.
@@ -2665,6 +2695,7 @@ pub fn default_options() -> Vec<RenderOption> {
}
// TODO: is this a good representation of color?
+#[derive(Copy, Clone, PartialEq, Debug)]
pub enum Color<'a> {
RGB {
red: u8,
@@ -2751,6 +2782,25 @@ impl<'a> ColorList<'a> {
}
}
+/// Convert an element like `(i, j)` or `(i, j, w)` into
+/// a triple of source, target, edge weight.
+///
+/// For `Graph::from_edges` and `GraphMap::from_edges`.
+pub trait IntoWeightedColor<'a> {
+ fn into_weighted_color(self) -> WeightedColor<'a>;
+}
+
+impl<'a> IntoWeightedColor<'a> for &'a (Color<'a>, Option<f32>)
+{
+ fn into_weighted_color(self) -> WeightedColor<'a> {
+ let (s, t) = *self;
+ WeightedColor {
+ color: s,
+ weight: t
+ }
+ }
+}
+
/// The style for a node or edge.
/// See <http://www.graphviz.org/doc/info/attrs.html#k:style> for descriptions.
/// Note that some of these are not valid for edges.
@@ -2808,10 +2858,26 @@ impl Attributes {
Self::add_attribute(attributes, "fillcolor", AttributeText::quotted(fill_color.to_dot_string()))
}
- fn fill_colorlist(attributes: &mut IndexMap<String, AttributeText>, fill_colors: ColorList) {
+ fn fill_color_with_colorlist(attributes: &mut IndexMap<String, AttributeText>, fill_colors: ColorList) {
Self::add_attribute(attributes, "fillcolor", AttributeText::quotted(fill_colors.to_dot_string()))
}
+ fn fill_color_with_iter<'a, I>(attributes: &mut IndexMap<String, AttributeText>, fill_colors: I)
+ where
+ I: IntoIterator,
+ I::Item: IntoWeightedColor<'a>,
+ {
+ let colors:Vec<WeightedColor> = fill_colors.into_iter()
+ .map(|e| e.into_weighted_color())
+ .collect();
+
+ let color_list = ColorList {
+ colors
+ };
+
+ Self::add_attribute(attributes, "fillcolor", AttributeText::quotted(color_list.to_dot_string()))
+ }
+
fn font_color(attributes: &mut IndexMap<String, AttributeText>, font_color: Color) {
Self::add_attribute(attributes, "fontcolor", AttributeText::quotted(font_color.to_dot_string()))
}
@@ -2910,8 +2976,6 @@ impl Attributes {
}
}
-// fn test_input<Ty>(g: Graph<Ty>) -> io::Result<String>
-// where Ty: GraphType
fn test_input(g: Graph) -> io::Result<String>
{
let mut writer = Vec::new();
@@ -3103,6 +3167,31 @@ fn colorlist_dot_string() {
assert_eq!("yellow;0.3:blue", dot_string);
}
+// TODO: improve test
+#[test]
+fn colorlist2_dot_string() {
+ let graph_attributes = GraphAttributeStatementBuilder::new()
+ .fill_color_with_iter(&[
+ (Color::Named("yellow"), Some(0.3)),
+ (Color::Named("blue"), None)
+ ])
+ .build();
+
+ let g = GraphBuilder::new_directed(Some("graph_attributes".to_string()))
+ .add_graph_attributes(graph_attributes)
+ .build();
+
+ let r = test_input(g);
+
+ assert_eq!(
+ r.unwrap(),
+ r#"digraph graph_attributes {
+ graph [fillcolor="yellow;0.3:blue"];
+}
+"#
+ );
+}
+
#[test]
fn graph_attributes() {