]> git.sur5r.net Git - minitube/blob - src/mainwindow.cpp
Update watchfile
[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     setDefinitionMode(settings.value("definition", VideoDefinition::getDefinitionNames().first()).toString());
863     The::globalActions()->value("manualplay")->setChecked(settings.value("manualplay", false).toBool());
864 }
865
866 void MainWindow::writeSettings() {
867     QSettings settings;
868
869     settings.setValue("geometry", saveGeometry());
870     mediaView->saveSplitterState();
871
872 #ifdef APP_PHONON
873     if (audioOutput->volume() > 0.1)
874         settings.setValue("volume", audioOutput->volume());
875     // settings.setValue("volumeMute", audioOutput->isMuted());
876 #endif
877
878     settings.setValue("manualplay", The::globalActions()->value("manualplay")->isChecked());
879 }
880
881 void MainWindow::goBack() {
882     if ( history->size() > 1 ) {
883         history->pop();
884         QWidget *widget = history->pop();
885         showWidget(widget);
886     }
887 }
888
889 void MainWindow::showWidget(QWidget* widget, bool transition) {
890
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 #endif
948
949     history->push(widget);
950 }
951
952 void MainWindow::about() {
953     if (!aboutView) {
954         aboutView = new AboutView(this);
955         views->addWidget(aboutView);
956     }
957     showWidget(aboutView);
958 }
959
960 void MainWindow::visitSite() {
961     QUrl url(Constants::WEBSITE);
962     statusBar()->showMessage(QString(tr("Opening %1").arg(url.toString())));
963     QDesktopServices::openUrl(url);
964 }
965
966 void MainWindow::donate() {
967     QUrl url(QString(Constants::WEBSITE) + "#donate");
968     statusBar()->showMessage(QString(tr("Opening %1").arg(url.toString())));
969     QDesktopServices::openUrl(url);
970 }
971
972 void MainWindow::reportIssue() {
973     QUrl url("http://flavio.tordini.org/forums/forum/minitube-forums/minitube-troubleshooting");
974     QDesktopServices::openUrl(url);
975 }
976
977 void MainWindow::quit() {
978 #ifdef APP_MAC
979     if (!confirmQuit()) {
980         return;
981     }
982 #endif
983     // do not save geometry when in full screen or in compact mode
984     if (!m_fullscreen && !compactViewAct->isChecked()) {
985         writeSettings();
986     }
987     // mediaView->stop();
988     Temporary::deleteAll();
989     ChannelAggregator::instance()->stop();
990     ChannelAggregator::instance()->cleanup();
991     Database::shutdown();
992     qApp->quit();
993 }
994
995 void MainWindow::closeEvent(QCloseEvent *event) {
996 #ifdef APP_MAC
997     mac::closeWindow(winId());
998     event->ignore();
999 #else
1000     if (!confirmQuit()) {
1001         event->ignore();
1002         return;
1003     }
1004     QWidget::closeEvent(event);
1005     quit();
1006 #endif
1007 }
1008
1009 bool MainWindow::confirmQuit() {
1010     if (DownloadManager::instance()->activeItems() > 0) {
1011         QMessageBox msgBox(this);
1012         msgBox.setIconPixmap(QPixmap(":/images/app.png").scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation));
1013         msgBox.setText(tr("Do you want to exit %1 with a download in progress?").arg(Constants::NAME));
1014         msgBox.setInformativeText(tr("If you close %1 now, this download will be cancelled.").arg(Constants::NAME));
1015         msgBox.setModal(true);
1016         // make it a "sheet" on the Mac
1017         msgBox.setWindowModality(Qt::WindowModal);
1018
1019         msgBox.addButton(tr("Close and cancel download"), QMessageBox::RejectRole);
1020         QPushButton *waitButton = msgBox.addButton(tr("Wait for download to finish"), QMessageBox::ActionRole);
1021
1022         msgBox.exec();
1023
1024         if (msgBox.clickedButton() == waitButton) {
1025             return false;
1026         }
1027     }
1028     return true;
1029 }
1030
1031 void MainWindow::showHome(bool transition) {
1032     showWidget(homeView, transition);
1033     currentTime->clear();
1034     // totalTime->clear();
1035 }
1036
1037 void MainWindow::showMedia(SearchParams *searchParams) {
1038     showWidget(mediaView);
1039     mediaView->search(searchParams);
1040 }
1041
1042 void MainWindow::showMedia(VideoSource *videoSource) {
1043     showWidget(mediaView);
1044     mediaView->setVideoSource(videoSource);
1045 }
1046
1047 #ifdef APP_PHONON
1048 void MainWindow::stateChanged(Phonon::State newState, Phonon::State /* oldState */) {
1049
1050     // qDebug() << "Phonon state: " << newState;
1051
1052     switch (newState) {
1053
1054     case Phonon::ErrorState:
1055         if (mediaObject->errorType() == Phonon::FatalError) {
1056             // Do not display because we try to play incomplete video files and sometimes trigger this
1057             // We retry automatically (in MediaView) so no need to show it
1058             // statusBar()->showMessage(tr("Fatal error: %1").arg(mediaObject->errorString()));
1059         } else {
1060             statusBar()->showMessage(tr("Error: %1").arg(mediaObject->errorString()));
1061         }
1062         break;
1063
1064     case Phonon::PlayingState:
1065         pauseAct->setEnabled(true);
1066         pauseAct->setIcon(IconUtils::icon("media-playback-pause"));
1067         pauseAct->setText(tr("&Pause"));
1068         pauseAct->setStatusTip(tr("Pause playback") + " (" +  pauseAct->shortcut().toString(QKeySequence::NativeText) + ")");
1069         // stopAct->setEnabled(true);
1070         break;
1071
1072     case Phonon::StoppedState:
1073         pauseAct->setEnabled(false);
1074         pauseAct->setIcon(IconUtils::icon("media-playback-start"));
1075         pauseAct->setText(tr("&Play"));
1076         pauseAct->setStatusTip(tr("Resume playback") + " (" +  pauseAct->shortcut().toString(QKeySequence::NativeText) + ")");
1077         // stopAct->setEnabled(false);
1078         break;
1079
1080     case Phonon::PausedState:
1081         pauseAct->setEnabled(true);
1082         pauseAct->setIcon(IconUtils::icon("media-playback-start"));
1083         pauseAct->setText(tr("&Play"));
1084         pauseAct->setStatusTip(tr("Resume playback") + " (" +  pauseAct->shortcut().toString(QKeySequence::NativeText) + ")");
1085         // stopAct->setEnabled(true);
1086         break;
1087
1088     case Phonon::BufferingState:
1089         pauseAct->setEnabled(false);
1090         pauseAct->setIcon(IconUtils::icon("content-loading"));
1091         pauseAct->setText(tr("&Loading..."));
1092         pauseAct->setStatusTip(QString());
1093         break;
1094
1095     case Phonon::LoadingState:
1096         pauseAct->setEnabled(false);
1097         currentTime->clear();
1098         // totalTime->clear();
1099         // stopAct->setEnabled(true);
1100         break;
1101
1102     default:
1103         ;
1104     }
1105 }
1106 #endif
1107
1108 void MainWindow::stop() {
1109     showHome();
1110     mediaView->stop();
1111 }
1112
1113 void MainWindow::resizeEvent(QResizeEvent*) {
1114 #ifdef Q_OS_MAC
1115     if (mac::CanGoFullScreen(winId())) {
1116         bool isFullscreen = mac::IsFullScreen(winId());
1117         if (isFullscreen != m_fullscreen) {
1118             if (compactViewAct->isChecked()) {
1119                 compactViewAct->setChecked(false);
1120                 compactView(false);
1121             }
1122             m_fullscreen = isFullscreen;
1123             updateUIForFullscreen();
1124         }
1125     }
1126 #endif
1127 }
1128
1129 void MainWindow::fullscreen() {
1130
1131     if (compactViewAct->isChecked())
1132         compactViewAct->toggle();
1133
1134 #ifdef Q_OS_MAC
1135     WId handle = winId();
1136     if (mac::CanGoFullScreen(handle)) {
1137         mainToolBar->setVisible(true);
1138         mac::ToggleFullScreen(handle);
1139         return;
1140     }
1141 #endif
1142
1143     m_fullscreen = !m_fullscreen;
1144
1145     if (m_fullscreen) {
1146         // Enter full screen
1147
1148         m_maximized = isMaximized();
1149
1150         // save geometry now, if the user quits when in full screen
1151         // geometry won't be saved
1152         writeSettings();
1153
1154 #ifdef Q_OS_MAC
1155         MacSupport::enterFullScreen(this, views);
1156 #else
1157         mainToolBar->hide();
1158         showFullScreen();
1159 #endif
1160
1161     } else {
1162         // Exit full screen
1163
1164 #ifdef Q_OS_MAC
1165         MacSupport::exitFullScreen(this, views);
1166 #else
1167         mainToolBar->show();
1168         if (m_maximized) showMaximized();
1169         else showNormal();
1170 #endif
1171
1172         // Make sure the window has focus
1173         activateWindow();
1174
1175     }
1176
1177     updateUIForFullscreen();
1178
1179 }
1180
1181 void MainWindow::updateUIForFullscreen() {
1182     static QList<QKeySequence> fsShortcuts;
1183     static QString fsText;
1184
1185     if (m_fullscreen) {
1186         fsShortcuts = fullscreenAct->shortcuts();
1187         fsText = fullscreenAct->text();
1188         fullscreenAct->setShortcuts(QList<QKeySequence>(fsShortcuts)
1189                                     << QKeySequence(Qt::Key_Escape));
1190         fullscreenAct->setText(tr("Leave &Full Screen"));
1191         fullscreenAct->setIcon(IconUtils::icon("view-restore"));
1192     } else {
1193         fullscreenAct->setShortcuts(fsShortcuts);
1194         fullscreenAct->setText(fsText);
1195         fullscreenAct->setIcon(IconUtils::icon("view-fullscreen"));
1196     }
1197
1198     // No compact view action when in full screen
1199     compactViewAct->setVisible(!m_fullscreen);
1200     compactViewAct->setChecked(false);
1201
1202     // Hide anything but the video
1203     mediaView->setPlaylistVisible(!m_fullscreen);
1204     statusBar()->setVisible(!m_fullscreen);
1205
1206 #ifndef APP_MAC
1207     menuBar()->setVisible(!m_fullscreen);
1208 #endif
1209
1210     if (m_fullscreen) {
1211         stopAct->setShortcuts(QList<QKeySequence>() << QKeySequence(Qt::Key_MediaStop));
1212     } else {
1213         stopAct->setShortcuts(QList<QKeySequence>() << QKeySequence(Qt::Key_Escape) << QKeySequence(Qt::Key_MediaStop));
1214     }
1215
1216 #ifdef Q_OS_MAC
1217     MacSupport::fullScreenActions(The::globalActions()->values(), m_fullscreen);
1218 #endif
1219
1220     if (views->currentWidget() == mediaView)
1221         mediaView->setFocus();
1222
1223     if (m_fullscreen) {
1224         hideMouse();
1225     } else {
1226         mouseTimer->stop();
1227         unsetCursor();
1228     }
1229 }
1230
1231 bool MainWindow::isReallyFullScreen() {
1232 #ifdef Q_OS_MAC
1233     WId handle = winId();
1234     if (mac::CanGoFullScreen(handle)) return mac::IsFullScreen(handle);
1235     else return isFullScreen();
1236 #else
1237     return isFullScreen();
1238 #endif
1239 }
1240
1241 void MainWindow::compactView(bool enable) {
1242     m_compact = enable;
1243
1244     static QList<QKeySequence> compactShortcuts;
1245     static QList<QKeySequence> stopShortcuts;
1246
1247     const static QString key = "compactGeometry";
1248     QSettings settings;
1249
1250 #ifndef APP_MAC
1251     menuBar()->setVisible(!enable);
1252 #endif
1253
1254     if (enable) {
1255         setMinimumSize(320, 180);
1256 #ifdef Q_OS_MAC
1257         mac::RemoveFullScreenWindow(winId());
1258 #endif
1259         writeSettings();
1260
1261         if (settings.contains(key))
1262             restoreGeometry(settings.value(key).toByteArray());
1263         else
1264             resize(320, 180);
1265
1266         mainToolBar->setVisible(!enable);
1267         mediaView->setPlaylistVisible(!enable);
1268         statusBar()->setVisible(!enable);
1269
1270         compactShortcuts = compactViewAct->shortcuts();
1271         stopShortcuts = stopAct->shortcuts();
1272
1273         QList<QKeySequence> newStopShortcuts(stopShortcuts);
1274         newStopShortcuts.removeAll(QKeySequence(Qt::Key_Escape));
1275         stopAct->setShortcuts(newStopShortcuts);
1276         compactViewAct->setShortcuts(QList<QKeySequence>(compactShortcuts) << QKeySequence(Qt::Key_Escape));
1277
1278         // ensure focus does not end up to the search box
1279         // as it would steal the Space shortcut
1280         mediaView->setFocus();
1281
1282     } else {
1283         // unset minimum size
1284         setMinimumSize(0, 0);
1285 #ifdef Q_OS_MAC
1286         mac::SetupFullScreenWindow(winId());
1287 #endif
1288         settings.setValue(key, saveGeometry());
1289         mainToolBar->setVisible(!enable);
1290         mediaView->setPlaylistVisible(!enable);
1291         statusBar()->setVisible(!enable);
1292         readSettings();
1293
1294         compactViewAct->setShortcuts(compactShortcuts);
1295         stopAct->setShortcuts(stopShortcuts);
1296     }
1297
1298     // auto float on top
1299     floatOnTop(enable);
1300
1301 #ifdef Q_OS_MAC
1302     mac::compactMode(winId(), enable);
1303 #endif
1304 }
1305
1306 void MainWindow::searchFocus() {
1307     toolbarSearch->selectAll();
1308     toolbarSearch->setFocus();
1309 }
1310
1311 #ifdef APP_PHONON
1312 void MainWindow::initPhonon() {
1313     // Phonon initialization
1314     if (mediaObject) delete mediaObject;
1315     if (audioOutput) delete audioOutput;
1316     mediaObject = new Phonon::MediaObject(this);
1317     mediaObject->setTickInterval(100);
1318     connect(mediaObject, SIGNAL(stateChanged(Phonon::State, Phonon::State)),
1319             SLOT(stateChanged(Phonon::State, Phonon::State)));
1320     connect(mediaObject, SIGNAL(tick(qint64)), SLOT(tick(qint64)));
1321     connect(mediaObject, SIGNAL(totalTimeChanged(qint64)), SLOT(totalTimeChanged(qint64)));
1322
1323     audioOutput = new Phonon::AudioOutput(Phonon::VideoCategory, this);
1324     connect(audioOutput, SIGNAL(volumeChanged(qreal)), SLOT(volumeChanged(qreal)));
1325     connect(audioOutput, SIGNAL(mutedChanged(bool)), SLOT(volumeMutedChanged(bool)));
1326     Phonon::createPath(mediaObject, audioOutput);
1327     volumeSlider->setAudioOutput(audioOutput);
1328
1329 #ifdef APP_PHONON_SEEK
1330     seekSlider->setMediaObject(mediaObject);
1331 #endif
1332
1333     QSettings settings;
1334     audioOutput->setVolume(settings.value("volume", 1.).toReal());
1335     // audioOutput->setMuted(settings.value("volumeMute").toBool());
1336
1337     mediaObject->stop();
1338 }
1339 #endif
1340
1341 void MainWindow::tick(qint64 time) {
1342     if (time <= 0) {
1343         // the "if" is important because tick is continually called
1344         // and we don't want to paint the toolbar every 100ms
1345         if (!currentTime->text().isEmpty()) currentTime->clear();
1346         return;
1347     }
1348
1349     currentTime->setText(formatTime(time));
1350
1351     // remaining time
1352 #ifdef APP_PHONON
1353     const qint64 remainingTime = mediaObject->remainingTime();
1354     currentTime->setStatusTip(tr("Remaining time: %1").arg(formatTime(remainingTime)));
1355
1356 #ifndef APP_PHONON_SEEK
1357     const qint64 totalTime = mediaObject->totalTime();
1358     slider->blockSignals(true);
1359     // qWarning() << totalTime << time << time * 100 / totalTime;
1360     if (totalTime > 0 && time > 0 && !slider->isSliderDown() && mediaObject->state() == Phonon::PlayingState)
1361         slider->setValue(time * slider->maximum() / totalTime);
1362     slider->blockSignals(false);
1363 #endif
1364
1365 #endif
1366 }
1367
1368 void MainWindow::totalTimeChanged(qint64 time) {
1369     if (time <= 0) {
1370         // totalTime->clear();
1371         return;
1372     }
1373     // totalTime->setText(formatTime(time));
1374
1375     /*
1376     slider->blockSignals(true);
1377     slider->setMaximum(time/1000);
1378     slider->blockSignals(false);
1379     */
1380
1381 }
1382
1383 QString MainWindow::formatTime(qint64 time) {
1384     QTime displayTime;
1385     displayTime = displayTime.addMSecs(time);
1386     QString timeString;
1387     // 60 * 60 * 1000 = 3600000
1388     if (time > 3600000)
1389         timeString = displayTime.toString("h:mm:ss");
1390     else
1391         timeString = displayTime.toString("m:ss");
1392     return timeString;
1393 }
1394
1395 void MainWindow::volumeUp() {
1396 #ifdef APP_PHONON
1397     qreal newVolume = volumeSlider->audioOutput()->volume() + .1;
1398     if (newVolume > volumeSlider->maximumVolume())
1399         newVolume = volumeSlider->maximumVolume();
1400     volumeSlider->audioOutput()->setVolume(newVolume);
1401 #endif
1402 }
1403
1404 void MainWindow::volumeDown() {
1405 #ifdef APP_PHONON
1406     qreal newVolume = volumeSlider->audioOutput()->volume() - .1;
1407     if (newVolume < 0.)
1408         newVolume = 0.;
1409     volumeSlider->audioOutput()->setVolume(newVolume);
1410 #endif
1411 }
1412
1413 void MainWindow::volumeMute() {
1414 #ifdef APP_PHONON
1415     bool muted = volumeSlider->audioOutput()->isMuted();
1416     volumeSlider->audioOutput()->setMuted(!muted);
1417     qApp->processEvents();
1418     if (muted && volumeSlider->audioOutput()->volume() == 0) {
1419         volumeSlider->audioOutput()->setVolume(volumeSlider->maximumVolume());
1420     }
1421     qDebug() << volumeSlider->audioOutput()->isMuted() << volumeSlider->audioOutput()->volume();
1422 #endif
1423 }
1424
1425 void MainWindow::volumeChanged(qreal newVolume) {
1426 #ifdef APP_PHONON
1427     // automatically unmute when volume changes
1428     if (volumeSlider->audioOutput()->isMuted()) volumeSlider->audioOutput()->setMuted(false);
1429
1430     bool isZero = volumeSlider->property("zero").toBool();
1431     bool styleChanged = false;
1432     if (newVolume == 0. && !isZero) {
1433         volumeSlider->setProperty("zero", true);
1434         styleChanged = true;
1435     } else if (newVolume > 0. && isZero) {
1436         volumeSlider->setProperty("zero", false);
1437         styleChanged = true;
1438     }
1439     if (styleChanged) {
1440         QSlider* volumeQSlider = volumeSlider->findChild<QSlider*>();
1441         style()->unpolish(volumeQSlider);
1442         style()->polish(volumeQSlider);
1443     }
1444 #endif
1445     statusBar()->showMessage(tr("Volume at %1%").arg((int)(newVolume*100)));
1446 }
1447
1448 void MainWindow::volumeMutedChanged(bool muted) {
1449     if (muted) {
1450         volumeMuteAct->setIcon(IconUtils::icon("audio-volume-muted"));
1451         statusBar()->showMessage(tr("Volume is muted"));
1452     } else {
1453         volumeMuteAct->setIcon(IconUtils::icon("audio-volume-high"));
1454         statusBar()->showMessage(tr("Volume is unmuted"));
1455     }
1456 #ifdef Q_WS_X11
1457     QToolButton *volumeMuteButton = qobject_cast<QToolButton *>(mainToolBar->widgetForAction(volumeMuteAct));
1458     volumeMuteButton->setIcon(volumeMuteButton->icon().pixmap(16));
1459 #endif
1460 }
1461
1462 void MainWindow::setDefinitionMode(QString definitionName) {
1463     QAction *definitionAct = The::globalActions()->value("definition");
1464     definitionAct->setText(definitionName);
1465     definitionAct->setStatusTip(tr("Maximum video definition set to %1").arg(definitionAct->text())
1466                                 + " (" +  definitionAct->shortcut().toString(QKeySequence::NativeText) + ")");
1467     statusBar()->showMessage(definitionAct->statusTip());
1468     QSettings settings;
1469     settings.setValue("definition", definitionName);
1470 }
1471
1472 void MainWindow::toggleDefinitionMode() {
1473     QSettings settings;
1474     QString currentDefinition = settings.value("definition").toString();
1475     QStringList definitionNames = VideoDefinition::getDefinitionNames();
1476     int currentIndex = definitionNames.indexOf(currentDefinition);
1477     int nextIndex = 0;
1478     if (currentIndex != definitionNames.size() - 1) {
1479         nextIndex = currentIndex + 1;
1480     }
1481     QString nextDefinition = definitionNames.at(nextIndex);
1482     setDefinitionMode(nextDefinition);
1483 }
1484
1485 void MainWindow::showFullscreenToolbar(bool show) {
1486     if (!m_fullscreen) return;
1487     mainToolBar->setVisible(show);
1488 }
1489
1490 void MainWindow::showFullscreenPlaylist(bool show) {
1491     if (!m_fullscreen) return;
1492     mediaView->setPlaylistVisible(show);
1493 }
1494
1495 void MainWindow::clearRecentKeywords() {
1496     QSettings settings;
1497     settings.remove("recentKeywords");
1498     settings.remove("recentChannels");
1499     if (views->currentWidget() == homeView) {
1500         SearchView *searchView = homeView->getSearchView();
1501         searchView->updateRecentKeywords();
1502         searchView->updateRecentChannels();
1503     }
1504     QAbstractNetworkCache *cache = The::networkAccessManager()->cache();
1505     if (cache) cache->clear();
1506     showMessage(tr("Your privacy is now safe"));
1507 }
1508
1509 void MainWindow::setManualPlay(bool enabled) {
1510     QSettings settings;
1511     settings.setValue("manualplay", QVariant::fromValue(enabled));
1512     showActionInStatusBar(The::globalActions()->value("manualplay"), enabled);
1513 }
1514
1515 void MainWindow::updateDownloadMessage(QString message) {
1516     The::globalActions()->value("downloads")->setText(message);
1517 }
1518
1519 void MainWindow::downloadsFinished() {
1520     The::globalActions()->value("downloads")->setText(tr("&Downloads"));
1521     statusBar()->showMessage(tr("Downloads complete"));
1522 }
1523
1524 void MainWindow::toggleDownloads(bool show) {
1525
1526     if (show) {
1527         stopAct->setShortcuts(QList<QKeySequence>() << QKeySequence(Qt::Key_MediaStop));
1528         The::globalActions()->value("downloads")->setShortcuts(
1529                     QList<QKeySequence>() << QKeySequence(Qt::CTRL + Qt::Key_J)
1530                     << QKeySequence(Qt::Key_Escape));
1531     } else {
1532         The::globalActions()->value("downloads")->setShortcuts(
1533                     QList<QKeySequence>() << QKeySequence(Qt::CTRL + Qt::Key_J));
1534         stopAct->setShortcuts(QList<QKeySequence>() << QKeySequence(Qt::Key_Escape) << QKeySequence(Qt::Key_MediaStop));
1535     }
1536
1537     if (!downloadView) {
1538         downloadView = new DownloadView(this);
1539         views->addWidget(downloadView);
1540     }
1541     if (show) showWidget(downloadView);
1542     else goBack();
1543 }
1544
1545 void MainWindow::suggestionAccepted(Suggestion *suggestion) {
1546     search(suggestion->value);
1547 }
1548
1549 void MainWindow::search(const QString &query) {
1550     QString q = query.trimmed();
1551     if (q.length() == 0) return;
1552     SearchParams *searchParams = new SearchParams();
1553     searchParams->setKeywords(q);
1554     showMedia(searchParams);
1555 }
1556
1557 void MainWindow::dragEnterEvent(QDragEnterEvent *event) {
1558     if (event->mimeData()->hasFormat("text/uri-list")) {
1559         QList<QUrl> urls = event->mimeData()->urls();
1560         if (urls.isEmpty()) return;
1561         QUrl url = urls.first();
1562         QString videoId = YTSearch::videoIdFromUrl(url.toString());
1563         if (!videoId.isEmpty())
1564             event->acceptProposedAction();
1565     }
1566 }
1567
1568 void MainWindow::dropEvent(QDropEvent *event) {
1569     if (!toolbarSearch->isEnabled()) return;
1570
1571     QList<QUrl> urls = event->mimeData()->urls();
1572     if (urls.isEmpty())
1573         return;
1574     QUrl url = urls.first();
1575     QString videoId = YTSearch::videoIdFromUrl(url.toString());
1576     if (!videoId.isEmpty()) {
1577         setWindowTitle(url.toString());
1578         SearchParams *searchParams = new SearchParams();
1579         searchParams->setKeywords(videoId);
1580         showMedia(searchParams);
1581     }
1582 }
1583
1584 void MainWindow::checkForUpdate() {
1585     static const QString updateCheckKey = "updateCheck";
1586
1587     // check every 24h
1588     QSettings settings;
1589     uint unixTime = QDateTime::currentDateTime().toTime_t();
1590     int lastCheck = settings.value(updateCheckKey).toInt();
1591     int secondsSinceLastCheck = unixTime - lastCheck;
1592     // qDebug() << "secondsSinceLastCheck" << unixTime << lastCheck << secondsSinceLastCheck;
1593     if (secondsSinceLastCheck < 86400) return;
1594
1595     // check it out
1596     if (updateChecker) delete updateChecker;
1597     updateChecker = new UpdateChecker();
1598     connect(updateChecker, SIGNAL(newVersion(QString)),
1599             this, SLOT(gotNewVersion(QString)));
1600     updateChecker->checkForUpdate();
1601     settings.setValue(updateCheckKey, unixTime);
1602 }
1603
1604 void MainWindow::gotNewVersion(QString version) {
1605     if (updateChecker) {
1606         delete updateChecker;
1607         updateChecker = 0;
1608     }
1609
1610     QSettings settings;
1611     QString checkedVersion = settings.value("checkedVersion").toString();
1612     if (checkedVersion == version) return;
1613
1614 #ifdef APP_EXTRA
1615 #ifndef APP_MAC
1616     UpdateDialog *dialog = new UpdateDialog(version, this);
1617     dialog->show();
1618 #endif
1619 #else
1620     simpleUpdateDialog(version);
1621 #endif
1622 }
1623
1624 void MainWindow::simpleUpdateDialog(QString version) {
1625     QMessageBox msgBox(this);
1626     msgBox.setIconPixmap(
1627                 QPixmap(":/images/app.png")
1628                 .scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation));
1629     msgBox.setText(tr("%1 version %2 is now available.").arg(Constants::NAME, version));
1630     msgBox.setModal(true);
1631     msgBox.setWindowModality(Qt::WindowModal);
1632     msgBox.addButton(QMessageBox::Close);
1633     QPushButton* laterButton = msgBox.addButton(tr("Remind me later"), QMessageBox::RejectRole);
1634     QPushButton* updateButton = msgBox.addButton(tr("Update"), QMessageBox::AcceptRole);
1635     msgBox.exec();
1636     if (msgBox.clickedButton() != laterButton) {
1637         QSettings settings;
1638         settings.setValue("checkedVersion", version);
1639     }
1640     if (msgBox.clickedButton() == updateButton) visitSite();
1641 }
1642
1643 void MainWindow::floatOnTop(bool onTop) {
1644     showActionInStatusBar(The::globalActions()->value("ontop"), onTop);
1645 #ifdef APP_MAC
1646     mac::floatOnTop(winId(), onTop);
1647     return;
1648 #endif
1649     if (onTop) {
1650         setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
1651         show();
1652     } else {
1653         setWindowFlags(windowFlags() ^ Qt::WindowStaysOnTopHint);
1654         show();
1655     }
1656 }
1657
1658 void MainWindow::restore() {
1659 #ifdef APP_MAC
1660     mac::uncloseWindow(window()->winId());
1661 #endif
1662 }
1663
1664 void MainWindow::messageReceived(const QString &message) {
1665     if (message == QLatin1String("--toggle-playing")) {
1666         if (pauseAct->isEnabled()) pauseAct->trigger();
1667     } else if (message == QLatin1String("--next")) {
1668         if (skipAct->isEnabled()) skipAct->trigger();
1669     } else if (message == QLatin1String("--previous")) {
1670         if (skipBackwardAct->isEnabled()) skipBackwardAct->trigger();
1671     } else if (message == QLatin1String("--stop-after-this")) {
1672         The::globalActions()->value("stopafterthis")->toggle();
1673     }  else if (message.startsWith("--")) {
1674         MainWindow::printHelp();
1675     } else if (!message.isEmpty()) {
1676         SearchParams *searchParams = new SearchParams();
1677         searchParams->setKeywords(message);
1678         showMedia(searchParams);
1679     }
1680 }
1681
1682 void MainWindow::hideMouse() {
1683     setCursor(Qt::BlankCursor);
1684     mediaView->setPlaylistVisible(false);
1685 #ifndef APP_MAC
1686     mainToolBar->setVisible(false);
1687 #endif
1688 }
1689
1690 #ifdef APP_MAC_STORE
1691 void MainWindow::rateOnAppStore() {
1692     QDesktopServices::openUrl(QUrl("macappstore://userpub.itunes.apple.com"
1693                                    "/WebObjects/MZUserPublishing.woa/wa/addUserReview"
1694                                    "?id=422006190&type=Purple+Software"));
1695 }
1696 #endif
1697
1698 void MainWindow::printHelp() {
1699     QString msg = QString("%1 %2\n\n").arg(Constants::NAME, Constants::VERSION);
1700     msg += "Usage: minitube [options]\n";
1701     msg += "Options:\n";
1702     msg += "  --toggle-playing\t";
1703     msg += "Start or pause playback.\n";
1704     msg += "  --next\t\t";
1705     msg += "Skip to the next video.\n";
1706     msg += "  --previous\t\t";
1707     msg += "Go back to the previous video.\n";
1708     msg += "  --stop-after-this\t";
1709     msg += "Stop playback at the end of the video.\n";
1710     std::cout << msg.toLocal8Bit().data();
1711 }
1712
1713 void MainWindow::showMessage(QString message) {
1714     statusBar()->showMessage(message, 60000);
1715 }
1716
1717 #ifdef APP_ACTIVATION
1718 void MainWindow::showActivationView(bool transition) {
1719     QWidget *activationView = ActivationView::instance();
1720     if (views->currentWidget() == activationView) {
1721         buy();
1722         return;
1723     }
1724     views->addWidget(activationView);
1725     showWidget(activationView, transition);
1726 }
1727
1728 void MainWindow::showActivationDialog() {
1729     QTimer::singleShot(0, new ActivationDialog(this), SLOT(show()));
1730 }
1731
1732 void MainWindow::buy() {
1733     Extra::buy();
1734 }
1735
1736 void MainWindow::hideBuyAction() {
1737     QAction *action = The::globalActions()->value("buy");
1738     action->setVisible(false);
1739     action->setEnabled(false);
1740 }
1741 #endif
1742
1743 void MainWindow::showRegionsView() {
1744     if (!regionsView) {
1745         regionsView = new RegionsView(this);
1746         connect(regionsView, SIGNAL(regionChanged()),
1747                 homeView->getStandardFeedsView(), SLOT(load()));
1748         views->addWidget(regionsView);
1749     }
1750     showWidget(regionsView);
1751 }