diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2018-09-30 14:09:32 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2018-09-30 14:09:32 +0200 |
commit | 0537caaf4af94a9ead8b292679f6b34c90b55e06 (patch) | |
tree | 6761cfdf959926be7af3147cf770e7f253390fe8 /src/import-roll/ImportRollEntry.vala | |
parent | eca5837e235a356c8db9416bbbc13577db3e6f76 (diff) | |
parent | 5e9f4eea451a77ba3b93db3747841ed2bd969e9f (diff) |
Update upstream source from tag 'upstream/0.30.1'
Update to upstream version '0.30.1'
with Debian dir dc242531effff8d9c6fab093414edee28b403c6a
Diffstat (limited to 'src/import-roll/ImportRollEntry.vala')
-rw-r--r-- | src/import-roll/ImportRollEntry.vala | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/import-roll/ImportRollEntry.vala b/src/import-roll/ImportRollEntry.vala new file mode 100644 index 0000000..cbc56ae --- /dev/null +++ b/src/import-roll/ImportRollEntry.vala @@ -0,0 +1,34 @@ +/* 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 ImportRoll.SidebarEntry : Library.HideablePageEntry { + private ImportID id; + private string name; + + public SidebarEntry(ImportID id) { + base(); + + this.id = id; + this.name = new DateTime.from_unix_local(id.id).format("%c"); + } + + public ImportID get_id() { + return id; + } + + public override string get_sidebar_name() { + return this.name; + } + + public override string? get_sidebar_icon() { + return Resources.ICON_LAST_IMPORT; + } + + protected override Page create_page() { + return new LastImportPage.for_id(this.id); + } +} + |