/* * Copyright (C) 2009-2013 Geometer Plus * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. */ package org.geometerplus.fbreader.library; import org.geometerplus.zlibrary.core.image.ZLImage; import org.geometerplus.fbreader.book.*; import org.geometerplus.fbreader.tree.FBTree; public class BookTree extends LibraryTree { public final Book Book; BookTree(IBookCollection collection, Book book) { super(collection); Book = book; } BookTree(LibraryTree parent, Book book) { super(parent); Book = book; } BookTree(LibraryTree parent, Book book, int position) { super(parent, position); Book = book; } @Override public String getName() { return Book.getTitle(); } @Override public String getSummary() { return ""; } @Override public Book getBook() { return Book; } @Override protected String getStringId() { return "@BookTree " + getName(); } @Override protected ZLImage createCover() { return BookUtil.getCover(Book); } @Override public boolean containsBook(Book book) { return book != null && book.equals(Book); } @Override public int compareTo(FBTree tree) { final int cmp = super.compareTo(tree); if (cmp == 0 && tree instanceof BookTree) { final Book b = ((BookTree)tree).Book; if (Book != null && b != null) { return Book.File.getPath().compareTo(b.File.getPath()); } } return cmp; } @Override public boolean equals(Object object) { if (object == this) { return true; } if (!(object instanceof BookTree)) { return false; } return Book.equals(((BookTree)object).Book); } }