summaryrefslogtreecommitdiff
path: root/src/library/FlaggedSidebarEntry.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/FlaggedSidebarEntry.vala')
-rw-r--r--src/library/FlaggedSidebarEntry.vala54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/library/FlaggedSidebarEntry.vala b/src/library/FlaggedSidebarEntry.vala
new file mode 100644
index 0000000..240aaf3
--- /dev/null
+++ b/src/library/FlaggedSidebarEntry.vala
@@ -0,0 +1,54 @@
+/* Copyright 2011-2015 Yorba Foundation
+ *
+ * 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.FlaggedSidebarEntry : Library.HideablePageEntry, Sidebar.InternalDropTargetEntry {
+ public FlaggedSidebarEntry() {
+ foreach (MediaSourceCollection media_sources in MediaCollectionRegistry.get_instance().get_all())
+ media_sources.flagged_contents_altered.connect(on_flagged_contents_altered);
+
+ visible = (get_total_flagged() != 0);
+ }
+
+ ~FlaggedSidebarEntry() {
+ foreach (MediaSourceCollection media_sources in MediaCollectionRegistry.get_instance().get_all())
+ media_sources.flagged_contents_altered.disconnect(on_flagged_contents_altered);
+ }
+
+ public override string get_sidebar_name() {
+ return FlaggedPage.NAME;
+ }
+
+ public override string? get_sidebar_icon() {
+ return Resources.ICON_FLAGGED_PAGE;
+ }
+
+ protected override Page create_page() {
+ return new FlaggedPage();
+ }
+
+ public bool internal_drop_received(Gee.List<MediaSource> media) {
+ AppWindow.get_command_manager().execute(new FlagUnflagCommand(media, true));
+
+ return true;
+ }
+
+ public bool internal_drop_received_arbitrary(Gtk.SelectionData data) {
+ return false;
+ }
+
+ private void on_flagged_contents_altered() {
+ visible = (get_total_flagged() != 0);
+ }
+
+ private int get_total_flagged() {
+ int total = 0;
+ foreach (MediaSourceCollection media_sources in MediaCollectionRegistry.get_instance().get_all())
+ total += media_sources.get_flagged().size;
+
+ return total;
+ }
+}
+