]> git.sur5r.net Git - minitube/blob - src/mainwindow.cpp
65d3627f63c1dc89379464222a4c070c76a74552
[minitube] / src / mainwindow.cpp
1 /* $BEGIN_LICENSE
2
3 This file is part of Minitube.
4 Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
5
6 Minitube is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 Minitube is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Minitube.  If not, see <http://www.gnu.org/licenses/>.
18
19 $END_LICENSE */
20
21 #include "mainwindow.h"
22 #include "homeview.h"
23 #include "searchview.h"
24 #include "mediaview.h"
25 #include "aboutview.h"
26 #include "downloadview.h"
27 #include "spacer.h"
28 #include "constants.h"
29 #include "iconutils.h"
30 #include "global.h"
31 #include "videodefinition.h"
32 #include "fontutils.h"
33 #include "globalshortcuts.h"
34 #include "searchparams.h"
35 #include "videosource.h"
36 #include "ytsearch.h"
37 #ifdef Q_OS_LINUX
38 #include "gnomeglobalshortcutbackend.h"
39 #endif
40 #ifdef Q_OS_MAC
41 #include "mac_startup.h"
42 #include "macfullscreen.h"
43 #include "macsupport.h"
44 #include "macutils.h"
45 #endif
46 #include "downloadmanager.h"
47 #include "ytsuggester.h"
48 #include "updatechecker.h"
49 #include "temporary.h"
50 #ifdef APP_MAC
51 #include "searchlineedit_mac.h"
52 #else
53 #include "searchlineedit.h"
54 #endif
55 #include <iostream>
56 #ifdef APP_EXTRA
57 #include "extra.h"
58 #include "updatedialog.h"
59 #endif
60 #ifdef APP_ACTIVATION
61 #include "activation.h"
62 #include "activationview.h"
63 #include "activationdialog.h"
64 #endif
65 #include "ytregions.h"
66 #include "regionsview.h"
67 #include "standardfeedsview.h"
68 #include "channelaggregator.h"
69 #include "database.h"
70 #include "videoareawidget.h"
71 #include "jsfunctions.h"
72 #include "seekslider.h"
73 #ifdef APP_YT3
74 #include "yt3.h"
75 #endif
76
77 namespace {
78 static MainWindow *singleton = 0;
79 }
80
81 MainWindow* MainWindow::instance() {
82     return singleton;
83 }
84
85 MainWindow::MainWindow() :
86     updateChecker(0),
87     aboutView(0),
88     downloadView(0),
89     regionsView(0),
90     #ifdef APP_PHONON
91     mediaObject(0),
92     audioOutput(0),
93     #endif
94     m_fullscreen(false),
95     m_compact(false) {
96
97     singleton = this;
98
99 #ifdef APP_EXTRA
100     Extra::windowSetup(this);
101 #endif
102
103     // views mechanism
104     history = new QStack<QWidget*>();
105     views = new QStackedWidget();
106     views->hide();
107     setCentralWidget(views);
108
109     // views
110     homeView = new HomeView();
111     views->addWidget(homeView);
112
113     // TODO make this lazy
114     mediaView = MediaView::instance();
115     mediaView->setEnabled(false);
116     views->addWidget(mediaView);
117
118     // build ui
119     createActions();
120     createMenus();
121     createToolBars();
122     createStatusBar();
123
124     // remove that useless menu/toolbar context menu
125     this->setContextMenuPolicy(Qt::NoContextMenu);
126
127     // event filter to block ugly toolbar tooltips
128     qApp->installEventFilter(this);
129
130     setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
131
132     // restore window position
133     readSettings();
134
135     // fix stacked widget minimum size
136     for (int i = 0; i < views->count(); i++)
137         views->widget(i)->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
138     setMinimumWidth(0);
139
140     // show the initial view
141     showHome(false);
142
143 #ifdef APP_ACTIVATION
144     if (!Activation::instance().isActivated())
145         showActivationView(false);
146 #endif
147
148     views->show();
149
150     qApp->processEvents();
151     QTimer::singleShot(50, this, SLOT(lazyInit()));
152 }
153
154 MainWindow::~MainWindow() {
155     delete history;
156 }
157
158 void MainWindow::lazyInit() {
159 #ifdef APP_PHONON
160     initPhonon();
161 #endif
162     mediaView->initialize();
163 #ifdef APP_PHONON
164     mediaView->setMediaObject(mediaObject);
165 #endif
166     qApp->processEvents();
167
168     // CLI
169     if (qApp->arguments().size() > 1) {
170         QString query = qApp->arguments().at(1);
171         if (query.startsWith(QLatin1String("--"))) {
172             messageReceived(query);
173             qApp->quit();
174         } else {
175             SearchParams *searchParams = new SearchParams();
176             searchParams->setKeywords(query);
177             showMedia(searchParams);
178         }
179     }
180
181     // Global shortcuts
182     GlobalShortcuts &shortcuts = GlobalShortcuts::instance();
183 #ifdef Q_OS_LINUX
184     if (GnomeGlobalShortcutBackend::IsGsdAvailable())
185         shortcuts.setBackend(new GnomeGlobalShortcutBackend(&shortcuts));
186 #endif
187 #ifdef Q_OS_MAC
188     mac::MacSetup();
189 #endif
190     connect(&shortcuts, SIGNAL(PlayPause()), pauseAct, SLOT(trigger()));
191     connect(&shortcuts, SIGNAL(Stop()), this, SLOT(stop()));
192     connect(&shortcuts, SIGNAL(Next()), skipAct, SLOT(trigger()));
193     connect(&shortcuts, SIGNAL(Previous()), skipBackwardAct, SLOT(trigger()));
194     // connect(&shortcuts, SIGNAL(StopAfter()), The::globalActions()->value("stopafterthis"), SLOT(toggle()));
195
196     connect(DownloadManager::instance(), SIGNAL(statusMessageChanged(QString)),
197             SLOT(updateDownloadMessage(QString)));
198     connect(DownloadManager::instance(), SIGNAL(finished()),
199             SLOT(downloadsFinished()));
200
201     setAcceptDrops(true);
202
203     mouseTimer = new QTimer(this);
204     mouseTimer->setInterval(5000);
205     mouseTimer->setSingleShot(true);
206     connect(mouseTimer, SIGNAL(timeout()), SLOT(hideMouse()));
207
208     JsFunctions::instance();
209
210     checkForUpdate();
211 }
212
213 void MainWindow::changeEvent(QEvent* event) {
214 #ifdef APP_MAC
215     if (event->type() == QEvent::WindowStateChange) {
216         The::globalActions()->value("minimize")->setEnabled(!isMinimized());
217     }
218 #endif
219     QMainWindow::changeEvent(event);
220 }
221
222 bool MainWindow::eventFilter(QObject *obj, QEvent *event) {
223
224     if (m_fullscreen && event->type() == QEvent::MouseMove) {
225
226         QMouseEvent *mouseEvent = static_cast<QMouseEvent*> (event);
227         const int x = mouseEvent->pos().x();
228         const QString className = QString(obj->metaObject()->className());
229         const bool isHoveringVideo =
230                 (className == QLatin1String("QGLWidget")) ||
231                 (className == QLatin1String("VideoAreaWidget"));
232
233         // qDebug() << obj << mouseEvent->pos() << isHoveringVideo << mediaView->isPlaylistVisible();
234
235         if (mediaView && mediaView->isPlaylistVisible()) {
236             if (isHoveringVideo && x > 5) mediaView->setPlaylistVisible(false);
237         } else {
238             if (isHoveringVideo && x >= 0 && x < 5) mediaView->setPlaylistVisible(true);
239         }
240
241 #ifndef APP_MAC
242         const int y = mouseEvent->pos().y();
243         if (mainToolBar->isVisible()) {
244             if (isHoveringVideo && y > 5) mainToolBar->setVisible(false);
245         } else {
246             if (isHoveringVideo && y >= 0 && y < 5) mainToolBar->setVisible(true);
247         }
248 #endif
249
250         // show the normal cursor
251         unsetCursor();
252         // then hide it again after a few seconds
253         mouseTimer->start();
254
255     }
256
257     if (event->type() == QEvent::ToolTip) {
258         // kill tooltips
259         return true;
260     }
261     // standard event processing
262     return QMainWindow::eventFilter(obj, event);
263 }
264
265 void MainWindow::createActions() {
266
267     QHash<QString, QAction*> *actions = The::globalActions();
268
269     stopAct = new QAction(IconUtils::icon("media-playback-stop"), tr("&Stop"), this);
270     stopAct->setStatusTip(tr("Stop playback and go back to the search view"));
271     stopAct->setShortcuts(QList<QKeySequence>() << QKeySequence(Qt::Key_Escape) << QKeySequence(Qt::Key_MediaStop));
272     stopAct->setEnabled(false);
273     actions->insert("stop", stopAct);
274     connect(stopAct, SIGNAL(triggered()), SLOT(stop()));
275
276     skipBackwardAct = new QAction(
277                 IconUtils::icon("media-skip-backward"),
278                 tr("P&revious"), this);
279     skipBackwardAct->setStatusTip(tr("Go back to the previous track"));
280     skipBackwardAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Left));
281     skipBackwardAct->setEnabled(false);
282     actions->insert("previous", skipBackwardAct);
283     connect(skipBackwardAct, SIGNAL(triggered()), mediaView, SLOT(skipBackward()));
284
285     skipAct = new QAction(IconUtils::icon("media-skip-forward"), tr("S&kip"), this);
286     skipAct->setStatusTip(tr("Skip to the next video"));
287     skipAct->setShortcuts(QList<QKeySequence>() << QKeySequence(Qt::CTRL + Qt::Key_Right) << QKeySequence(Qt::Key_MediaNext));
288     skipAct->setEnabled(false);
289     actions->insert("skip", skipAct);
290     connect(skipAct, SIGNAL(triggered()), mediaView, SLOT(skip()));
291
292     pauseAct = new QAction(IconUtils::icon("media-playback-start"), tr("&Play"), this);
293     pauseAct->setStatusTip(tr("Resume playback"));
294     pauseAct->setShortcuts(QList<QKeySequence>() << QKeySequence(Qt::Key_Space) << QKeySequence(Qt::Key_MediaPlay));
295     pauseAct->setEnabled(false);
296     actions->insert("pause", pauseAct);
297     connect(pauseAct, SIGNAL(triggered()), mediaView, SLOT(pause()));
298
299     fullscreenAct = new QAction(IconUtils::icon("view-fullscreen"), tr("&Full Screen"), this);
300     fullscreenAct->setStatusTip(tr("Go full screen"));
301     QList<QKeySequence> fsShortcuts;
302 #ifdef APP_MAC
303     fsShortcuts << QKeySequence(Qt::CTRL + Qt::META + Qt::Key_F);
304 #else
305     fsShortcuts << QKeySequence(Qt::Key_F11) << QKeySequence(Qt::ALT + Qt::Key_Return);
306 #endif
307     fullscreenAct->setShortcuts(fsShortcuts);
308     fullscreenAct->setShortcutContext(Qt::ApplicationShortcut);
309     fullscreenAct->setPriority(QAction::LowPriority);
310     actions->insert("fullscreen", fullscreenAct);
311     connect(fullscreenAct, SIGNAL(triggered()), this, SLOT(fullscreen()));
312
313     compactViewAct = new QAction(tr("&Compact Mode"), this);
314     compactViewAct->setStatusTip(tr("Hide the playlist and the toolbar"));
315 #ifdef APP_MAC
316     compactViewAct->setShortcut(QKeySequence(Qt::CTRL + Qt::META + Qt::Key_C));
317 #else
318     compactViewAct->setShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_C));
319 #endif
320     compactViewAct->setCheckable(true);
321     compactViewAct->setChecked(false);
322     compactViewAct->setEnabled(false);
323     actions->insert("compactView", compactViewAct);
324     connect(compactViewAct, SIGNAL(toggled(bool)), this, SLOT(compactView(bool)));
325
326     webPageAct = new QAction(tr("Open the &YouTube Page"), this);
327     webPageAct->setStatusTip(tr("Go to the YouTube video page and pause playback"));
328     webPageAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Y));
329     webPageAct->setEnabled(false);
330     actions->insert("webpage", webPageAct);
331     connect(webPageAct, SIGNAL(triggered()), mediaView, SLOT(openWebPage()));
332
333     copyPageAct = new QAction(tr("Copy the YouTube &Link"), this);
334     copyPageAct->setStatusTip(tr("Copy the current video YouTube link to the clipboard"));
335     copyPageAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_L));
336     copyPageAct->setEnabled(false);
337     actions->insert("pagelink", copyPageAct);
338     connect(copyPageAct, SIGNAL(triggered()), mediaView, SLOT(copyWebPage()));
339
340     copyLinkAct = new QAction(tr("Copy the Video Stream &URL"), this);
341     copyLinkAct->setStatusTip(tr("Copy the current video stream URL to the clipboard"));
342     copyLinkAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_U));
343     copyLinkAct->setEnabled(false);
344     actions->insert("videolink", copyLinkAct);
345     connect(copyLinkAct, SIGNAL(triggered()), mediaView, SLOT(copyVideoLink()));
346
347     findVideoPartsAct = new QAction(tr("Find Video &Parts"), this);
348     findVideoPartsAct->setStatusTip(tr("Find other video parts hopefully in the right order"));
349     findVideoPartsAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_P));
350     findVideoPartsAct->setEnabled(false);
351     connect(findVideoPartsAct, SIGNAL(triggered()), mediaView, SLOT(findVideoParts()));
352     actions->insert("findVideoParts", findVideoPartsAct);
353
354     removeAct = new QAction(tr("&Remove"), this);
355     removeAct->setStatusTip(tr("Remove the selected videos from the playlist"));
356     removeAct->setShortcuts(QList<QKeySequence>() << QKeySequence("Del") << QKeySequence("Backspace"));
357     removeAct->setEnabled(false);
358     actions->insert("remove", removeAct);
359     connect(removeAct, SIGNAL(triggered()), mediaView, SLOT(removeSelected()));
360
361     moveUpAct = new QAction(tr("Move &Up"), this);
362     moveUpAct->setStatusTip(tr("Move up the selected videos in the playlist"));
363     moveUpAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Up));
364     moveUpAct->setEnabled(false);
365     actions->insert("moveUp", moveUpAct);
366     connect(moveUpAct, SIGNAL(triggered()), mediaView, SLOT(moveUpSelected()));
367
368     moveDownAct = new QAction(tr("Move &Down"), this);
369     moveDownAct->setStatusTip(tr("Move down the selected videos in the playlist"));
370     moveDownAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Down));
371     moveDownAct->setEnabled(false);
372     actions->insert("moveDown", moveDownAct);
373     connect(moveDownAct, SIGNAL(triggered()), mediaView, SLOT(moveDownSelected()));
374
375     clearAct = new QAction(tr("&Clear Recent Searches"), this);
376     clearAct->setMenuRole(QAction::ApplicationSpecificRole);
377     clearAct->setShortcuts(QList<QKeySequence>()
378                            << QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_Delete)
379                            << QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_Backspace));
380     clearAct->setStatusTip(tr("Clear the search history. Cannot be undone."));
381     clearAct->setEnabled(true);
382     actions->insert("clearRecentKeywords", clearAct);
383     connect(clearAct, SIGNAL(triggered()), SLOT(clearRecentKeywords()));
384
385     quitAct = new QAction(tr("&Quit"), this);
386     quitAct->setMenuRole(QAction::QuitRole);
387     quitAct->setShortcut(QKeySequence(QKeySequence::Quit));
388     quitAct->setStatusTip(tr("Bye"));
389     actions->insert("quit", quitAct);
390     connect(quitAct, SIGNAL(triggered()), SLOT(quit()));
391
392     siteAct = new QAction(tr("&Website"), this);
393     siteAct->setShortcut(QKeySequence::HelpContents);
394     siteAct->setStatusTip(tr("%1 on the Web").arg(Constants::NAME));
395     actions->insert("site", siteAct);
396     connect(siteAct, SIGNAL(triggered()), this, SLOT(visitSite()));
397
398 #if !defined(APP_MAC) && !defined(APP_WIN)
399     donateAct = new QAction(tr("Make a &Donation"), this);
400     donateAct->setStatusTip(tr("Please support the continued development of %1").arg(Constants::NAME));
401     actions->insert("donate", donateAct);
402     connect(donateAct, SIGNAL(triggered()), this, SLOT(donate()));
403 #endif
404
405     aboutAct = new QAction(tr("&About"), this);
406     aboutAct->setMenuRole(QAction::AboutRole);
407     aboutAct->setStatusTip(tr("Info about %1").arg(Constants::NAME));
408     actions->insert("about", aboutAct);
409     connect(aboutAct, SIGNAL(triggered()), this, SLOT(about()));
410
411     // Invisible actions
412
413     searchFocusAct = new QAction(this);
414     searchFocusAct->setShortcut(QKeySequence::Find);
415     searchFocusAct->setStatusTip(tr("Search"));
416     actions->insert("search", searchFocusAct);
417     connect(searchFocusAct, SIGNAL(triggered()), this, SLOT(searchFocus()));
418     addAction(searchFocusAct);
419
420     volumeUpAct = new QAction(this);
421     volumeUpAct->setShortcuts(QList<QKeySequence>() << QKeySequence(Qt::CTRL + Qt::Key_Plus));
422     actions->insert("volume-up", volumeUpAct);
423     connect(volumeUpAct, SIGNAL(triggered()), this, SLOT(volumeUp()));
424     addAction(volumeUpAct);
425
426     volumeDownAct = new QAction(this);
427     volumeDownAct->setShortcuts(QList<QKeySequence>() << QKeySequence(Qt::CTRL + Qt::Key_Minus));
428     actions->insert("volume-down", volumeDownAct);
429     connect(volumeDownAct, SIGNAL(triggered()), this, SLOT(volumeDown()));
430     addAction(volumeDownAct);
431
432     volumeMuteAct = new QAction(this);
433     volumeMuteAct->setIcon(IconUtils::icon("audio-volume-high"));
434     volumeMuteAct->setStatusTip(tr("Mute volume"));
435     volumeMuteAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_K));
436     actions->insert("volume-mute", volumeMuteAct);
437     connect(volumeMuteAct, SIGNAL(triggered()), SLOT(volumeMute()));
438     addAction(volumeMuteAct);
439
440     QAction *definitionAct = new QAction(this);
441 #ifdef Q_OS_LINUX
442     definitionAct->setIcon(IconUtils::tintedIcon("video-display", QColor(0, 0, 0),
443                                                  QList<QSize>() << QSize(16, 16)));
444 #else
445     definitionAct->setIcon(IconUtils::icon("video-display"));
446 #endif
447     definitionAct->setShortcuts(QList<QKeySequence>() << QKeySequence(Qt::CTRL + Qt::Key_D));
448     /*
449     QMenu *definitionMenu = new QMenu(this);
450     foreach (QString definition, VideoDefinition::getDefinitionNames()) {
451         definitionMenu->addAction(definition);
452     }
453     definitionAct->setMenu(definitionMenu);
454     */
455     actions->insert("definition", definitionAct);
456     connect(definitionAct, SIGNAL(triggered()), SLOT(toggleDefinitionMode()));
457     addAction(definitionAct);
458
459     QAction *action;
460
461     action = new QAction(IconUtils::icon("media-playback-start"), tr("&Manually Start Playing"), this);
462     action->setStatusTip(tr("Manually start playing videos"));
463     action->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_T));
464     action->setCheckable(true);
465     connect(action, SIGNAL(toggled(bool)), SLOT(setManualPlay(bool)));
466     actions->insert("manualplay", action);
467
468     action = new QAction(tr("&Downloads"), this);
469     action->setStatusTip(tr("Show details about video downloads"));
470     action->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_J));
471     action->setCheckable(true);
472     action->setIcon(IconUtils::icon("document-save"));
473     action->setVisible(false);
474     connect(action, SIGNAL(toggled(bool)), SLOT(toggleDownloads(bool)));
475     actions->insert("downloads", action);
476
477     action = new QAction(tr("&Download"), this);
478     action->setStatusTip(tr("Download the current video"));
479     action->setShortcut(QKeySequence::Save);
480     action->setIcon(IconUtils::icon("document-save"));
481     action->setEnabled(false);
482     action->setVisible(false);
483     action->setPriority(QAction::LowPriority);
484     connect(action, SIGNAL(triggered()), mediaView, SLOT(downloadVideo()));
485     actions->insert("download", action);
486
487 #ifdef APP_SNAPSHOT
488     action = new QAction(tr("Take &Snapshot"), this);
489     action->setShortcut(QKeySequence(Qt::Key_F9));
490     action->setEnabled(false);
491     actions->insert("snapshot", action);
492     connect(action, SIGNAL(triggered()), mediaView, SLOT(snapshot()));
493 #endif
494
495     action = new QAction(tr("&Subscribe to Channel"), this);
496     action->setProperty("originalText", action->text());
497     action->setShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_S));
498     action->setEnabled(false);
499     connect(action, SIGNAL(triggered()), mediaView, SLOT(toggleSubscription()));
500     actions->insert("subscribe-channel", action);
501     mediaView->updateSubscriptionAction(0, false);
502
503     QString shareTip = tr("Share the current video using %1");
504
505     action = new QAction("&Twitter", this);
506     action->setStatusTip(shareTip.arg("Twitter"));
507     action->setEnabled(false);
508     actions->insert("twitter", action);
509     connect(action, SIGNAL(triggered()), mediaView, SLOT(shareViaTwitter()));
510
511     action = new QAction("&Facebook", this);
512     action->setStatusTip(shareTip.arg("Facebook"));
513     action->setEnabled(false);
514     actions->insert("facebook", action);
515     connect(action, SIGNAL(triggered()), mediaView, SLOT(shareViaFacebook()));
516
517     action = new QAction("&Buffer", this);
518     action->setStatusTip(shareTip.arg("Buffer"));
519     action->setEnabled(false);
520     actions->insert("buffer", action);
521     connect(action, SIGNAL(triggered()), mediaView, SLOT(shareViaBuffer()));
522
523     action = new QAction(tr("&Email"), this);
524     action->setStatusTip(shareTip.arg(tr("Email")));
525     action->setEnabled(false);
526     actions->insert("email", action);
527     connect(action, SIGNAL(triggered()), mediaView, SLOT(shareViaEmail()));
528
529     action = new QAction(tr("&Close"), this);
530     action->setShortcut(QKeySequence(QKeySequence::Close));
531     actions->insert("close", action);
532     connect(action, SIGNAL(triggered()), SLOT(close()));
533
534     action = new QAction(Constants::NAME, this);
535     action->setShortcut(QKeySequence(Qt::CTRL + Qt::ALT + Qt::Key_1));
536     actions->insert("restore", action);
537     connect(action, SIGNAL(triggered()), SLOT(restore()));
538
539     action = new QAction(IconUtils::icon("go-top"), tr("&Float on Top"), this);
540     action->setCheckable(true);
541     actions->insert("ontop", action);
542     connect(action, SIGNAL(toggled(bool)), SLOT(floatOnTop(bool)));
543
544     action = new QAction(IconUtils::icon("media-playback-stop"), tr("&Stop After This Video"), this);
545     action->setShortcut(QKeySequence(Qt::SHIFT + Qt::Key_Escape));
546     action->setCheckable(true);
547     action->setEnabled(false);
548     actions->insert("stopafterthis", action);
549     connect(action, SIGNAL(toggled(bool)), SLOT(showStopAfterThisInStatusBar(bool)));
550
551     action = new QAction(tr("&Report an Issue..."), this);
552     actions->insert("report-issue", action);
553     connect(action, SIGNAL(triggered()), SLOT(reportIssue()));
554
555     action = new QAction(tr("&Refine Search..."), this);
556     action->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_E));
557     action->setCheckable(true);
558     action->setEnabled(false);
559     actions->insert("refine-search", action);
560
561     action = new QAction(YTRegions::worldwideRegion().name, this);
562     actions->insert("worldwide-region", action);
563
564     action = new QAction(YTRegions::localRegion().name, this);
565     actions->insert("local-region", action);
566
567     action = new QAction(tr("More..."), this);
568     actions->insert("more-region", action);
569
570     action = new QAction(IconUtils::icon("view-list"), tr("&Related Videos"), this);
571     action->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_R));
572     action->setStatusTip(tr("Watch videos related to the current one"));
573     action->setEnabled(false);
574     action->setPriority(QAction::LowPriority);
575     connect(action, SIGNAL(triggered()), mediaView, SLOT(relatedVideos()));
576     actions->insert("related-videos", action);
577
578     action = new QAction(tr("Open in &Browser..."), this);
579     action->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_B));
580     action->setEnabled(false);
581     actions->insert("open-in-browser", action);
582     connect(action, SIGNAL(triggered()), mediaView, SLOT(openInBrowser()));
583
584 #ifdef APP_MAC_STORE
585     action = new QAction(tr("&Love %1? Rate it!").arg(Constants::NAME), this);
586     actions->insert("app-store", action);
587     connect(action, SIGNAL(triggered()), SLOT(rateOnAppStore()));
588 #endif
589
590 #ifdef APP_ACTIVATION
591     Extra::createActivationAction(tr("Buy %1...").arg(Constants::NAME));
592 #endif
593
594     // common action properties
595     foreach (QAction *action, actions->values()) {
596         // add actions to the MainWindow so that they work
597         // when the menu is hidden
598         addAction(action);
599         IconUtils::setupAction(action);
600     }
601 }
602
603 void MainWindow::createMenus() {
604
605     QHash<QString, QMenu*> *menus = The::globalMenus();
606
607     fileMenu = menuBar()->addMenu(tr("&Application"));
608 #ifdef APP_ACTIVATION
609     QAction *buyAction = The::globalActions()->value("buy");
610     if (buyAction) fileMenu->addAction(buyAction);
611 #ifndef APP_MAC
612     fileMenu->addSeparator();
613 #endif
614 #endif
615     fileMenu->addAction(clearAct);
616 #ifndef APP_MAC
617     fileMenu->addSeparator();
618 #endif
619     fileMenu->addAction(quitAct);
620
621     QMenu* playbackMenu = menuBar()->addMenu(tr("&Playback"));
622     menus->insert("playback", playbackMenu);
623     playbackMenu->addAction(pauseAct);
624     playbackMenu->addAction(stopAct);
625     playbackMenu->addAction(The::globalActions()->value("stopafterthis"));
626     playbackMenu->addSeparator();
627     playbackMenu->addAction(skipAct);
628     playbackMenu->addAction(skipBackwardAct);
629     playbackMenu->addSeparator();
630     playbackMenu->addAction(The::globalActions()->value("manualplay"));
631 #ifdef APP_MAC
632     MacSupport::dockMenu(playbackMenu);
633 #endif
634
635     playlistMenu = menuBar()->addMenu(tr("&Playlist"));
636     menus->insert("playlist", playlistMenu);
637     playlistMenu->addAction(removeAct);
638     playlistMenu->addSeparator();
639     playlistMenu->addAction(moveUpAct);
640     playlistMenu->addAction(moveDownAct);
641     playlistMenu->addSeparator();
642     playlistMenu->addAction(The::globalActions()->value("refine-search"));
643
644     QMenu* videoMenu = menuBar()->addMenu(tr("&Video"));
645     menus->insert("video", videoMenu);
646     videoMenu->addAction(The::globalActions()->value("related-videos"));
647     videoMenu->addAction(findVideoPartsAct);
648     videoMenu->addSeparator();
649     videoMenu->addAction(The::globalActions()->value("subscribe-channel"));
650 #ifdef APP_SNAPSHOT
651     videoMenu->addSeparator();
652     videoMenu->addAction(The::globalActions()->value("snapshot"));
653 #endif
654     videoMenu->addSeparator();
655     videoMenu->addAction(webPageAct);
656     videoMenu->addAction(copyLinkAct);
657     videoMenu->addAction(The::globalActions()->value("open-in-browser"));
658     videoMenu->addAction(The::globalActions()->value("download"));
659
660     QMenu* viewMenu = menuBar()->addMenu(tr("&View"));
661     menus->insert("view", viewMenu);
662     viewMenu->addAction(fullscreenAct);
663     viewMenu->addAction(compactViewAct);
664     viewMenu->addSeparator();
665     viewMenu->addAction(The::globalActions()->value("ontop"));
666
667     QMenu* shareMenu = menuBar()->addMenu(tr("&Share"));
668     menus->insert("share", shareMenu);
669     shareMenu->addAction(copyPageAct);
670     shareMenu->addSeparator();
671     shareMenu->addAction(The::globalActions()->value("twitter"));
672     shareMenu->addAction(The::globalActions()->value("facebook"));
673     shareMenu->addAction(The::globalActions()->value("buffer"));
674     shareMenu->addSeparator();
675     shareMenu->addAction(The::globalActions()->value("email"));
676
677 #ifdef APP_MAC
678     MacSupport::windowMenu(this);
679 #endif
680
681     helpMenu = menuBar()->addMenu(tr("&Help"));
682     helpMenu->addAction(siteAct);
683 #if !defined(APP_MAC) && !defined(APP_WIN)
684     helpMenu->addAction(donateAct);
685 #endif
686     helpMenu->addAction(The::globalActions()->value("report-issue"));
687     helpMenu->addAction(aboutAct);
688
689 #ifdef APP_MAC_STORE
690     helpMenu->addSeparator();
691     helpMenu->addAction(The::globalActions()->value("app-store"));
692 #endif
693 }
694
695 void MainWindow::createToolBars() {
696
697     setUnifiedTitleAndToolBarOnMac(true);
698
699     mainToolBar = new QToolBar(this);
700     mainToolBar->setToolButtonStyle(Qt::ToolButtonIconOnly);
701     mainToolBar->setFloatable(false);
702     mainToolBar->setMovable(false);
703
704 #if defined(APP_MAC) | defined(APP_WIN)
705     mainToolBar->setIconSize(QSize(32, 32));
706 #endif
707
708     mainToolBar->addAction(stopAct);
709     mainToolBar->addAction(pauseAct);
710     mainToolBar->addAction(skipAct);
711
712     mainToolBar->addAction(The::globalActions()->value("related-videos"));
713     mainToolBar->addAction(The::globalActions()->value("download"));
714
715     bool addFullScreenAct = true;
716 #ifdef Q_OS_MAC
717     addFullScreenAct = !mac::CanGoFullScreen(winId());
718 #endif
719     if (addFullScreenAct) mainToolBar->addAction(fullscreenAct);
720
721     mainToolBar->addWidget(new Spacer());
722
723     QFont smallerFont = FontUtils::small();
724     currentTime = new QLabel(mainToolBar);
725     currentTime->setFont(smallerFont);
726     mainToolBar->addWidget(currentTime);
727
728     mainToolBar->addWidget(new Spacer());
729
730 #ifdef APP_PHONON_SEEK
731     seekSlider = new Phonon::SeekSlider(this);
732     seekSlider->setTracking(true);
733     seekSlider->setIconVisible(false);
734     seekSlider->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred);
735     mainToolBar->addWidget(seekSlider);
736 #else
737     slider = new SeekSlider(this);
738     slider->setEnabled(false);
739     slider->setTracking(false);
740     slider->setMaximum(1000);
741     slider->setOrientation(Qt::Horizontal);
742     slider->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred);
743     mainToolBar->addWidget(slider);
744 #endif
745
746     /*
747     mainToolBar->addWidget(new Spacer());
748     totalTime = new QLabel(mainToolBar);
749     totalTime->setFont(smallerFont);
750     mainToolBar->addWidget(totalTime);
751     */
752
753     mainToolBar->addWidget(new Spacer());
754     mainToolBar->addAction(volumeMuteAct);
755 #ifdef Q_WS_X11
756     QToolButton *volumeMuteButton = qobject_cast<QToolButton *>(mainToolBar->widgetForAction(volumeMuteAct));
757     volumeMuteButton->setIcon(volumeMuteButton->icon().pixmap(16));
758 #endif
759
760 #ifdef APP_PHONON
761     volumeSlider = new Phonon::VolumeSlider(this);
762     volumeSlider->setMuteVisible(false);
763     // qDebug() << volumeSlider->children();
764     // status tip for the volume slider
765     QSlider* volumeQSlider = volumeSlider->findChild<QSlider*>();
766     if (volumeQSlider)
767         volumeQSlider->setStatusTip(tr("Press %1 to raise the volume, %2 to lower it").arg(
768                                         volumeUpAct->shortcut().toString(QKeySequence::NativeText), volumeDownAct->shortcut().toString(QKeySequence::NativeText)));
769     // this makes the volume slider smaller
770     volumeSlider->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
771     mainToolBar->addWidget(volumeSlider);
772 #endif
773
774     mainToolBar->addWidget(new Spacer());
775
776 #ifdef APP_MAC
777     SearchWrapper* searchWrapper = new SearchWrapper(this);
778     toolbarSearch = searchWrapper->getSearchLineEdit();
779 #else
780     toolbarSearch = new SearchLineEdit(this);
781 #endif
782     toolbarSearch->setMinimumWidth(toolbarSearch->fontInfo().pixelSize()*15);
783     toolbarSearch->setSuggester(new YTSuggester(this));
784     connect(toolbarSearch, SIGNAL(search(const QString&)), SLOT(search(const QString&)));
785     connect(toolbarSearch, SIGNAL(suggestionAccepted(Suggestion*)), SLOT(suggestionAccepted(Suggestion*)));
786     toolbarSearch->setStatusTip(searchFocusAct->statusTip());
787 #ifdef APP_MAC
788     mainToolBar->addWidget(searchWrapper);
789 #else
790     mainToolBar->addWidget(toolbarSearch);
791     mainToolBar->addWidget(new Spacer());
792 #endif
793
794     addToolBar(mainToolBar);
795 }
796
797 void MainWindow::createStatusBar() {
798     statusToolBar = new QToolBar(this);
799     statusToolBar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
800     statusToolBar->setIconSize(QSize(16, 16));
801     statusToolBar->addAction(The::globalActions()->value("downloads"));
802
803     regionButton = new QToolButton(this);
804     regionButton->setStatusTip(tr("Choose your content location"));
805     regionButton->setIconSize(QSize(16, 16));
806     regionButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
807     regionAction = statusToolBar->addWidget(regionButton);
808     regionAction->setVisible(false);
809
810     QAction *localAction = The::globalActions()->value("local-region");
811     if (!localAction->text().isEmpty()) {
812         regionButton->setPopupMode(QToolButton::InstantPopup);
813         QMenu *regionMenu = new QMenu(this);
814         regionMenu->addAction(The::globalActions()->value("worldwide-region"));
815         regionMenu->addAction(localAction);
816         regionMenu->addSeparator();
817         QAction *moreRegionsAction = The::globalActions()->value("more-region");
818         regionMenu->addAction(moreRegionsAction);
819         connect(moreRegionsAction, SIGNAL(triggered()), SLOT(showRegionsView()));
820         regionButton->setMenu(regionMenu);
821     } else {
822         connect(regionButton, SIGNAL(clicked()), SLOT(showRegionsView()));
823     }
824
825     /* Stupid code that generates the QRC items
826     foreach(YTRegion r, YTRegions::list())
827         qDebug() << QString("<file>flags/%1.png</file>").arg(r.id.toLower());
828     */
829
830     statusToolBar->addAction(The::globalActions()->value("definition"));
831
832     statusBar()->addPermanentWidget(statusToolBar);
833     statusBar()->show();
834 }
835
836 void MainWindow::showStopAfterThisInStatusBar(bool show) {
837     QAction* action = The::globalActions()->value("stopafterthis");
838     showActionInStatusBar(action, show);
839 }
840
841 void MainWindow::showActionInStatusBar(QAction* action, bool show) {
842 #ifdef APP_EXTRA
843     Extra::fadeInWidget(statusBar(), statusBar());
844 #endif
845     if (show) {
846         statusToolBar->insertAction(statusToolBar->actions().first(), action);
847     } else {
848         statusToolBar->removeAction(action);
849     }
850 }
851
852 void MainWindow::readSettings() {
853     QSettings settings;
854     if (settings.contains("geometry")) {
855         restoreGeometry(settings.value("geometry").toByteArray());
856 #ifdef APP_MAC
857         MacSupport::fixGeometry(this);
858 #endif
859     } else {
860         setGeometry(100, 100, 1000, 500);
861     }
862     const VideoDefinition& firstDefinition = VideoDefinition::getDefinitions().first();
863     setDefinitionMode(settings.value("definition", firstDefinition.getName()).toString());
864     The::globalActions()->value("manualplay")->setChecked(settings.value("manualplay", false).toBool());
865 }
866
867 void MainWindow::writeSettings() {
868     QSettings settings;
869
870     settings.setValue("geometry", saveGeometry());
871     mediaView->saveSplitterState();
872
873 #ifdef APP_PHONON
874     if (audioOutput->volume() > 0.1)
875         settings.setValue("volume", audioOutput->volume());
876     // settings.setValue("volumeMute", audioOutput->isMuted());
877 #endif
878
879     settings.setValue("manualplay", The::globalActions()->value("manualplay")->isChecked());
880 }
881
882 void MainWindow::goBack() {
883     if ( history->size() > 1 ) {
884         history->pop();
885         QWidget *widget = history->pop();
886         showWidget(widget);
887     }
888 }
889
890 void MainWindow::showWidget(QWidget* widget, bool transition) {
891     if (compactViewAct->isChecked())
892         compactViewAct->toggle();
893
894     setUpdatesEnabled(false);
895
896     // call hide method on the current view
897     View* oldView = dynamic_cast<View *> (views->currentWidget());
898     if (oldView) {
899         oldView->disappear();
900         views->currentWidget()->setEnabled(false);
901     } else qDebug() << "Cannot cast view";
902
903     // call show method on the new view
904     View* newView = dynamic_cast<View *> (widget);
905     if (newView) {
906         widget->setEnabled(true);
907         QHash<QString,QVariant> metadata = newView->metadata();
908         QString title = metadata.value("title").toString();
909         if (title.isEmpty()) title = Constants::NAME;
910         else title += QLatin1String(" - ") + Constants::NAME;
911         setWindowTitle(title);
912         QString desc = metadata.value("description").toString();
913         if (!desc.isEmpty()) showMessage(desc);
914         newView->appear();
915
916         // dynamic view actions
917         foreach (QAction* action, viewActions)
918             showActionInStatusBar(action, false);
919         viewActions = newView->getViewActions();
920         foreach (QAction* action, viewActions)
921             showActionInStatusBar(action, true);
922
923     }
924
925     const bool isMediaView = widget == mediaView;
926
927     stopAct->setEnabled(isMediaView);
928     compactViewAct->setEnabled(isMediaView);
929     toolbarSearch->setEnabled(widget == homeView || isMediaView || widget == downloadView);
930
931     aboutAct->setEnabled(widget != aboutView);
932     The::globalActions()->value("downloads")->setChecked(widget == downloadView);
933
934     QWidget *oldWidget = views->currentWidget();
935     if (oldWidget)
936         oldWidget->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
937
938     views->setCurrentWidget(widget);
939     widget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
940
941     setUpdatesEnabled(true);
942
943 #ifdef APP_EXTRA
944     // if (transition && (oldWidget != mediaView || !mediaView->getVideoArea()->isVideoShown()))
945     if (transition)
946         Extra::fadeInWidget(oldWidget, widget);
947 #else
948     Q_UNUSED(transition);
949 #endif
950
951     history->push(widget);
952 }
953
954 void MainWindow::about() {
955     if (!aboutView) {
956         aboutView = new AboutView(this);
957         views->addWidget(aboutView);
958     }
959     showWidget(aboutView);
960 }
961
962 void MainWindow::visitSite() {
963     QUrl url(Constants::WEBSITE);
964     statusBar()->showMessage(QString(tr("Opening %1").arg(url.toString())));
965     QDesktopServices::openUrl(url);
966 }
967
968 void MainWindow::donate() {
969     QUrl url(QString(Constants::WEBSITE) + "#donate");
970     statusBar()->showMessage(QString(tr("Opening %1").arg(url.toString())));
971     QDesktopServices::openUrl(url);
972 }
973
974 void MainWindow::reportIssue() {
975     QUrl url("http://flavio.tordini.org/forums/forum/minitube-forums/minitube-troubleshooting");
976     QDesktopServices::openUrl(url);
977 }
978
979 void MainWindow::quit() {
980 #ifdef APP_MAC
981     if (!confirmQuit()) {
982         return;
983     }
984 #endif
985     // do not save geometry when in full screen or in compact mode
986     if (!m_fullscreen && !compactViewAct->isChecked()) {
987         writeSettings();
988     }
989     // mediaView->stop();
990     Temporary::deleteAll();
991     ChannelAggregator::instance()->stop();
992     ChannelAggregator::instance()->cleanup();
993     Database::shutdown();
994     qApp->quit();
995 }
996
997 void MainWindow::closeEvent(QCloseEvent *event) {
998 #ifdef APP_MAC
999     mac::closeWindow(winId());
1000     event->ignore();
1001 #else
1002     if (!confirmQuit()) {
1003         event->ignore();
1004         return;
1005     }
1006     QWidget::closeEvent(event);
1007     quit();
1008 #endif
1009 }
1010
1011 bool MainWindow::confirmQuit() {
1012     if (DownloadManager::instance()->activeItems() > 0) {
1013         QMessageBox msgBox(this);
1014         msgBox.setIconPixmap(QPixmap(":/images/app.png").scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation));
1015         msgBox.setText(tr("Do you want to exit %1 with a download in progress?").arg(Constants::NAME));
1016         msgBox.setInformativeText(tr("If you close %1 now, this download will be cancelled.").arg(Constants::NAME));
1017         msgBox.setModal(true);
1018         // make it a "sheet" on the Mac
1019         msgBox.setWindowModality(Qt::WindowModal);
1020
1021         msgBox.addButton(tr("Close and cancel download"), QMessageBox::RejectRole);
1022         QPushButton *waitButton = msgBox.addButton(tr("Wait for download to finish"), QMessageBox::ActionRole);
1023
1024         msgBox.exec();
1025
1026         if (msgBox.clickedButton() == waitButton) {
1027             return false;
1028         }
1029     }
1030     return true;
1031 }
1032
1033 void MainWindow::showHome(bool transition) {
1034     showWidget(homeView, transition);
1035     currentTime->clear();
1036     // totalTime->clear();
1037 }
1038
1039 void MainWindow::showMedia(SearchParams *searchParams) {
1040     showWidget(mediaView);
1041     mediaView->search(searchParams);
1042 }
1043
1044 void MainWindow::showMedia(VideoSource *videoSource) {
1045     showWidget(mediaView);
1046     mediaView->setVideoSource(videoSource);
1047 }
1048
1049 #ifdef APP_PHONON
1050 void MainWindow::stateChanged(Phonon::State newState, Phonon::State /* oldState */) {
1051
1052     // qDebug() << "Phonon state: " << newState;
1053
1054     switch (newState) {
1055
1056     case Phonon::ErrorState:
1057         if (mediaObject->errorType() == Phonon::FatalError) {
1058             // Do not display because we try to play incomplete video files and sometimes trigger this
1059             // We retry automatically (in MediaView) so no need to show it
1060             // statusBar()->showMessage(tr("Fatal error: %1").arg(mediaObject->errorString()));
1061         } else {
1062             statusBar()->showMessage(tr("Error: %1").arg(mediaObject->errorString()));
1063         }
1064         break;
1065
1066     case Phonon::PlayingState:
1067         pauseAct->setEnabled(true);
1068         pauseAct->setIcon(IconUtils::icon("media-playback-pause"));
1069         pauseAct->setText(tr("&Pause"));
1070         pauseAct->setStatusTip(tr("Pause playback") + " (" +  pauseAct->shortcut().toString(QKeySequence::NativeText) + ")");
1071         // stopAct->setEnabled(true);
1072         break;
1073
1074     case Phonon::StoppedState:
1075         pauseAct->setEnabled(false);
1076         pauseAct->setIcon(IconUtils::icon("media-playback-start"));
1077         pauseAct->setText(tr("&Play"));
1078         pauseAct->setStatusTip(tr("Resume playback") + " (" +  pauseAct->shortcut().toString(QKeySequence::NativeText) + ")");
1079         // stopAct->setEnabled(false);
1080         break;
1081
1082     case Phonon::PausedState:
1083         pauseAct->setEnabled(true);
1084         pauseAct->setIcon(IconUtils::icon("media-playback-start"));
1085         pauseAct->setText(tr("&Play"));
1086         pauseAct->setStatusTip(tr("Resume playback") + " (" +  pauseAct->shortcut().toString(QKeySequence::NativeText) + ")");
1087         // stopAct->setEnabled(true);
1088         break;
1089
1090     case Phonon::BufferingState:
1091         pauseAct->setEnabled(false);
1092         pauseAct->setIcon(IconUtils::icon("content-loading"));
1093         pauseAct->setText(tr("&Loading..."));
1094         pauseAct->setStatusTip(QString());
1095         break;
1096
1097     case Phonon::LoadingState:
1098         pauseAct->setEnabled(false);
1099         currentTime->clear();
1100         // totalTime->clear();
1101         // stopAct->setEnabled(true);
1102         break;
1103
1104     default:
1105         ;
1106     }
1107 }
1108 #endif
1109
1110 void MainWindow::stop() {
1111     showHome();
1112     mediaView->stop();
1113 }
1114
1115 void MainWindow::resizeEvent(QResizeEvent*) {
1116 #ifdef Q_OS_MAC
1117     if (mac::CanGoFullScreen(winId())) {
1118         bool isFullscreen = mac::IsFullScreen(winId());
1119         if (isFullscreen != m_fullscreen) {
1120             if (compactViewAct->isChecked()) {
1121                 compactViewAct->setChecked(false);
1122                 compactView(false);
1123             }
1124             m_fullscreen = isFullscreen;
1125             updateUIForFullscreen();
1126         }
1127     }
1128 #endif
1129 }
1130
1131 void MainWindow::fullscreen() {
1132
1133     if (compactViewAct->isChecked())
1134         compactViewAct->toggle();
1135
1136 #ifdef Q_OS_MAC
1137     WId handle = winId();
1138     if (mac::CanGoFullScreen(handle)) {
1139         mainToolBar->setVisible(true);
1140         mac::ToggleFullScreen(handle);
1141         return;
1142     }
1143 #endif
1144
1145     m_fullscreen = !m_fullscreen;
1146
1147     if (m_fullscreen) {
1148         // Enter full screen
1149
1150         m_maximized = isMaximized();
1151
1152         // save geometry now, if the user quits when in full screen
1153         // geometry won't be saved
1154         writeSettings();
1155
1156 #ifdef Q_OS_MAC
1157         MacSupport::enterFullScreen(this, views);
1158 #else
1159         mainToolBar->hide();
1160         showFullScreen();
1161 #endif
1162
1163     } else {
1164         // Exit full screen
1165
1166 #ifdef Q_OS_MAC
1167         MacSupport::exitFullScreen(this, views);
1168 #else
1169         mainToolBar->show();
1170         if (m_maximized) showMaximized();
1171         else showNormal();
1172 #endif
1173
1174         // Make sure the window has focus
1175         activateWindow();
1176
1177     }
1178
1179     updateUIForFullscreen();
1180
1181 }
1182
1183 void MainWindow::updateUIForFullscreen() {
1184     static QList<QKeySequence> fsShortcuts;
1185     static QString fsText;
1186
1187     if (m_fullscreen) {
1188         fsShortcuts = fullscreenAct->shortcuts();
1189         fsText = fullscreenAct->text();
1190         fullscreenAct->setShortcuts(QList<QKeySequence>(fsShortcuts)
1191                                     << QKeySequence(Qt::Key_Escape));
1192         fullscreenAct->setText(tr("Leave &Full Screen"));
1193         fullscreenAct->setIcon(IconUtils::icon("view-restore"));
1194     } else {
1195         fullscreenAct->setShortcuts(fsShortcuts);
1196         fullscreenAct->setText(fsText);
1197         fullscreenAct->setIcon(IconUtils::icon("view-fullscreen"));
1198     }
1199
1200     // No compact view action when in full screen
1201     compactViewAct->setVisible(!m_fullscreen);
1202     compactViewAct->setChecked(false);
1203
1204     // Hide anything but the video
1205     mediaView->setPlaylistVisible(!m_fullscreen);
1206     statusBar()->setVisible(!m_fullscreen);
1207
1208 #ifndef APP_MAC
1209     menuBar()->setVisible(!m_fullscreen);
1210 #endif
1211
1212     if (m_fullscreen) {
1213         stopAct->setShortcuts(QList<QKeySequence>() << QKeySequence(Qt::Key_MediaStop));
1214     } else {
1215         stopAct->setShortcuts(QList<QKeySequence>() << QKeySequence(Qt::Key_Escape) << QKeySequence(Qt::Key_MediaStop));
1216     }
1217
1218 #ifdef Q_OS_MAC
1219     MacSupport::fullScreenActions(The::globalActions()->values(), m_fullscreen);
1220 #endif
1221
1222     if (views->currentWidget() == mediaView)
1223         mediaView->setFocus();
1224
1225     if (m_fullscreen) {
1226         hideMouse();
1227     } else {
1228         mouseTimer->stop();
1229         unsetCursor();
1230     }
1231 }
1232
1233 bool MainWindow::isReallyFullScreen() {
1234 #ifdef Q_OS_MAC
1235     WId handle = winId();
1236     if (mac::CanGoFullScreen(handle)) return mac::IsFullScreen(handle);
1237     else return isFullScreen();
1238 #else
1239     return isFullScreen();
1240 #endif
1241 }
1242
1243 void MainWindow::compactView(bool enable) {
1244     m_compact = enable;
1245
1246     static QList<QKeySequence> compactShortcuts;
1247     static QList<QKeySequence> stopShortcuts;
1248
1249     const static QString key = "compactGeometry";
1250     QSettings settings;
1251
1252 #ifndef APP_MAC
1253     menuBar()->setVisible(!enable);
1254 #endif
1255
1256     if (enable) {
1257         setMinimumSize(320, 180);
1258 #ifdef Q_OS_MAC
1259         mac::RemoveFullScreenWindow(winId());
1260 #endif
1261         writeSettings();
1262
1263         if (settings.contains(key))
1264             restoreGeometry(settings.value(key).toByteArray());
1265         else
1266             resize(320, 180);
1267
1268         mainToolBar->setVisible(!enable);
1269         mediaView->setPlaylistVisible(!enable);
1270         statusBar()->setVisible(!enable);
1271
1272         compactShortcuts = compactViewAct->shortcuts();
1273         stopShortcuts = stopAct->shortcuts();
1274
1275         QList<QKeySequence> newStopShortcuts(stopShortcuts);
1276         newStopShortcuts.removeAll(QKeySequence(Qt::Key_Escape));
1277         stopAct->setShortcuts(newStopShortcuts);
1278         compactViewAct->setShortcuts(QList<QKeySequence>(compactShortcuts) << QKeySequence(Qt::Key_Escape));
1279
1280         // ensure focus does not end up to the search box
1281         // as it would steal the Space shortcut
1282         mediaView->setFocus();
1283
1284     } else {
1285         // unset minimum size
1286         setMinimumSize(0, 0);
1287 #ifdef Q_OS_MAC
1288         mac::SetupFullScreenWindow(winId());
1289 #endif
1290         settings.setValue(key, saveGeometry());
1291         mainToolBar->setVisible(!enable);
1292         mediaView->setPlaylistVisible(!enable);
1293         statusBar()->setVisible(!enable);
1294         readSettings();
1295
1296         compactViewAct->setShortcuts(compactShortcuts);
1297         stopAct->setShortcuts(stopShortcuts);
1298     }
1299
1300     // auto float on top
1301     floatOnTop(enable);
1302
1303 #ifdef Q_OS_MAC
1304     mac::compactMode(winId(), enable);
1305 #endif
1306 }
1307
1308 void MainWindow::searchFocus() {
1309     toolbarSearch->selectAll();
1310     toolbarSearch->setFocus();
1311 }
1312
1313 #ifdef APP_PHONON
1314 void MainWindow::initPhonon() {
1315     // Phonon initialization
1316     if (mediaObject) delete mediaObject;
1317     if (audioOutput) delete audioOutput;
1318     mediaObject = new Phonon::MediaObject(this);
1319     mediaObject->setTickInterval(100);
1320     connect(mediaObject, SIGNAL(stateChanged(Phonon::State, Phonon::State)),
1321             SLOT(stateChanged(Phonon::State, Phonon::State)));
1322     connect(mediaObject, SIGNAL(tick(qint64)), SLOT(tick(qint64)));
1323     connect(mediaObject, SIGNAL(totalTimeChanged(qint64)), SLOT(totalTimeChanged(qint64)));
1324
1325     audioOutput = new Phonon::AudioOutput(Phonon::VideoCategory, this);
1326     connect(audioOutput, SIGNAL(volumeChanged(qreal)), SLOT(volumeChanged(qreal)));
1327     connect(audioOutput, SIGNAL(mutedChanged(bool)), SLOT(volumeMutedChanged(bool)));
1328     Phonon::createPath(mediaObject, audioOutput);
1329     volumeSlider->setAudioOutput(audioOutput);
1330
1331 #ifdef APP_PHONON_SEEK
1332     seekSlider->setMediaObject(mediaObject);
1333 #endif
1334
1335     QSettings settings;
1336     audioOutput->setVolume(settings.value("volume", 1.).toReal());
1337     // audioOutput->setMuted(settings.value("volumeMute").toBool());
1338
1339     mediaObject->stop();
1340 }
1341 #endif
1342
1343 void MainWindow::tick(qint64 time) {
1344     if (time <= 0) {
1345         // the "if" is important because tick is continually called
1346         // and we don't want to paint the toolbar every 100ms
1347         if (!currentTime->text().isEmpty()) currentTime->clear();
1348         return;
1349     }
1350
1351     currentTime->setText(formatTime(time));
1352
1353     // remaining time
1354 #ifdef APP_PHONON
1355     const qint64 remainingTime = mediaObject->remainingTime();
1356     currentTime->setStatusTip(tr("Remaining time: %1").arg(formatTime(remainingTime)));
1357
1358 #ifndef APP_PHONON_SEEK
1359     const qint64 totalTime = mediaObject->totalTime();
1360     slider->blockSignals(true);
1361     // qWarning() << totalTime << time << time * 100 / totalTime;
1362     if (totalTime > 0 && time > 0 && !slider->isSliderDown() && mediaObject->state() == Phonon::PlayingState)
1363         slider->setValue(time * slider->maximum() / totalTime);
1364     slider->blockSignals(false);
1365 #endif
1366
1367 #endif
1368 }
1369
1370 void MainWindow::totalTimeChanged(qint64 time) {
1371     if (time <= 0) {
1372         // totalTime->clear();
1373         return;
1374     }
1375     // totalTime->setText(formatTime(time));
1376
1377     /*
1378     slider->blockSignals(true);
1379     slider->setMaximum(time/1000);
1380     slider->blockSignals(false);
1381     */
1382
1383 }
1384
1385 QString MainWindow::formatTime(qint64 time) {
1386     QTime displayTime;
1387     displayTime = displayTime.addMSecs(time);
1388     QString timeString;
1389     // 60 * 60 * 1000 = 3600000
1390     if (time > 3600000)
1391         timeString = displayTime.toString("h:mm:ss");
1392     else
1393         timeString = displayTime.toString("m:ss");
1394     return timeString;
1395 }
1396
1397 void MainWindow::volumeUp() {
1398 #ifdef APP_PHONON
1399     qreal newVolume = volumeSlider->audioOutput()->volume() + .1;
1400     if (newVolume > volumeSlider->maximumVolume())
1401         newVolume = volumeSlider->maximumVolume();
1402     volumeSlider->audioOutput()->setVolume(newVolume);
1403 #endif
1404 }
1405
1406 void MainWindow::volumeDown() {
1407 #ifdef APP_PHONON
1408     qreal newVolume = volumeSlider->audioOutput()->volume() - .1;
1409     if (newVolume < 0.)
1410         newVolume = 0.;
1411     volumeSlider->audioOutput()->setVolume(newVolume);
1412 #endif
1413 }
1414
1415 void MainWindow::volumeMute() {
1416 #ifdef APP_PHONON
1417     bool muted = volumeSlider->audioOutput()->isMuted();
1418     volumeSlider->audioOutput()->setMuted(!muted);
1419     qApp->processEvents();
1420     if (muted && volumeSlider->audioOutput()->volume() == 0) {
1421         volumeSlider->audioOutput()->setVolume(volumeSlider->maximumVolume());
1422     }
1423     qDebug() << volumeSlider->audioOutput()->isMuted() << volumeSlider->audioOutput()->volume();
1424 #endif
1425 }
1426
1427 void MainWindow::volumeChanged(qreal newVolume) {
1428 #ifdef APP_PHONON
1429     // automatically unmute when volume changes
1430     if (volumeSlider->audioOutput()->isMuted()) volumeSlider->audioOutput()->setMuted(false);
1431
1432     bool isZero = volumeSlider->property("zero").toBool();
1433     bool styleChanged = false;
1434     if (newVolume == 0. && !isZero) {
1435         volumeSlider->setProperty("zero", true);
1436         styleChanged = true;
1437     } else if (newVolume > 0. && isZero) {
1438         volumeSlider->setProperty("zero", false);
1439         styleChanged = true;
1440     }
1441     if (styleChanged) {
1442         QSlider* volumeQSlider = volumeSlider->findChild<QSlider*>();
1443         style()->unpolish(volumeQSlider);
1444         style()->polish(volumeQSlider);
1445     }
1446 #endif
1447     statusBar()->showMessage(tr("Volume at %1%").arg((int)(newVolume*100)));
1448 }
1449
1450 void MainWindow::volumeMutedChanged(bool muted) {
1451     if (muted) {
1452         volumeMuteAct->setIcon(IconUtils::icon("audio-volume-muted"));
1453         statusBar()->showMessage(tr("Volume is muted"));
1454     } else {
1455         volumeMuteAct->setIcon(IconUtils::icon("audio-volume-high"));
1456         statusBar()->showMessage(tr("Volume is unmuted"));
1457     }
1458 #ifdef Q_WS_X11
1459     QToolButton *volumeMuteButton = qobject_cast<QToolButton *>(mainToolBar->widgetForAction(volumeMuteAct));
1460     volumeMuteButton->setIcon(volumeMuteButton->icon().pixmap(16));
1461 #endif
1462 }
1463
1464 void MainWindow::setDefinitionMode(const QString &definitionName) {
1465     QAction *definitionAct = The::globalActions()->value("definition");
1466     definitionAct->setText(definitionName);
1467     definitionAct->setStatusTip(tr("Maximum video definition set to %1").arg(definitionAct->text())
1468                                 + " (" +  definitionAct->shortcut().toString(QKeySequence::NativeText) + ")");
1469     statusBar()->showMessage(definitionAct->statusTip());
1470     QSettings settings;
1471     settings.setValue("definition", definitionName);
1472 }
1473
1474 void MainWindow::toggleDefinitionMode() {
1475     const QString definitionName = QSettings().value("definition").toString();
1476     const QList<VideoDefinition>& definitions = VideoDefinition::getDefinitions();
1477     const VideoDefinition& currentDefinition = VideoDefinition::getDefinitionFor(definitionName);
1478     if (currentDefinition.isEmpty()) {
1479         setDefinitionMode(definitions.first().getName());
1480         return;
1481     }
1482
1483     int index = definitions.indexOf(currentDefinition);
1484     if (index != definitions.size() - 1) {
1485         index++;
1486     } else {
1487         index = 0;
1488     }
1489     // TODO: pass a VideoDefinition instead of QString.
1490     setDefinitionMode(definitions.at(index).getName());
1491 }
1492
1493 void MainWindow::showFullscreenToolbar(bool show) {
1494     if (!m_fullscreen) return;
1495     mainToolBar->setVisible(show);
1496 }
1497
1498 void MainWindow::showFullscreenPlaylist(bool show) {
1499     if (!m_fullscreen) return;
1500     mediaView->setPlaylistVisible(show);
1501 }
1502
1503 void MainWindow::clearRecentKeywords() {
1504     QSettings settings;
1505     settings.remove("recentKeywords");
1506     settings.remove("recentChannels");
1507     if (views->currentWidget() == homeView) {
1508         SearchView *searchView = homeView->getSearchView();
1509         searchView->updateRecentKeywords();
1510         searchView->updateRecentChannels();
1511     }
1512     QAbstractNetworkCache *cache = The::networkAccessManager()->cache();
1513     if (cache) cache->clear();
1514     showMessage(tr("Your privacy is now safe"));
1515 }
1516
1517 void MainWindow::setManualPlay(bool enabled) {
1518     QSettings settings;
1519     settings.setValue("manualplay", QVariant::fromValue(enabled));
1520     showActionInStatusBar(The::globalActions()->value("manualplay"), enabled);
1521 }
1522
1523 void MainWindow::updateDownloadMessage(const QString &message) {
1524     The::globalActions()->value("downloads")->setText(message);
1525 }
1526
1527 void MainWindow::downloadsFinished() {
1528     The::globalActions()->value("downloads")->setText(tr("&Downloads"));
1529     statusBar()->showMessage(tr("Downloads complete"));
1530 }
1531
1532 void MainWindow::toggleDownloads(bool show) {
1533
1534     if (show) {
1535         stopAct->setShortcuts(QList<QKeySequence>() << QKeySequence(Qt::Key_MediaStop));
1536         The::globalActions()->value("downloads")->setShortcuts(
1537                     QList<QKeySequence>() << QKeySequence(Qt::CTRL + Qt::Key_J)
1538                     << QKeySequence(Qt::Key_Escape));
1539     } else {
1540         The::globalActions()->value("downloads")->setShortcuts(
1541                     QList<QKeySequence>() << QKeySequence(Qt::CTRL + Qt::Key_J));
1542         stopAct->setShortcuts(QList<QKeySequence>() << QKeySequence(Qt::Key_Escape) << QKeySequence(Qt::Key_MediaStop));
1543     }
1544
1545     if (!downloadView) {
1546         downloadView = new DownloadView(this);
1547         views->addWidget(downloadView);
1548     }
1549     if (show) showWidget(downloadView);
1550     else goBack();
1551 }
1552
1553 void MainWindow::suggestionAccepted(Suggestion *suggestion) {
1554     search(suggestion->value);
1555 }
1556
1557 void MainWindow::search(const QString &query) {
1558     QString q = query.trimmed();
1559     if (q.length() == 0) return;
1560     SearchParams *searchParams = new SearchParams();
1561     searchParams->setKeywords(q);
1562     showMedia(searchParams);
1563 }
1564
1565 void MainWindow::dragEnterEvent(QDragEnterEvent *event) {
1566     if (event->mimeData()->hasFormat("text/uri-list")) {
1567         QList<QUrl> urls = event->mimeData()->urls();
1568         if (urls.isEmpty()) return;
1569         QUrl url = urls.first();
1570         QString videoId = YTSearch::videoIdFromUrl(url.toString());
1571         if (!videoId.isEmpty())
1572             event->acceptProposedAction();
1573     }
1574 }
1575
1576 void MainWindow::dropEvent(QDropEvent *event) {
1577     if (!toolbarSearch->isEnabled()) return;
1578
1579     QList<QUrl> urls = event->mimeData()->urls();
1580     if (urls.isEmpty())
1581         return;
1582     QUrl url = urls.first();
1583     QString videoId = YTSearch::videoIdFromUrl(url.toString());
1584     if (!videoId.isEmpty()) {
1585         setWindowTitle(url.toString());
1586         SearchParams *searchParams = new SearchParams();
1587         searchParams->setKeywords(videoId);
1588         showMedia(searchParams);
1589     }
1590 }
1591
1592 void MainWindow::checkForUpdate() {
1593     static const QString updateCheckKey = "updateCheck";
1594
1595     // check every 24h
1596     QSettings settings;
1597     uint unixTime = QDateTime::currentDateTime().toTime_t();
1598     int lastCheck = settings.value(updateCheckKey).toInt();
1599     int secondsSinceLastCheck = unixTime - lastCheck;
1600     // qDebug() << "secondsSinceLastCheck" << unixTime << lastCheck << secondsSinceLastCheck;
1601     if (secondsSinceLastCheck < 86400) return;
1602
1603     // check it out
1604     if (updateChecker) delete updateChecker;
1605     updateChecker = new UpdateChecker();
1606     connect(updateChecker, SIGNAL(newVersion(QString)),
1607             this, SLOT(gotNewVersion(QString)));
1608     updateChecker->checkForUpdate();
1609     settings.setValue(updateCheckKey, unixTime);
1610 }
1611
1612 void MainWindow::gotNewVersion(const QString &version) {
1613     if (updateChecker) {
1614         delete updateChecker;
1615         updateChecker = 0;
1616     }
1617
1618     QSettings settings;
1619     QString checkedVersion = settings.value("checkedVersion").toString();
1620     if (checkedVersion == version) return;
1621
1622 #ifdef APP_EXTRA
1623 #ifndef APP_MAC
1624     UpdateDialog *dialog = new UpdateDialog(version, this);
1625     dialog->show();
1626 #endif
1627 #else
1628     simpleUpdateDialog(version);
1629 #endif
1630 }
1631
1632 void MainWindow::simpleUpdateDialog(const QString &version) {
1633     QMessageBox msgBox(this);
1634     msgBox.setIconPixmap(
1635                 QPixmap(":/images/app.png")
1636                 .scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation));
1637     msgBox.setText(tr("%1 version %2 is now available.").arg(Constants::NAME, version));
1638     msgBox.setModal(true);
1639     msgBox.setWindowModality(Qt::WindowModal);
1640     msgBox.addButton(QMessageBox::Close);
1641     QPushButton* laterButton = msgBox.addButton(tr("Remind me later"), QMessageBox::RejectRole);
1642     QPushButton* updateButton = msgBox.addButton(tr("Update"), QMessageBox::AcceptRole);
1643     msgBox.exec();
1644     if (msgBox.clickedButton() != laterButton) {
1645         QSettings settings;
1646         settings.setValue("checkedVersion", version);
1647     }
1648     if (msgBox.clickedButton() == updateButton) visitSite();
1649 }
1650
1651 void MainWindow::floatOnTop(bool onTop) {
1652     showActionInStatusBar(The::globalActions()->value("ontop"), onTop);
1653 #ifdef APP_MAC
1654     mac::floatOnTop(winId(), onTop);
1655     return;
1656 #endif
1657     if (onTop) {
1658         setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
1659         show();
1660     } else {
1661         setWindowFlags(windowFlags() ^ Qt::WindowStaysOnTopHint);
1662         show();
1663     }
1664 }
1665
1666 void MainWindow::restore() {
1667 #ifdef APP_MAC
1668     mac::uncloseWindow(window()->winId());
1669 #endif
1670 }
1671
1672 void MainWindow::messageReceived(const QString &message) {
1673     if (message == QLatin1String("--toggle-playing")) {
1674         if (pauseAct->isEnabled()) pauseAct->trigger();
1675     } else if (message == QLatin1String("--next")) {
1676         if (skipAct->isEnabled()) skipAct->trigger();
1677     } else if (message == QLatin1String("--previous")) {
1678         if (skipBackwardAct->isEnabled()) skipBackwardAct->trigger();
1679     } else if (message == QLatin1String("--stop-after-this")) {
1680         The::globalActions()->value("stopafterthis")->toggle();
1681     }  else if (message.startsWith("--")) {
1682         MainWindow::printHelp();
1683     } else if (!message.isEmpty()) {
1684         SearchParams *searchParams = new SearchParams();
1685         searchParams->setKeywords(message);
1686         showMedia(searchParams);
1687     }
1688 }
1689
1690 void MainWindow::hideMouse() {
1691     setCursor(Qt::BlankCursor);
1692     mediaView->setPlaylistVisible(false);
1693 #ifndef APP_MAC
1694     mainToolBar->setVisible(false);
1695 #endif
1696 }
1697
1698 #ifdef APP_MAC_STORE
1699 void MainWindow::rateOnAppStore() {
1700     QDesktopServices::openUrl(QUrl("macappstore://userpub.itunes.apple.com"
1701                                    "/WebObjects/MZUserPublishing.woa/wa/addUserReview"
1702                                    "?id=422006190&type=Purple+Software"));
1703 }
1704 #endif
1705
1706 void MainWindow::printHelp() {
1707     QString msg = QString("%1 %2\n\n").arg(Constants::NAME, Constants::VERSION);
1708     msg += "Usage: minitube [options]\n";
1709     msg += "Options:\n";
1710     msg += "  --toggle-playing\t";
1711     msg += "Start or pause playback.\n";
1712     msg += "  --next\t\t";
1713     msg += "Skip to the next video.\n";
1714     msg += "  --previous\t\t";
1715     msg += "Go back to the previous video.\n";
1716     msg += "  --stop-after-this\t";
1717     msg += "Stop playback at the end of the video.\n";
1718     std::cout << msg.toLocal8Bit().data();
1719 }
1720
1721 void MainWindow::showMessage(const QString &message) {
1722     statusBar()->showMessage(message, 60000);
1723 }
1724
1725 #ifdef APP_ACTIVATION
1726 void MainWindow::showActivationView(bool transition) {
1727     QWidget *activationView = ActivationView::instance();
1728     if (views->currentWidget() == activationView) {
1729         buy();
1730         return;
1731     }
1732     views->addWidget(activationView);
1733     showWidget(activationView, transition);
1734 }
1735
1736 void MainWindow::showActivationDialog() {
1737     QTimer::singleShot(0, new ActivationDialog(this), SLOT(show()));
1738 }
1739
1740 void MainWindow::buy() {
1741     Extra::buy();
1742 }
1743
1744 void MainWindow::hideBuyAction() {
1745     QAction *action = The::globalActions()->value("buy");
1746     action->setVisible(false);
1747     action->setEnabled(false);
1748 }
1749 #endif
1750
1751 void MainWindow::showRegionsView() {
1752     if (!regionsView) {
1753         regionsView = new RegionsView(this);
1754         connect(regionsView, SIGNAL(regionChanged()),
1755                 homeView->getStandardFeedsView(), SLOT(load()));
1756         views->addWidget(regionsView);
1757     }
1758     showWidget(regionsView);
1759 }