1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
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");
}
|