logo
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
/// Internal namespace.
pub( crate ) mod private
{
  use crate::*;

  /// ChangerInterface of brush stroke.
  #[ allow( dead_code ) ]
  #[ derive( Debug, Clone ) ]
  pub struct DrawChanger
  {
    pub( crate ) id : Id,
    pub( crate ) context_changer : ContextChanger,
  }

  impl DrawChanger
  {
    /// Constructor.
    #[ inline ]
    pub( crate ) fn _new( mut context_changer : ContextChanger ) -> Self
    {
      let id = &mut context_changer.drawing;
      if id.is_none()
      {
        *id = Some( Id::new::< Self >() );
        DrawingChangeNew::new( id.unwrap().clone() ).add_to( &mut context_changer );
      }
      let id = context_changer.drawing.unwrap();
      Self
      {
        id,
        context_changer,
      }
    }
    /// ChangeInterface color.
    #[ inline ]
    pub fn rect( self ) -> RectChanger
    {
      let change = RectChanger::_new( self );
      change
    }
  }

  impl ChangerInterface for DrawChanger
  {
    type Parent = ContextChanger;
    type Root = ContextChanger;

    #[ inline ]
    fn context( self ) -> Self::Root
    {
      self.context_changer
    }

    #[ inline ]
    fn parent( &mut self ) -> &mut Self::Parent
    {
      &mut self.context_changer
    }

    #[ inline ]
    fn end( self ) -> Self::Parent
    {
      self.context_changer
    }

  }

  impl HasIdInterface for DrawChanger
  {
    #[ inline ]
    fn id( &self ) -> Id
    {
      self.context_changer.id()
    }
  }

}

crate::mod_interface!
{
  exposed use DrawChanger;
}