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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
use {Color, Widget, Ui};
use image;
use position::{Dimension, Rect};
use widget;
#[derive(Copy, Clone, WidgetCommon_)]
pub struct Image {
#[conrod(common_builder)]
pub common: widget::CommonBuilder,
pub image_id: image::Id,
pub src_rect: Option<Rect>,
pub style: Style,
}
#[derive(Copy, Clone)]
pub struct State {
pub src_rect: Option<Rect>,
pub image_id: image::Id,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, WidgetStyle_)]
pub struct Style {
#[conrod(default = "None")]
pub maybe_color: Option<Option<Color>>,
}
impl Image {
pub fn new(image_id: image::Id) -> Self {
Image {
common: widget::CommonBuilder::default(),
image_id: image_id,
src_rect: None,
style: Style::default(),
}
}
pub fn source_rectangle(mut self, rect: Rect) -> Self {
self.src_rect = Some(rect);
self
}
builder_methods!{
pub color { style.maybe_color = Some(Option<Color>) }
}
}
impl Widget for Image {
type State = State;
type Style = Style;
type Event = ();
fn init_state(&self, _: widget::id::Generator) -> Self::State {
State {
src_rect: None,
image_id: self.image_id,
}
}
fn style(&self) -> Self::Style {
self.style.clone()
}
fn default_x_dimension(&self, ui: &Ui) -> Dimension {
match self.src_rect.as_ref() {
Some(rect) => Dimension::Absolute(rect.w()),
None => widget::default_x_dimension(self, ui),
}
}
fn default_y_dimension(&self, ui: &Ui) -> Dimension {
match self.src_rect.as_ref() {
Some(rect) => Dimension::Absolute(rect.h()),
None => widget::default_y_dimension(self, ui),
}
}
fn update(self, args: widget::UpdateArgs<Self>) -> Self::Event {
let widget::UpdateArgs { state, .. } = args;
let Image { image_id, src_rect, .. } = self;
if state.image_id != image_id {
state.update(|state| state.image_id = image_id);
}
if state.src_rect != src_rect {
state.update(|state| state.src_rect = src_rect);
}
}
}