1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
use super::color::Color;

#[derive(Default, Debug, Clone)]
pub struct Fill {
    fill_type: String,
    rotation: i32,
    start_color: Option<Color>,
    end_color: Option<Color>
}
impl Fill {
    // Fill types

    pub const FILL_NONE: &'static str = "none";
    pub const FILL_SOLID: &'static str = "solid";
    pub const FILL_GRADIENT_LINEAR: &'static str = "linear";
    pub const FILL_GRADIENT_PATH: &'static str = "path";
    pub const FILL_PATTERN_DARKDOWN: &'static str = "darkDown";
    pub const FILL_PATTERN_DARKGRAY: &'static str = "darkGray";
    pub const FILL_PATTERN_DARKGRID: &'static str = "darkGrid";
    pub const FILL_PATTERN_DARKHORIZONTAL: &'static str = "darkHorizontal";
    pub const FILL_PATTERN_DARKTRELLIS: &'static str = "darkTrellis";
    pub const FILL_PATTERN_DARKUP: &'static str = "darkUp";
    pub const FILL_PATTERN_DARKVERTICAL: &'static str = "darkVertical";
    pub const FILL_PATTERN_GRAY0625: &'static str = "gray0625";
    pub const FILL_PATTERN_GRAY125: &'static str = "gray125";
    pub const FILL_PATTERN_LIGHTDOWN: &'static str = "lightDown";
    pub const FILL_PATTERN_LIGHTGRAY: &'static str = "lightGray";
    pub const FILL_PATTERN_LIGHTGRID: &'static str = "lightGrid";
    pub const FILL_PATTERN_LIGHTHORIZONTAL: &'static str = "lightHorizontal";
    pub const FILL_PATTERN_LIGHTTRELLIS: &'static str = "lightTrellis";
    pub const FILL_PATTERN_LIGHTUP: &'static str = "lightUp";
    pub const FILL_PATTERN_LIGHTVERTICAL: &'static str = "lightVertical";
    pub const FILL_PATTERN_MEDIUMGRAY: &'static str = "mediumGray";

    pub fn get_fill_type(&self)-> &str {
        &self.fill_type
    }
    pub(crate) fn set_fill_type(&mut self, value:String) {
        self.fill_type = value;
    }
    pub fn get_start_color(&self)-> &Option<Color> {
        &self.start_color
    }
    pub fn get_start_color_mut(&mut self)-> &mut Color {
        match self.start_color {
            Some(_) => {},
            None => self.set_start_color(Color::default())
        }
        self.start_color.as_mut().unwrap()
    }
    pub(crate) fn set_start_color(&mut self, value:Color) {
        self.start_color = Some(value);
    }
    pub fn get_end_color(&self)-> &Option<Color> {
        &self.end_color
    }
    pub fn get_end_color_mut(&mut self)-> &mut Color {
        match self.end_color {
            Some(_) => {},
            None => self.set_end_color(Color::default())
        }
        self.end_color.as_mut().unwrap()
    }
    pub(crate) fn set_end_color(&mut self, value:Color) {
        self.end_color = Some(value);
    }
    pub(crate) fn get_defalut_value() -> Fill {
        let mut def = Fill::default();
        def.set_fill_type(String::from(Self::FILL_NONE));
        def
    }
    pub(crate) fn get_defalut_value_2() -> Fill {
        let mut def = Fill::default();
        def.set_fill_type(String::from(Self::FILL_PATTERN_GRAY125));
        def
    }
    pub(crate) fn get_hash_code(&self)-> String {
        format!("{:x}", md5::compute(format!("{}{}{}{}",
            &self.fill_type,
            &self.rotation,
            match &self.start_color {Some(v) => {v.get_hash_code()}, None => {"None".into()}},
            match &self.end_color {Some(v) => {v.get_hash_code()}, None => {"None".into()}},
        )))
    }
}