This repository was archived by the owner on Mar 4, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathmain.rs
50 lines (43 loc) · 1.57 KB
/
main.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
46
47
48
49
50
use gtk::gdk;
use gtk::prelude::*;
fn main() {
let application = gtk::Application::new(
Some("com.github.gtk-rs.examples.drag_and_drop"),
Default::default(),
);
application.connect_activate(build_ui);
application.run();
}
fn build_ui(application: >k::Application) {
// Configure button as drag source for text
let button = gtk::Button::with_label("Drag here");
let targets = vec![
gtk::TargetEntry::new("STRING", gtk::TargetFlags::SAME_APP, 0),
gtk::TargetEntry::new("text/plain", gtk::TargetFlags::SAME_APP, 0),
];
button.drag_source_set(
gdk::ModifierType::MODIFIER_MASK,
&targets,
gdk::DragAction::COPY,
);
button.connect_drag_data_get(|_, _, s, _, _| {
let data = "I'm data!";
s.set_text(data);
});
// Configure label as drag destination to receive text
let label = gtk::Label::new(Some("Drop here"));
label.drag_dest_set(gtk::DestDefaults::ALL, &targets, gdk::DragAction::COPY);
label.connect_drag_data_received(|w, _, _, _, s, _, _| {
w.set_text(&s.text().expect("Couldn't get text"));
});
// Stack the button and label horizontally
let hbox = gtk::Box::new(gtk::Orientation::Horizontal, 0);
hbox.pack_start(&button, true, true, 0);
hbox.pack_start(&label, true, true, 0);
// Finish populating the window and display everything
let window = gtk::ApplicationWindow::new(application);
window.set_title("Simple Drag and Drop Example");
window.set_default_size(200, 100);
window.add(&hbox);
window.show_all();
}