/* * Copyright (C) 2007-2014 Geometer Plus <contact@geometerplus.com> * * 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.fbreader.options; import java.util.*; import org.geometerplus.zlibrary.core.options.ZLBooleanOption; import org.geometerplus.zlibrary.core.resources.ZLResource; import org.geometerplus.fbreader.book.*; public class CancelMenuHelper { public final ZLBooleanOption ShowLibraryItemOption = new ZLBooleanOption("CancelMenu", "library", true); public final ZLBooleanOption ShowNetworkLibraryItemOption = new ZLBooleanOption("CancelMenu", "networkLibrary", true); public final ZLBooleanOption ShowPreviousBookItemOption = new ZLBooleanOption("CancelMenu", "previousBook", false); public final ZLBooleanOption ShowPositionItemsOption = new ZLBooleanOption("CancelMenu", "positions", true); public static enum ActionType { library, networkLibrary, previousBook, returnTo, close } public static class ActionDescription { public final ActionType Type; public final String Title; public final String Summary; ActionDescription(ActionType type, String summary) { final ZLResource resource = ZLResource.resource("cancelMenu"); Type = type; Title = resource.getResource(type.toString()).getValue(); Summary = summary; } } public static class BookmarkDescription extends ActionDescription { public final Bookmark Bookmark; BookmarkDescription(Bookmark b) { super(ActionType.returnTo, b.getText()); Bookmark = b; } } public List<ActionDescription> getActionsList(IBookCollection collection) { final List<ActionDescription> list = new ArrayList<ActionDescription>(); if (ShowLibraryItemOption.getValue()) { list.add(new ActionDescription(ActionType.library, null)); } if (ShowNetworkLibraryItemOption.getValue()) { list.add(new ActionDescription(ActionType.networkLibrary, null)); } if (ShowPreviousBookItemOption.getValue()) { final Book previousBook = collection.getRecentBook(1); if (previousBook != null) { list.add(new ActionDescription(ActionType.previousBook, previousBook.getTitle())); } } if (ShowPositionItemsOption.getValue()) { final Book currentBook = collection.getRecentBook(0); if (currentBook != null) { final List<Bookmark> bookmarks = collection.bookmarks( new BookmarkQuery(currentBook, false, 3) ); Collections.sort(bookmarks, new Bookmark.ByTimeComparator()); for (Bookmark b : bookmarks) { list.add(new BookmarkDescription(b)); } } } list.add(new ActionDescription(ActionType.close, null)); return list; } }