summaryrefslogtreecommitdiffstats
path: root/fbreader/src/libraryActions/LibraryBookActions.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-05-11 21:28:48 +0900
committerMichele Calgaro <[email protected]>2024-05-11 21:28:48 +0900
commit2462d03f322261bd616721c2b2065c4004b36c9c (patch)
tree239947a0737bb8386703a1497f12c09aebd3080a /fbreader/src/libraryActions/LibraryBookActions.cpp
downloadtde-ebook-reader-2462d03f322261bd616721c2b2065c4004b36c9c.tar.gz
tde-ebook-reader-2462d03f322261bd616721c2b2065c4004b36c9c.zip
Initial import (as is) from Debian Snapshot's 'fbreader' source code (https://snapshot.debian.org/package/fbreader/0.99.4%2Bdfsg-6).
The Debian code is provided under GPL2 license. 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, 132 insertions, 0 deletions
diff --git a/fbreader/src/libraryActions/LibraryBookActions.cpp b/fbreader/src/libraryActions/LibraryBookActions.cpp
new file mode 100644
index 0000000..6e72411
--- /dev/null
+++ b/fbreader/src/libraryActions/LibraryBookActions.cpp
@@ -0,0 +1,132 @@
+/*
+ * 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");
+}