summaryrefslogtreecommitdiffstats
path: root/fbreader/src/libraryActions/LibraryBookActions.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-06-07 23:30:05 +0900
committerMichele Calgaro <[email protected]>2024-06-07 23:30:05 +0900
commit17b259df9cb6b28779d4881b2b6c805ee2e48eea (patch)
tree5ed61937459cb7081089111b0242c01ec178f1f3 /fbreader/src/libraryActions/LibraryBookActions.cpp
parent1cba8bce178eb2d6719c6f7f21e2c9352c5513a6 (diff)
downloadtde-ebook-reader-17b259df9cb6b28779d4881b2b6c805ee2e48eea.tar.gz
tde-ebook-reader-17b259df9cb6b28779d4881b2b6c805ee2e48eea.zip
Rename to tde-ebook-reader
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'fbreader/src/libraryActions/LibraryBookActions.cpp')
-rw-r--r--fbreader/src/libraryActions/LibraryBookActions.cpp132
1 files changed, 0 insertions, 132 deletions
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 <[email protected]>
- *
- * 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 <ZLResource.h>
-#include <ZLDialogManager.h>
-#include <ZLOptionsDialog.h>
-#include <ZLFile.h>
-#include <ZLStringUtil.h>
-
-#include "LibraryBookActions.h"
-#include "../library/Book.h"
-#include "../fbreader/FBReader.h"
-#include "../optionsDialog/bookInfo/BookInfoDialog.h"
-
-BookReadAction::BookReadAction(shared_ptr<Book> 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> 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> 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");
-}