summaryrefslogtreecommitdiffstats
path: root/reader/src/libraryActions/LibraryBookActions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'reader/src/libraryActions/LibraryBookActions.cpp')
-rw-r--r--reader/src/libraryActions/LibraryBookActions.cpp132
1 files changed, 132 insertions, 0 deletions
diff --git a/reader/src/libraryActions/LibraryBookActions.cpp b/reader/src/libraryActions/LibraryBookActions.cpp
new file mode 100644
index 0000000..0c490c4
--- /dev/null
+++ b/reader/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 "../reader/Reader.h"
+#include "../optionsDialog/bookInfo/BookInfoDialog.h"
+
+BookReadAction::BookReadAction(shared_ptr<Book> book) : myBook(book) {
+}
+
+void BookReadAction::run() {
+ Reader &reader = Reader::Instance();
+ reader.openBook(myBook);
+ reader.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);
+ Reader::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
+ Reader::Instance().refreshWindow();
+ }
+}
+
+ZLResourceKey BookEditInfoAction::key() const {
+ return ZLResourceKey("edit");
+}