From 17b259df9cb6b28779d4881b2b6c805ee2e48eea Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 7 Jun 2024 23:30:05 +0900 Subject: Rename to tde-ebook-reader Signed-off-by: Michele Calgaro --- fbreader/src/libraryActions/LibraryBookActions.cpp | 132 --------------------- 1 file changed, 132 deletions(-) delete mode 100644 fbreader/src/libraryActions/LibraryBookActions.cpp (limited to 'fbreader/src/libraryActions/LibraryBookActions.cpp') diff --git a/fbreader/src/libraryActions/LibraryBookActions.cpp b/fbreader/src/libraryActions/LibraryBookActions.cpp deleted file mode 100644 index 6e72411..0000000 --- a/fbreader/src/libraryActions/LibraryBookActions.cpp +++ /dev/null @@ -1,132 +0,0 @@ -/* - * Copyright (C) 2009-2012 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. - */ - -#include -#include -#include -#include -#include - -#include "LibraryBookActions.h" -#include "../library/Book.h" -#include "../fbreader/FBReader.h" -#include "../optionsDialog/bookInfo/BookInfoDialog.h" - -BookReadAction::BookReadAction(shared_ptr book) : myBook(book) { -} - -void BookReadAction::run() { - FBReader &fbreader = FBReader::Instance(); - fbreader.openBook(myBook); - fbreader.showBookTextView(); -} - -ZLResourceKey BookReadAction::key() const { - return ZLResourceKey("read"); -} - -BookRemoveAction::BookRemoveAction(shared_ptr book) : myBook(book) { -} - -void BookRemoveAction::run() { - switch (removeBookDialog()) { - case Library::REMOVE_FROM_DISK: - { - const std::string path = myBook->file().physicalFilePath(); - ZLFile physicalFile(path); - if (!physicalFile.remove()) { - ZLResourceKey boxKey("removeFileErrorBox"); - const std::string message = - ZLStringUtil::printf(ZLDialogManager::dialogMessage(boxKey), path); - ZLDialogManager::Instance().errorBox(boxKey, message); - } - } - // yes, we go through this label - case Library::REMOVE_FROM_LIBRARY: - Library::Instance().removeBook(myBook); - FBReader::Instance().refreshWindow(); - case Library::REMOVE_DONT_REMOVE: - break; - } -} - -ZLResourceKey BookRemoveAction::key() const { - return ZLResourceKey("delete"); -} - -bool BookRemoveAction::makesSense() const { - return Library::Instance().canRemove(myBook) != Library::REMOVE_DONT_REMOVE; -} - -int BookRemoveAction::removeBookDialog() const { - ZLResourceKey boxKey("removeBookBox"); - const ZLResource &msgResource = ZLResource::resource("dialog")[boxKey]; - - switch (Library::Instance().canRemove(myBook)) { - case Library::REMOVE_DONT_REMOVE: - return Library::REMOVE_DONT_REMOVE; - case Library::REMOVE_FROM_DISK: - { - ZLFile physFile(myBook->file().physicalFilePath()); - const std::string message = ZLStringUtil::printf(msgResource["deleteFile"].value(), physFile.name(false)); - if (ZLDialogManager::Instance().questionBox(boxKey, message, ZLDialogManager::YES_BUTTON, ZLDialogManager::NO_BUTTON) == 0) { - return Library::REMOVE_FROM_DISK; - } - return Library::REMOVE_DONT_REMOVE; - } - case Library::REMOVE_FROM_LIBRARY: - { - const std::string message = ZLStringUtil::printf(ZLDialogManager::dialogMessage(boxKey), myBook->title()); - if (ZLDialogManager::Instance().questionBox(boxKey, message, ZLDialogManager::YES_BUTTON, ZLDialogManager::NO_BUTTON) == 0) { - return Library::REMOVE_FROM_LIBRARY; - } - return Library::REMOVE_DONT_REMOVE; - } - case Library::REMOVE_FROM_LIBRARY_AND_DISK: - { - ZLResourceKey removeFileKey("removeFile"); - ZLResourceKey removeLinkKey("removeLink"); - - const std::string message = ZLStringUtil::printf(ZLDialogManager::dialogMessage(boxKey), myBook->title()); - switch(ZLDialogManager::Instance().questionBox(boxKey, message, removeLinkKey, removeFileKey, ZLDialogManager::CANCEL_BUTTON)) { - case 0: - return Library::REMOVE_FROM_LIBRARY; - case 1: - return Library::REMOVE_FROM_DISK; - case 2: - return Library::REMOVE_DONT_REMOVE; - } - } - } - return Library::REMOVE_DONT_REMOVE; -} - -BookEditInfoAction::BookEditInfoAction(shared_ptr book) : myBook(book) { -} - -void BookEditInfoAction::run() { - if (BookInfoDialog(myBook).dialog().run()) { - // TODO: select current node (?) again - FBReader::Instance().refreshWindow(); - } -} - -ZLResourceKey BookEditInfoAction::key() const { - return ZLResourceKey("edit"); -} -- cgit v1.2.3