blob: 1269ce89c95731aa9b4d55250f9a90b10aae04ac (
plain)
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
|
/* Copyright 2016 Software Freedom Conservancy Inc.
*
* This software is licensed under the GNU Lesser General Public License
* (version 2.1 or later). See the COPYING file in this distribution.
*/
public class Library.TrashSidebarEntry : Sidebar.SimplePageEntry, Sidebar.InternalDropTargetEntry {
public TrashSidebarEntry() {
foreach (MediaSourceCollection media_sources in MediaCollectionRegistry.get_instance().get_all())
media_sources.trashcan_contents_altered.connect(on_trashcan_contents_altered);
}
~TrashSidebarEntry() {
foreach (MediaSourceCollection media_sources in MediaCollectionRegistry.get_instance().get_all())
media_sources.trashcan_contents_altered.disconnect(on_trashcan_contents_altered);
}
internal static void init() {
}
internal static void terminate() {
}
public override string get_sidebar_name() {
return TrashPage.NAME;
}
public override string? get_sidebar_icon() {
return get_current_icon();
}
private static string get_current_icon() {
foreach (MediaSourceCollection media_sources in MediaCollectionRegistry.get_instance().get_all()) {
if (media_sources.get_trashcan_count() > 0)
return Resources.ICON_TRASH_FULL;
}
return Resources.ICON_TRASH_EMPTY;
}
public bool internal_drop_received(Gee.List<MediaSource> media) {
AppWindow.get_command_manager().execute(new TrashUntrashPhotosCommand(media, true));
return true;
}
public bool internal_drop_received_arbitrary(Gtk.SelectionData data) {
return false;
}
protected override Page create_page() {
return new TrashPage();
}
private void on_trashcan_contents_altered() {
sidebar_icon_changed(get_current_icon());
}
}
|