mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-15 17:20:08 +00:00
draft video player component
This commit is contained in:
parent
da1c8d1da3
commit
b4b97facf0
24
src/app/browser/window/tab/item/page/content/player.rs
Normal file
24
src/app/browser/window/tab/item/page/content/player.rs
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
mod default;
|
||||||
|
use default::Default;
|
||||||
|
|
||||||
|
use gtk::{MediaStream, Video};
|
||||||
|
|
||||||
|
pub struct Player {
|
||||||
|
gobject: Video, // @TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Player {
|
||||||
|
// Constructors
|
||||||
|
|
||||||
|
pub fn new_default(media_stream: &MediaStream) -> Self {
|
||||||
|
Self {
|
||||||
|
gobject: Default::new(media_stream).gobject().clone(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Getters
|
||||||
|
|
||||||
|
pub fn gobject(&self) -> &Video {
|
||||||
|
&self.gobject
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
mod widget;
|
||||||
|
use widget::Widget;
|
||||||
|
|
||||||
|
use gtk::{MediaStream, Video};
|
||||||
|
|
||||||
|
pub struct Default {
|
||||||
|
widget: Widget,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default {
|
||||||
|
pub fn new(media_stream: &MediaStream) -> Self {
|
||||||
|
Self {
|
||||||
|
widget: Widget::new(media_stream),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn gobject(&self) -> &Video {
|
||||||
|
&self.widget.gobject()
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
use gtk::{MediaStream, Video};
|
||||||
|
|
||||||
|
pub struct Widget {
|
||||||
|
gobject: Video,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Widget {
|
||||||
|
// Constructors
|
||||||
|
|
||||||
|
/// Create new default widget configuration with options
|
||||||
|
pub fn new(media_stream: &MediaStream) -> Self {
|
||||||
|
Self {
|
||||||
|
gobject: Video::builder()
|
||||||
|
.autoplay(true)
|
||||||
|
.hexpand(true)
|
||||||
|
.media_stream(media_stream)
|
||||||
|
.vexpand(true)
|
||||||
|
.build(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Getters
|
||||||
|
|
||||||
|
pub fn gobject(&self) -> &Video {
|
||||||
|
&self.gobject
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user