Use common GPodderPlayback component from gpodder-ui-qml
This commit is contained in:
parent
2ef56438b6
commit
5defe76954
3 changed files with 5 additions and 42 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit c1f8db5500b117d0d704e782bad62cd54579d9fd
|
Subproject commit a271e6b7644244d63cc9dca83dcab6a461d9186c
|
|
@ -45,6 +45,10 @@ PodcastsPage {
|
||||||
id: py
|
id: py
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GPodderPlayback {
|
||||||
|
id: player
|
||||||
|
}
|
||||||
|
|
||||||
function loadPage(filename, properties) {
|
function loadPage(filename, properties) {
|
||||||
var component = Qt.createComponent(filename);
|
var component = Qt.createComponent(filename);
|
||||||
if (component.status != Component.Ready) {
|
if (component.status != Component.Ready) {
|
||||||
|
@ -58,10 +62,6 @@ PodcastsPage {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Player {
|
|
||||||
id: player
|
|
||||||
}
|
|
||||||
|
|
||||||
BusyIndicator {
|
BusyIndicator {
|
||||||
size: BusyIndicatorSize.Large
|
size: BusyIndicatorSize.Large
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* gPodder QML UI Reference Implementation
|
|
||||||
* Copyright (c) 2013, Thomas Perl <m@thp.io>
|
|
||||||
*
|
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
|
||||||
* copyright notice and this permission notice appear in all copies.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
||||||
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
||||||
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
||||||
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
||||||
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
||||||
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
||||||
* PERFORMANCE OF THIS SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
import QtQuick 2.0
|
|
||||||
import QtMultimedia 5.0
|
|
||||||
|
|
||||||
MediaPlayer {
|
|
||||||
id: player
|
|
||||||
|
|
||||||
property int episode
|
|
||||||
property var queue: ([])
|
|
||||||
|
|
||||||
function playbackEpisode(episode_id) {
|
|
||||||
player.episode = episode_id;
|
|
||||||
py.call('main.play_episode', [episode_id], function (episode) {
|
|
||||||
player.source = episode.source;
|
|
||||||
player.play();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue