Update icons.
[dorian] / mainwindow.cpp
1 #include <QtGui>
2 #include <QEvent>
3
4 #ifdef Q_WS_MAEMO_5
5 #   include <QtDBus>
6 #   include <QtGui/QX11Info>
7 #   include <X11/Xlib.h>
8 #   include <X11/Xatom.h>
9 #   include <mce/mode-names.h>
10 #   include <mce/dbus-names.h>
11 #endif // Q_WS_MAEMO_5
12
13 #include "bookview.h"
14 #include "book.h"
15 #include "library.h"
16 #include "infodialog.h"
17 #include "librarydialog.h"
18 #include "devtools.h"
19 #include "mainwindow.h"
20 #include "settingswindow.h"
21 #include "bookmarksdialog.h"
22 #include "settings.h"
23 #include "chaptersdialog.h"
24 #include "fullscreenwindow.h"
25 #include "trace.h"
26 #include "bookfinder.h"
27 #include "progress.h"
28 #include "dyalog.h"
29 #include "translucentbutton.h"
30 #include "platform.h"
31 #include "progressdialog.h"
32 #include "sortedlibrary.h"
33
34 #ifdef DORIAN_TEST_MODEL
35 #   include "modeltest.h"
36 #endif
37
38 MainWindow::MainWindow(QWidget *parent):
39     AdopterWindow(parent), view(0), preventBlankingTimer(-1)
40 {
41     TRACE;
42 #ifdef Q_WS_MAEMO_5
43     setAttribute(Qt::WA_Maemo5StackedWindow, true);
44 #endif
45
46 #ifndef Q_OS_SYMBIAN
47     setWindowTitle("Dorian");
48 #endif
49
50     // Central widget. Must be an intermediate, because the book view widget
51     // might be re-parented later
52     QFrame *central = new QFrame(this);
53     QVBoxLayout *layout = new QVBoxLayout(central);
54     layout->setMargin(0);
55     central->setLayout(layout);
56     setCentralWidget(central);
57
58     // Book view
59     view = new BookView(this);
60
61     // Tool bar actions
62
63     chaptersAction = addToolBarAction(this, SLOT(showChapters()),
64                                       "chapters", tr("Chapters"), true);
65     bookmarksAction = addToolBarAction(this, SLOT(showBookmarks()),
66                                        "bookmarks", tr("Bookmarks"), true);
67     libraryAction = addToolBarAction(this, SLOT(showLibrary()),
68                                      "library", tr("Library"), false);
69
70 #ifdef Q_WS_MAEMO_5
71     settingsAction = menuBar()->addAction(tr("Settings"));
72     connect(settingsAction, SIGNAL(triggered()), this, SLOT(showSettings()));
73     devToolsAction = menuBar()->addAction(tr("Developer"));
74     connect(devToolsAction, SIGNAL(triggered()), this, SLOT(showDevTools()));
75 #else
76     settingsAction = addToolBarAction(this, SLOT(showSettings()),
77                                       "preferences-system", tr("Settings"));
78     devToolsAction = addToolBarAction(this, SLOT(showDevTools()),
79                                       "developer", tr("Developer"));
80 #endif
81
82     rotateAction = addToolBarAction(this, SLOT(rotate()),
83                                     "rotate", tr("Rotate"), true);
84     addToolBarSpace();
85     fullScreenAction = addToolBarAction(this, SLOT(showBig()),
86         "view-fullscreen", tr("Full screen"), true);
87
88 #if defined(Q_WS_MAEMO_5)
89     QAction *aboutAction = menuBar()->addAction(tr("About"));
90     connect(aboutAction, SIGNAL(triggered()), this, SLOT(about()));
91 #else
92     addToolBarAction(this, SLOT(about()), "about", tr("About"));
93 #endif // defined(Q_WS_MAEMO_5)
94
95 #if defined(Q_OS_SYMBIAN)
96     (void)addToolBarAction(this, SLOT(close()), "", tr("Exit"), false);
97 #endif // defined(Q_OS_SYMBIAN)
98
99     // Decorations
100     prev = new TranslucentButton("back", this);
101     next = new TranslucentButton("forward", this);
102     prog = new Progress(this);
103
104     // Handle model changes
105     connect(Library::instance(), SIGNAL(nowReadingChanged()),
106             this, SLOT(onCurrentBookChanged()));
107
108     // Load library, upgrade it if needed
109     libraryProgress = new ProgressDialog(tr("Upgrading library"), this);
110     Library *library = Library::instance();
111     connect(library, SIGNAL(beginUpgrade(int)),
112             this, SLOT(onBeginUpgrade(int)));
113     connect(library, SIGNAL(upgrading(const QString &)),
114             this, SLOT(onUpgrading(const QString &)));
115     connect(library, SIGNAL(endUpgrade()), this, SLOT(onEndUpgrade()));
116
117     // Handle loading book parts
118     connect(view, SIGNAL(partLoadStart(int)), this, SLOT(onPartLoadStart()));
119     connect(view, SIGNAL(partLoadEnd(int)), this, SLOT(onPartLoadEnd(int)));
120
121     // Handle progress
122     connect(view, SIGNAL(progress(qreal)), prog, SLOT(setProgress(qreal)));
123
124     // Shadow window for full screen reading
125     fullScreenWindow = new FullScreenWindow(this);
126     connect(fullScreenWindow, SIGNAL(restore()), this, SLOT(showRegular()));
127
128     // Handle settings changes
129     connect(Settings::instance(), SIGNAL(valueChanged(const QString &)),
130             this, SLOT(onSettingsChanged(const QString &)));
131
132     // Handle book view buttons
133     connect(next, SIGNAL(triggered()), this, SLOT(goToNextPage()));
134     connect(prev, SIGNAL(triggered()), this, SLOT(goToPreviousPage()));
135
136 #ifdef DORIAN_TEST_MODEL
137     (void)new ModelTest(Library::instance(), this);
138 #endif
139 }
140
141 void MainWindow::initialize()
142 {
143     TRACE;
144     Library *library = Library::instance();
145
146     // Show in regular (non full-screen) mode
147     showRegular();
148
149     // Upgrade library if needed, then load it
150     library->upgrade();
151     library->load();
152
153     // Load book on command line, or load last read book, or load default book
154     if (QCoreApplication::arguments().size() == 2) {
155         QString path = QCoreApplication::arguments()[1];
156         library->add(path);
157         QModelIndex index = library->find(path);
158         if (index.isValid()) {
159             library->setNowReading(index);
160         }
161     } else {
162         QModelIndex index = library->nowReading();
163         if (index.isValid()) {
164             library->setNowReading(index);
165         } else {
166             if (!library->rowCount()) {
167                 library->add(":/books/2BR02B.epub");
168             }
169             SortedLibrary sorted;
170             library->setNowReading(sorted.mapToSource(sorted.index(0, 0)));
171         }
172     }
173 }
174
175 void MainWindow::onCurrentBookChanged()
176 {
177     TRACE;
178     setCurrentBook(Library::instance()->nowReading());
179 }
180
181 void MainWindow::showRegular()
182 {
183     TRACE;
184
185     view->setLastBookmark();
186     fullScreenWindow->leaveBookView();
187     takeBookView(view, prog, prev, next);
188
189     fullScreenWindow->hide();
190     show();
191     view->scheduleRestoreLastBookmark();
192 }
193
194 void MainWindow::showBig()
195 {
196     TRACE;
197
198     view->setLastBookmark();
199     leaveBookView();
200     fullScreenWindow->takeBookView(view, prog, prev, next);
201
202 #ifdef Q_WS_MAEMO_5
203     fullScreenWindow->raise();
204 #else
205     hide();
206 #endif
207     fullScreenWindow->showFullScreen();
208     view->scheduleRestoreLastBookmark();
209 }
210
211 void MainWindow::setCurrentBook(const QModelIndex &current)
212 {
213     mCurrent = current;
214     Book *book = Library::instance()->book(current);
215     view->setBook(book);
216     setWindowTitle(book? book->shortName(): tr("Dorian"));
217 }
218
219 void MainWindow::showLibrary()
220 {
221     (new LibraryDialog(this))->show();
222 }
223
224 void MainWindow::showSettings()
225 {
226     (new SettingsWindow(this))->show();
227 }
228
229 void MainWindow::rotate()
230 {
231     QString current = Settings::instance()->value("orientation",
232         Platform::instance()->defaultOrientation()).toString();
233     QString target = (current == "landscape")? "portrait": "landscape";
234     view->setLastBookmark();
235     Settings::instance()->setValue("orientation", target);
236 }
237
238 void MainWindow::showDevTools()
239 {
240     (new DevTools(this))->exec();
241 }
242
243 void MainWindow::showBookmarks()
244 {
245     Book *book = Library::instance()->book(mCurrent);
246     if (book) {
247         BookmarksDialog *bookmarks = new BookmarksDialog(book, this);
248         connect(bookmarks, SIGNAL(addBookmark(const QString &)),
249                 this, SLOT(onAddBookmark(const QString &)));
250         connect(bookmarks, SIGNAL(goToBookmark(int)),
251                 this, SLOT(onGoToBookmark(int)));
252         bookmarks->show();
253     }
254 }
255
256 void MainWindow::onSettingsChanged(const QString &key)
257 {
258     TRACE;
259     qDebug() << "Key" << key;
260
261     if (key == "orientation") {
262         QString value = Settings::instance()->value(key,
263             Platform::instance()->defaultOrientation()).toString();
264         qDebug() << "Value: orientation" << value;
265         Platform::instance()->setOrientation(this, value);
266         Platform::instance()->setOrientation(fullScreenWindow, value);
267     }
268
269 #if defined(Q_WS_MAEMO_5)
270     else if (key == "lightson") {
271         bool enable = Settings::instance()->value(key, false).toBool();
272         killTimer(preventBlankingTimer);
273         if (enable) {
274             preventBlankingTimer = startTimer(29 * 1000);
275         }
276     }
277 #endif // defined(Q_WS_MAEMO_5)
278 }
279
280 void MainWindow::onPartLoadStart()
281 {
282     TRACE;
283     Platform::instance()->showBusy(this, true);
284 }
285
286 void MainWindow::onPartLoadEnd(int index)
287 {
288     TRACE;
289     bool enablePrevious = false;
290     bool enableNext = false;
291     Book *book = Library::instance()->book(mCurrent);
292     if (book) {
293         if (index > 0) {
294             enablePrevious = true;
295         }
296         if (index < (book->parts.size() - 1)) {
297             enableNext = true;
298         }
299     }
300     Platform::instance()->showBusy(this, false);
301 }
302
303 void MainWindow::onAddBookmark(const QString &note)
304 {
305     TRACE;
306     view->addBookmark(note);
307     Platform::instance()->information(tr("Bookmarked current position"), this);
308 }
309
310 void MainWindow::onGoToBookmark(int index)
311 {
312     TRACE;
313     Book *book = Library::instance()->book(mCurrent);
314     view->goToBookmark(book->bookmarks()[index]);
315 }
316
317 void MainWindow::showChapters()
318 {
319     Book *book = Library::instance()->book(mCurrent);
320     if (book) {
321         ChaptersDialog *chapters = new ChaptersDialog(book, this);
322         connect(chapters, SIGNAL(goToChapter(int)),
323                 this, SLOT(onGoToChapter(int)));
324         chapters->show();
325     }
326 }
327
328 void MainWindow::onGoToChapter(int index)
329 {
330     TRACE;
331
332     Book *book = Library::instance()->book(mCurrent);
333     if (book) {
334         QString fragment;
335         int partIndex = book->partFromChapter(index, fragment);
336         if (partIndex != -1) {
337             view->goToPart(partIndex, fragment);
338         }
339     }
340 }
341
342 void MainWindow::timerEvent(QTimerEvent *event)
343 {
344     if (event->timerId() == preventBlankingTimer) {
345 #ifdef Q_WS_MAEMO_5
346         QDBusInterface mce(MCE_SERVICE, MCE_REQUEST_PATH,
347                            MCE_REQUEST_IF, QDBusConnection::systemBus());
348         mce.call(MCE_PREVENT_BLANK_REQ);
349 #endif // Q_WS_MAEMO_5
350         qDebug() << "MainWindow::timerEvent: Prevent display blanking";
351     }
352     AdopterWindow::timerEvent(event);
353 }
354
355 void MainWindow::about()
356 {
357     Dyalog *aboutDialog = new Dyalog(this, false);
358     aboutDialog->setWindowTitle(tr("About Dorian"));
359     QString version = Platform::instance()->version();
360     QLabel *label = new QLabel(aboutDialog);
361     label->setTextFormat(Qt::RichText);
362     label->setOpenExternalLinks(true);
363     label->setWordWrap(true);
364     label->setText(tr("<b>Dorian %1</b><br><br>"
365         "Copyright &copy; 2010-2011 by "
366         "Akos Polster &lt;akos@pipacs.com&gt;<br><br>"
367         "Licensed under GNU General Public License, Version 3<br><br>"
368         "<a href='http://dorian.garage.maemo.org/'>"
369         "dorian.garage.maemo.org</a><br><br>"
370         ).arg(version));
371     aboutDialog->addWidget(label);
372     aboutDialog->addStretch();
373     aboutDialog->show();
374 }
375
376 void MainWindow::goToNextPage()
377 {
378     next->flash();
379     prev->flash();
380     view->goNextPage();
381 }
382
383 void MainWindow::goToPreviousPage()
384 {
385     next->flash();
386     prev->flash();
387     view->goPreviousPage();
388 }
389
390 void MainWindow::onBeginUpgrade(int total)
391 {
392     libraryProgress->setVisible(total > 0);
393     libraryProgress->setWindowTitle(tr("Upgrading library"));
394     libraryProgress->setMaximum(total);
395 }
396
397 void MainWindow::onUpgrading(const QString &path)
398 {
399     libraryProgress->setLabelText(tr("Upgrading %1").
400                                   arg(QFileInfo(path).fileName()));
401     libraryProgress->setValue(libraryProgress->value() + 1);
402 }
403
404 void MainWindow::onEndUpgrade()
405 {
406     libraryProgress->hide();
407     libraryProgress->reset();
408 }
409
410 void MainWindow::onBeginLoad(int total)
411 {
412     libraryProgress->setVisible(total > 0);
413     libraryProgress->setWindowTitle(tr("Loading library"));
414     libraryProgress->setMaximum(total);
415 }
416
417 void MainWindow::onLoading(const QString &path)
418 {
419     libraryProgress->setLabelText(tr("Loading %1").
420                                   arg(QFileInfo(path).fileName()));
421     libraryProgress->setValue(libraryProgress->value() + 1);
422 }
423
424 void MainWindow::onEndLoad()
425 {
426     libraryProgress->hide();
427     libraryProgress->reset();
428 }