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