Smoothen switch between full screen/normal view on Maemo.
[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     // Upgrade library if needed, then load it
147     library->upgrade();
148     library->load();
149
150     // Load book on command line, or load last read book, or load default book
151     if (QCoreApplication::arguments().size() == 2) {
152         QString path = QCoreApplication::arguments()[1];
153         library->add(path);
154         QModelIndex index = library->find(path);
155         if (index.isValid()) {
156             library->setNowReading(index);
157         }
158     } else {
159         QModelIndex index = library->nowReading();
160         if (index.isValid()) {
161             library->setNowReading(index);
162         } else {
163             if (!library->rowCount()) {
164                 library->add(":/books/2BR02B.epub");
165             }
166             SortedLibrary sorted;
167             library->setNowReading(sorted.mapToSource(sorted.index(0, 0)));
168         }
169     }
170
171     // Show in regular (non full-screen) mode
172     showRegular();
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     // Re-parent children
186     fullScreenWindow->leaveBookView();
187     takeBookView(view, prog, prev, next);
188
189     fullScreenWindow->hide();
190     show();
191 }
192
193 void MainWindow::showBig()
194 {
195     TRACE;
196
197     // Re-parent children
198     leaveBookView();
199     fullScreenWindow->takeBookView(view, prog, prev, next);
200
201 #ifdef Q_WS_MAEMO_5
202     fullScreenWindow->raise();
203 #else
204     hide();
205 #endif
206     fullScreenWindow->showFullScreen();
207 }
208
209 void MainWindow::setCurrentBook(const QModelIndex &current)
210 {
211     mCurrent = current;
212     Book *book = Library::instance()->book(current);
213     view->setBook(book);
214     setWindowTitle(book? book->shortName(): tr("Dorian"));
215 }
216
217 void MainWindow::showLibrary()
218 {
219     (new LibraryDialog(this))->show();
220 }
221
222 void MainWindow::showSettings()
223 {
224     (new SettingsWindow(this))->show();
225 }
226
227 void MainWindow::rotate()
228 {
229     QString current = Settings::instance()->value("orientation",
230         Platform::instance()->defaultOrientation()).toString();
231     QString target = (current == "landscape")? "portrait": "landscape";
232     Settings::instance()->setValue("orientation", target);
233 }
234
235 void MainWindow::showDevTools()
236 {
237     (new DevTools(this))->exec();
238 }
239
240 void MainWindow::showBookmarks()
241 {
242     Book *book = Library::instance()->book(mCurrent);
243     if (book) {
244         BookmarksDialog *bookmarks = new BookmarksDialog(book, this);
245         connect(bookmarks, SIGNAL(addBookmark(const QString &)),
246                 this, SLOT(onAddBookmark(const QString &)));
247         connect(bookmarks, SIGNAL(goToBookmark(int)),
248                 this, SLOT(onGoToBookmark(int)));
249         bookmarks->show();
250     }
251 }
252
253 void MainWindow::onSettingsChanged(const QString &key)
254 {
255     TRACE;
256     qDebug() << "Key" << key;
257
258     if (key == "orientation") {
259         view->setLastBookmark();
260         QString value = Settings::instance()->value(key,
261             Platform::instance()->defaultOrientation()).toString();
262         qDebug() << "Value: orientation" << value;
263         Platform::instance()->setOrientation(this, value);
264         Platform::instance()->setOrientation(fullScreenWindow, value);
265     }
266
267 #if defined(Q_WS_MAEMO_5)
268     else if (key == "lightson") {
269         bool enable = Settings::instance()->value(key, false).toBool();
270         killTimer(preventBlankingTimer);
271         if (enable) {
272             preventBlankingTimer = startTimer(29 * 1000);
273         }
274     }
275 #endif // defined(Q_WS_MAEMO_5)
276 }
277
278 void MainWindow::onPartLoadStart()
279 {
280     TRACE;
281     Platform::instance()->showBusy(this, true);
282 }
283
284 void MainWindow::onPartLoadEnd(int index)
285 {
286     TRACE;
287     bool enablePrevious = false;
288     bool enableNext = false;
289     Book *book = Library::instance()->book(mCurrent);
290     if (book) {
291         if (index > 0) {
292             enablePrevious = true;
293         }
294         if (index < (book->parts.size() - 1)) {
295             enableNext = true;
296         }
297     }
298     Platform::instance()->showBusy(this, false);
299 }
300
301 void MainWindow::onAddBookmark(const QString &note)
302 {
303     TRACE;
304     view->addBookmark(note);
305     Platform::instance()->information(tr("Bookmarked current position"), this);
306 }
307
308 void MainWindow::onGoToBookmark(int index)
309 {
310     TRACE;
311     Book *book = Library::instance()->book(mCurrent);
312     view->goToBookmark(book->bookmarks()[index]);
313 }
314
315 void MainWindow::showChapters()
316 {
317     Book *book = Library::instance()->book(mCurrent);
318     if (book) {
319         ChaptersDialog *chapters = new ChaptersDialog(book, this);
320         connect(chapters, SIGNAL(goToChapter(int)),
321                 this, SLOT(onGoToChapter(int)));
322         chapters->show();
323     }
324 }
325
326 void MainWindow::onGoToChapter(int index)
327 {
328     TRACE;
329
330     Book *book = Library::instance()->book(mCurrent);
331     if (book) {
332         QString fragment;
333         int partIndex = book->partFromChapter(index, fragment);
334         if (partIndex != -1) {
335             view->goToPart(partIndex, fragment);
336         }
337     }
338 }
339
340 void MainWindow::timerEvent(QTimerEvent *event)
341 {
342     if (event->timerId() == preventBlankingTimer) {
343 #ifdef Q_WS_MAEMO_5
344         QDBusInterface mce(MCE_SERVICE, MCE_REQUEST_PATH,
345                            MCE_REQUEST_IF, QDBusConnection::systemBus());
346         mce.call(MCE_PREVENT_BLANK_REQ);
347 #endif // Q_WS_MAEMO_5
348         qDebug() << "MainWindow::timerEvent: Prevent display blanking";
349     }
350     AdopterWindow::timerEvent(event);
351 }
352
353 void MainWindow::about()
354 {
355     Dyalog *aboutDialog = new Dyalog(this, false);
356     aboutDialog->setWindowTitle(tr("About Dorian"));
357     QString version = Platform::instance()->version();
358     QLabel *label = new QLabel(aboutDialog);
359     label->setTextFormat(Qt::RichText);
360     label->setOpenExternalLinks(true);
361     label->setWordWrap(true);
362     label->setText(tr("<b>Dorian %1</b><br><br>"
363         "Copyright &copy; 2010-2011 by "
364         "Akos Polster &lt;akos@pipacs.com&gt;<br><br>"
365         "Licensed under GNU General Public License, Version 3<br><br>"
366         "<a href='http://dorian.garage.maemo.org/'>"
367         "dorian.garage.maemo.org</a><br><br>"
368         ).arg(version));
369     aboutDialog->addWidget(label);
370     aboutDialog->addStretch();
371     aboutDialog->show();
372 }
373
374 void MainWindow::goToNextPage()
375 {
376     next->flash();
377     prev->flash();
378     view->goNextPage();
379 }
380
381 void MainWindow::goToPreviousPage()
382 {
383     next->flash();
384     prev->flash();
385     view->goPreviousPage();
386 }
387
388 void MainWindow::onBeginUpgrade(int total)
389 {
390     libraryProgress->setVisible(total > 0);
391     libraryProgress->setWindowTitle(tr("Upgrading library"));
392     libraryProgress->setMaximum(total);
393 }
394
395 void MainWindow::onUpgrading(const QString &path)
396 {
397     libraryProgress->setLabelText(tr("Upgrading %1").
398                                   arg(QFileInfo(path).fileName()));
399     libraryProgress->setValue(libraryProgress->value() + 1);
400 }
401
402 void MainWindow::onEndUpgrade()
403 {
404     libraryProgress->hide();
405     libraryProgress->reset();
406 }
407
408 void MainWindow::onBeginLoad(int total)
409 {
410     libraryProgress->setVisible(total > 0);
411     libraryProgress->setWindowTitle(tr("Loading library"));
412     libraryProgress->setMaximum(total);
413 }
414
415 void MainWindow::onLoading(const QString &path)
416 {
417     libraryProgress->setLabelText(tr("Loading %1").
418                                   arg(QFileInfo(path).fileName()));
419     libraryProgress->setValue(libraryProgress->value() + 1);
420 }
421
422 void MainWindow::onEndLoad()
423 {
424     libraryProgress->hide();
425     libraryProgress->reset();
426 }