summaryrefslogtreecommitdiff
path: root/src/library/LastImportBranch.vala
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-04-03 13:14:53 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-04-03 13:14:53 +0200
commitc43dfb815a4951b8248f4f0e98babe4f80204f03 (patch)
tree82745ed2353757c41ea1865bad9ac7a1b0a8a366 /src/library/LastImportBranch.vala
parent2785a691b958a79a1dd606c445188c71c3f58b3c (diff)
Imported Upstream version 0.22.0upstream/0.22.0
Diffstat (limited to 'src/library/LastImportBranch.vala')
-rw-r--r--src/library/LastImportBranch.vala47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/library/LastImportBranch.vala b/src/library/LastImportBranch.vala
deleted file mode 100644
index bc03ee5..0000000
--- a/src/library/LastImportBranch.vala
+++ /dev/null
@@ -1,47 +0,0 @@
-/* Copyright 2011-2014 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.LastImportBranch : Sidebar.RootOnlyBranch {
- public LastImportBranch() {
- base (new Library.LastImportSidebarEntry());
-
- foreach (MediaSourceCollection media_sources in MediaCollectionRegistry.get_instance().get_all())
- media_sources.import_roll_altered.connect(on_import_rolls_altered);
-
- set_show_branch(MediaCollectionRegistry.get_instance().get_last_import_id() != null);
- }
-
- ~LastImportBranch() {
- foreach (MediaSourceCollection media_sources in MediaCollectionRegistry.get_instance().get_all())
- media_sources.import_roll_altered.disconnect(on_import_rolls_altered);
- }
-
- public Library.LastImportSidebarEntry get_main_entry() {
- return (Library.LastImportSidebarEntry) get_root();
- }
-
- private void on_import_rolls_altered() {
- set_show_branch(MediaCollectionRegistry.get_instance().get_last_import_id() != null);
- }
-}
-
-public class Library.LastImportSidebarEntry : Sidebar.SimplePageEntry {
- public LastImportSidebarEntry() {
- }
-
- public override string get_sidebar_name() {
- return LastImportPage.NAME;
- }
-
- public override Icon? get_sidebar_icon() {
- return new ThemedIcon(Resources.ICON_LAST_IMPORT);
- }
-
- protected override Page create_page() {
- return new LastImportPage();
- }
-}
-