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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
use kas::text::format::{EditableText, FormattableText};
use kas::theme::TextClass;
use kas::{event, prelude::*};
impl_scope! {
#[impl_default(where T: Default)]
#[derive(Clone, Debug)]
#[widget]
pub struct Label<T: FormattableText + 'static> {
core: widget_core!(),
class: TextClass = TextClass::Label(true),
label: Text<T>,
}
impl Self {
#[inline]
pub fn new(label: T) -> Self {
Label {
core: Default::default(),
class: TextClass::Label(true),
label: Text::new(label),
}
}
#[inline]
pub fn class(&self) -> TextClass {
self.class
}
#[inline]
pub fn set_class(&mut self, class: TextClass) {
self.class = class;
}
#[inline]
pub fn with_class(mut self, class: TextClass) -> Self {
self.class = class;
self
}
#[inline]
pub fn wrap(&self) -> bool {
self.class.multi_line()
}
#[inline]
pub fn set_wrap(&mut self, wrap: bool) {
self.class = TextClass::Label(wrap);
}
#[inline]
pub fn with_wrap(mut self, wrap: bool) -> Self {
self.class = TextClass::Label(wrap);
self
}
#[inline]
pub fn text(&self) -> &Text<T> {
&self.label
}
pub fn set_text(&mut self, text: T) -> TkAction {
match self.label.set_and_try_prepare(text) {
Ok(true) => TkAction::RESIZE,
_ => TkAction::REDRAW,
}
}
}
impl Layout for Self {
#[inline]
fn size_rules(&mut self, size_mgr: SizeMgr, mut axis: AxisInfo) -> SizeRules {
axis.set_default_align_hv(Align::Default, Align::Center);
size_mgr.text_rules(&mut self.label, self.class, axis)
}
fn set_rect(&mut self, mgr: &mut ConfigMgr, rect: Rect) {
self.core.rect = rect;
mgr.text_set_size(&mut self.label, self.class, rect.size, None);
}
#[cfg(feature = "min_spec")]
default fn draw(&mut self, mut draw: DrawMgr) {
draw.text_effects(self.rect(), &self.label, self.class);
}
#[cfg(not(feature = "min_spec"))]
fn draw(&mut self, mut draw: DrawMgr) {
draw.text_effects(self.rect(), &self.label, self.class);
}
}
impl HasStr for Self {
fn get_str(&self) -> &str {
self.label.as_str()
}
}
impl HasString for Self
where
T: EditableText,
{
fn set_string(&mut self, string: String) -> TkAction {
self.label.set_string(string);
match self.label.try_prepare() {
Ok(true) => TkAction::RESIZE,
_ => TkAction::REDRAW,
}
}
}
}
#[cfg(feature = "min_spec")]
impl<'a> Layout for Label<&'a str> {
fn draw(&mut self, mut draw: DrawMgr) {
draw.text(self.rect(), &self.label, self.class);
}
}
#[cfg(feature = "min_spec")]
impl Layout for StringLabel {
fn draw(&mut self, mut draw: DrawMgr) {
draw.text(self.rect(), &self.label, self.class);
}
}
impl<T: FormattableText + 'static> From<T> for Label<T> {
fn from(label: T) -> Self {
Label::new(label)
}
}
impl<'a> From<&'a str> for Label<String> {
fn from(label: &'a str) -> Self {
Label::new(label.to_string())
}
}
pub type StrLabel = Label<&'static str>;
pub type StringLabel = Label<String>;
impl_scope! {
#[derive(Clone, Debug)]
#[widget{
derive = self.0;
}]
pub struct AccelLabel(Label<AccelString>);
impl Default for Self {
fn default() -> Self {
AccelLabel::new("")
}
}
impl Self {
#[inline]
pub fn new<S: Into<AccelString>>(label: S) -> Self {
let label = label.into();
AccelLabel(Label::new(label)).with_class(TextClass::AccelLabel(true))
}
#[inline]
pub fn class(&self) -> TextClass {
self.0.class
}
#[inline]
pub fn set_class(&mut self, class: TextClass) {
self.0.set_class(class);
}
#[inline]
pub fn with_class(mut self, class: TextClass) -> Self {
self.0.set_class(class);
self
}
#[inline]
pub fn wrap(&self) -> bool {
self.0.wrap()
}
#[inline]
pub fn set_wrap(&mut self, wrap: bool) {
self.0.set_wrap(wrap);
}
#[inline]
pub fn with_wrap(mut self, wrap: bool) -> Self {
self.0.set_wrap(wrap);
self
}
#[inline]
pub fn text(&self) -> &Text<AccelString> {
self.0.text()
}
pub fn set_text(&mut self, text: AccelString) -> TkAction {
match self.0.label.set_and_try_prepare(text) {
Ok(true) => TkAction::RESIZE,
_ => TkAction::REDRAW,
}
}
}
impl HasStr for Self {
fn get_str(&self) -> &str {
self.0.label.as_str()
}
}
impl AccelLabel {
pub fn keys(&self) -> &[event::VirtualKeyCode] {
self.0.label.text().keys()
}
}
impl SetAccel for AccelLabel {
fn set_accel_string(&mut self, string: AccelString) -> TkAction {
if self.0.label.text().keys() != string.keys() {
return TkAction::RECONFIGURE;
}
self.set_text(string)
}
}
}