diff options
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); +    } +} + | 
