-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtext.rs
45 lines (36 loc) · 1.45 KB
/
text.rs
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
//! Creates a bunch of useless text controls.
#[macro_use]
extern crate iup;
use iup::prelude::*;
use iup::layout::{HBox, VBox};
use iup::control::Text;
fn main () {
iup::with_iup(|| {
let mut info = Text::new()
.set_attrib("READONLY", "YES")
.set_attrib("EXPAND", "HORIZONTAL")
.set_attrib("VALUE", "You can read, but you can't edit.");
Dialog::new(
VBox::new(elements![
info,
Text::new()
.set_attrib("MULTILINE", "YES")
.set_attrib("EXPAND", "YES")
.set_caret_cb(move |(_, lin, col, pos)| {
info.set_attrib("VALUE", format!("Text changed at {}:{}, {}", lin, col, pos));
}),
HBox::new(elements![
Text::new_spin()
.set_spin_cb(move |(_, pos)| {
info.set_attrib("VALUE", format!("Spin changed to '{}'", pos));
}),
Text::new().set_attrib("PASSWORD", "YES")
.set_attrib("VALUE", "123456789")
.set_attrib("EXPAND", "HORIZONTAL"),
])
]).set_attrib("EXPAND", "YES")
).set_attrib("TITLE", "Text")
.set_attrib("SIZE", "200x200")
.show()
}).unwrap();
}