blob: 11bd9a11320077113b8fa7745475892ba62d5044 (
plain) (
blame)
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
|
using Gee;
using Gdk;
using Gtk;
using Dino.Entities;
namespace Dino.Ui {
public class FileSendOverlay {
public signal void close();
public signal void send_file();
public Box main_box;
public Button close_button;
public Button send_button;
public SizingBin file_widget_insert;
public Label info_label;
private bool can_send = true;
public FileSendOverlay(File file, FileInfo file_info) {
Builder builder = new Builder.from_resource("/im/dino/Dino/file_send_overlay.ui");
main_box = (Box) builder.get_object("main_box");
close_button = (Button) builder.get_object("close_button");
send_button = (Button) builder.get_object("send_button");
file_widget_insert = (SizingBin) builder.get_object("file_widget_insert");
info_label = (Label) builder.get_object("info_label");
close_button.clicked.connect(() => {
do_close();
});
send_button.clicked.connect(() => {
send_file();
do_close();
});
load_file_widget.begin(file, file_info);
main_box.realize.connect(() => {
if (can_send) {
send_button.grab_focus();
} else {
close_button.grab_focus();
}
});
var key_events = new EventControllerKey();
key_events.key_pressed.connect((keyval) => {
if (keyval == Gdk.Key.Escape) {
do_close();
}
return false;
});
this.main_box.add_controller(key_events);
}
private async void load_file_widget(File file, FileInfo file_info) {
string file_name = file_info.get_display_name();
string mime_type = file_info.get_content_type();
bool is_image = false;
foreach (PixbufFormat pixbuf_format in Pixbuf.get_formats()) {
foreach (string supported_mime_type in pixbuf_format.get_mime_types()) {
if (supported_mime_type == mime_type) {
is_image = true;
}
}
}
Widget? widget = null;
if (is_image) {
FileImageWidget image_widget = new FileImageWidget();
try {
yield image_widget.load_from_file(file, file_name);
widget = image_widget;
} catch (Error e) { }
}
if (widget == null) {
FileDefaultWidget default_widget = new FileDefaultWidget();
default_widget.name_label.label = file_name;
default_widget.update_file_info(mime_type, FileTransfer.State.COMPLETE, (long)file_info.get_size());
widget = default_widget;
}
widget.set_parent(file_widget_insert);
}
public void set_file_too_large() {
info_label.label= _("The file exceeds the server's maximum upload size.");
Util.force_error_color(info_label);
send_button.sensitive = false;
can_send = false;
}
private void do_close() {
this.close();
main_box.unparent();
main_box.destroy();
}
public Widget get_widget() {
return main_box;
}
}
}
|