]> git.sur5r.net Git - minitube/blob - src/MediaView.cpp
0.5
[minitube] / src / MediaView.cpp
1 #include "MediaView.h"
2 #include "playlist/PrettyItemDelegate.h"
3 #include "networkaccess.h"
4 #include "videowidget.h"
5 #include "minisplitter.h"
6
7 namespace The {
8     QMap<QString, QAction*>* globalActions();
9     QMap<QString, QMenu*>* globalMenus();
10     QNetworkAccessManager* networkAccessManager();
11 }
12
13 MediaView::MediaView(QWidget *parent) : QWidget(parent) {
14
15     QBoxLayout *layout = new QHBoxLayout();
16     layout->setMargin(0);
17
18     splitter = new MiniSplitter(this);
19     splitter->setChildrenCollapsible(false);
20
21     sortBar = new THBlackBar(this);
22     mostRelevantAction = new THAction(tr("Most relevant"), this);
23     connect(mostRelevantAction, SIGNAL(triggered()), this, SLOT(searchMostRelevant()), Qt::QueuedConnection);
24     sortBar->addAction(mostRelevantAction);
25     mostRecentAction = new THAction(tr("Most recent"), this);
26     connect(mostRecentAction, SIGNAL(triggered()), this, SLOT(searchMostRecent()), Qt::QueuedConnection);
27     sortBar->addAction(mostRecentAction);
28     mostViewedAction = new THAction(tr("Most viewed"), this);
29     connect(mostViewedAction, SIGNAL(triggered()), this, SLOT(searchMostViewed()), Qt::QueuedConnection);
30     sortBar->addAction(mostViewedAction);
31
32     listView = new QListView(this);
33     listView->setItemDelegate(new Playlist::PrettyItemDelegate(this));
34     listView->setSelectionMode(QAbstractItemView::ExtendedSelection);
35
36     // dragndrop
37     listView->setDragEnabled(true);
38     listView->setAcceptDrops(true);
39     listView->setDropIndicatorShown(true);
40     listView->setDragDropMode(QAbstractItemView::DragDrop);
41
42     // cosmetics
43     listView->setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
44     listView->setFrameShape( QFrame::NoFrame );
45     listView->setAttribute(Qt::WA_MacShowFocusRect, false);
46     listView->setMinimumSize(320,240);
47
48     // respond to the user doubleclicking a playlist item
49     connect(listView, SIGNAL(activated(const QModelIndex &)), this, SLOT(itemActivated(const QModelIndex &)));
50
51     listModel = new ListModel(this);
52     connect(listModel, SIGNAL(activeRowChanged(int)), this, SLOT(activeRowChanged(int)));
53     // needed to restore the selection after dragndrop
54     connect(listModel, SIGNAL(needSelectionFor(QList<Video*>)), this, SLOT(selectVideos(QList<Video*>)));
55     listView->setModel(listModel);
56
57     connect(listView->selectionModel(),
58             SIGNAL(selectionChanged ( const QItemSelection & , const QItemSelection & )),
59             this, SLOT(selectionChanged ( const QItemSelection & , const QItemSelection & )));
60
61     playlistWidget = new PlaylistWidget(this, sortBar, listView);
62
63     splitter->addWidget(playlistWidget);
64
65     videoAreaWidget = new VideoAreaWidget(this);
66     videoAreaWidget->setMinimumSize(320,240);
67
68     videoWidget = new Phonon::VideoWidget(this);
69     videoAreaWidget->setVideoWidget(videoWidget);
70     videoAreaWidget->setListModel(listModel);
71
72     loadingWidget = new LoadingWidget(this);
73     videoAreaWidget->setLoadingWidget(loadingWidget);
74
75     splitter->addWidget(videoAreaWidget);
76
77     layout->addWidget(splitter);
78     setLayout(layout);
79
80 }
81
82 MediaView::~MediaView() {
83
84 }
85
86 void MediaView::initialize() {
87     connect(videoAreaWidget, SIGNAL(doubleClicked()), The::globalActions()->value("fullscreen"), SLOT(trigger()));
88     videoAreaWidget->setContextMenuPolicy(Qt::CustomContextMenu);
89     connect(videoAreaWidget, SIGNAL(customContextMenuRequested(QPoint)),
90             this, SLOT(showVideoContextMenu(QPoint)));
91 }
92
93 void MediaView::setMediaObject(Phonon::MediaObject *mediaObject) {
94     this->mediaObject = mediaObject;
95     Phonon::createPath(this->mediaObject, videoWidget);
96     // connect(mediaObject, SIGNAL(aboutToFinish()), this, SLOT(aboutToFinish()));
97     connect(mediaObject, SIGNAL(finished()), this, SLOT(skip()));
98     connect(mediaObject, SIGNAL(stateChanged(Phonon::State, Phonon::State)),
99             this, SLOT(stateChanged(Phonon::State, Phonon::State)));
100     connect(mediaObject, SIGNAL(currentSourceChanged(Phonon::MediaSource)),
101             this, SLOT(currentSourceChanged(Phonon::MediaSource)));
102     connect(mediaObject, SIGNAL(bufferStatus(int)), loadingWidget, SLOT(bufferStatus(int)));
103 }
104
105 void MediaView::search(SearchParams *searchParams) {
106     this->searchParams = searchParams;
107
108     // start serching for videos
109     listModel->search(searchParams);
110
111     // this implies that the enum and the bar action order is the same
112     sortBar->setCheckedAction(searchParams->sortBy()-1);
113
114     listView->setFocus();
115
116     loadingWidget->clear();
117 }
118
119 void MediaView::disappear() {
120     timerPlayFlag = true;
121 }
122
123 void MediaView::stateChanged(Phonon::State newState, Phonon::State /*oldState*/)
124 {
125
126     // qDebug() << "Phonon state: " << newState << oldState;
127
128     switch (newState) {
129
130          case Phonon::ErrorState:
131         qDebug() << "Phonon error:" << mediaObject->errorString() << mediaObject->errorType();
132         // recover from errors by skipping to the next video
133         skip();
134         break;
135
136          case Phonon::PlayingState:
137         qDebug("playing");
138         videoAreaWidget->showVideo();
139         break;
140
141          case Phonon::StoppedState:
142         qDebug("stopped");
143         // play() has already been called when setting the source
144         // but Phonon on Linux needs a little more help to start playback
145         mediaObject->play();
146
147         // Workaround for Mac playback start problem
148         if (!timerPlayFlag) {
149             QTimer::singleShot(1000, this, SLOT(timerPlay()));
150         }
151
152         break;
153
154          case Phonon::PausedState:
155         qDebug("paused");
156         break;
157
158          case Phonon::BufferingState:
159         qDebug("buffering");
160         break;
161
162          case Phonon::LoadingState:
163         qDebug("loading");
164         break;
165
166          default:
167         ;
168     }
169 }
170
171 void MediaView::pause() {
172     switch( mediaObject->state() ) {
173     case Phonon::PlayingState:
174         mediaObject->pause();
175         break;
176     default:
177         mediaObject->play();
178         break;
179     }
180 }
181
182 void MediaView::stop() {
183     listModel->abortSearch();
184     mediaObject->stop();
185     mediaObject->clear();
186 }
187
188 void MediaView::activeRowChanged(int row) {
189     Video *video = listModel->videoAt(row);
190     if (!video) return;
191
192     // immediately show the loading widget
193     videoAreaWidget->showLoading(video);
194
195     // mediaObject->pause();
196
197     connect(video, SIGNAL(gotStreamUrl(QUrl)), SLOT(gotStreamUrl(QUrl)));
198     // TODO handle signal in a proper slot and impl item error status
199     connect(video, SIGNAL(errorStreamUrl()), SLOT(skip()));
200     video->loadStreamUrl();
201
202     // reset the timer flag
203     timerPlayFlag = false;
204
205     // video title in the statusbar
206     QMainWindow* mainWindow = dynamic_cast<QMainWindow*>(qApp->topLevelWidgets().first());
207     if (mainWindow) mainWindow->statusBar()->showMessage(video->title());
208
209     // see you in gotStreamUrl...
210
211 }
212
213 void MediaView::gotStreamUrl(QUrl streamUrl) {
214
215     // go!
216     mediaObject->setCurrentSource(streamUrl);
217     mediaObject->play();
218
219     // ensure we always have 10 videos ahead
220     listModel->searchNeeded();
221
222     // ensure active item is visible
223     int row = listModel->activeRow();
224     if (row != -1) {
225         QModelIndex index = listModel->index(row, 0, QModelIndex());
226         listView->scrollTo(index, QAbstractItemView::EnsureVisible);
227     }
228
229 }
230
231 void MediaView::itemActivated(const QModelIndex &index) {
232     if (listModel->rowExists(index.row()))
233         listModel->setActiveRow(index.row());
234     // the user doucleclicked on the "Search More" item
235     else listModel->searchMore();
236 }
237
238 void MediaView::aboutToFinish() {
239     /*
240     int nextRow = listModel->nextRow();
241     if (nextRow == -1) return;
242     Video* video = listModel->videoAt(nextRow);
243     QUrl streamUrl = video->streamUrl();
244     qDebug() << "Enqueing" << streamUrl;
245     mediaObject->enqueue(streamUrl);
246     */
247 }
248
249 void MediaView::currentSourceChanged(const Phonon::MediaSource source) {
250     qDebug() << "Source changed:" << source.url();
251 }
252
253 void MediaView::skip() {
254     int nextRow = listModel->nextRow();
255     if (nextRow == -1) return;
256     listModel->setActiveRow(nextRow);
257 }
258
259 void MediaView::openWebPage() {
260     Video* video = listModel->activeVideo();
261     if (!video) return;
262     mediaObject->pause();
263     QDesktopServices::openUrl(video->webpage());
264 }
265
266 void MediaView::removeSelected() {
267     if (!listView->selectionModel()->hasSelection()) return;
268     QModelIndexList indexes = listView->selectionModel()->selectedIndexes();
269     listModel->removeIndexes(indexes);
270 }
271
272 void MediaView::selectVideos(QList<Video*> videos) {
273     foreach (Video *video, videos) {
274         QModelIndex index = listModel->indexForVideo(video);
275         listView->selectionModel()->select(index, QItemSelectionModel::Select);
276         listView->scrollTo(index, QAbstractItemView::EnsureVisible);
277     }
278 }
279
280 void MediaView::selectionChanged(const QItemSelection & /*selected*/, const QItemSelection & /*deselected*/) {
281     const bool gotSelection = listView->selectionModel()->hasSelection();
282     The::globalActions()->value("remove")->setEnabled(gotSelection);
283     The::globalActions()->value("moveUp")->setEnabled(gotSelection);
284     The::globalActions()->value("moveDown")->setEnabled(gotSelection);
285 }
286
287 void MediaView::moveUpSelected() {
288     if (!listView->selectionModel()->hasSelection()) return;
289     QModelIndexList indexes = listView->selectionModel()->selectedIndexes();
290     listModel->move(indexes, true);
291 }
292
293 void MediaView::moveDownSelected() {
294     if (!listView->selectionModel()->hasSelection()) return;
295     QModelIndexList indexes = listView->selectionModel()->selectedIndexes();
296     listModel->move(indexes, false);
297 }
298
299 void MediaView::showVideoContextMenu(QPoint point) {
300     The::globalMenus()->value("video")->popup(videoWidget->mapToGlobal(point));
301 }
302
303 void MediaView::searchMostRelevant() {
304     searchParams->setSortBy(SearchParams::SortByRelevance);
305     search(searchParams);
306 }
307
308 void MediaView::searchMostRecent() {
309     searchParams->setSortBy(SearchParams::SortByNewest);
310     search(searchParams);
311 }
312
313 void MediaView::searchMostViewed() {
314     searchParams->setSortBy(SearchParams::SortByViewCount);
315     search(searchParams);
316 }
317
318 void MediaView::setPlaylistVisible(bool visible) {
319     playlistWidget->setVisible(visible);
320 }
321
322 void MediaView::timerPlay() {
323     // qDebug() << mediaObject->currentTime();
324     // Workaround Phonon bug on Mac OSX
325     if (mediaObject->currentTime() <= 0 && mediaObject->state() == Phonon::PlayingState) {
326         mediaObject->pause();
327         mediaObject->play();
328     }
329 }