Compare commits

..

2 commits

Author SHA1 Message Date
bf8b02de12 volume slider works again 2024-10-30 13:09:22 +01:00
0f2351ae01 make the play pause button work again 2024-10-30 12:59:16 +01:00
4 changed files with 93 additions and 22 deletions

View file

@ -121,7 +121,7 @@ template $AudreyUiPlaybar: Adw.Bin {
valign: center; valign: center;
sensitive: bind $can_press_play (template.playbin as <$AudreyPlaybin>.state as <$AudreyPlaybinState>, template.playbin as <$AudreyPlaybin>.play-queue-length) as <bool>; sensitive: bind $can_press_play (template.playbin as <$AudreyPlaybin>.state as <$AudreyPlaybinState>, template.playbin as <$AudreyPlaybin>.play-queue-length) as <bool>;
clicked => $on_play_pause_clicked (); clicked => $on_play_pause_clicked (template);
} }
Button { Button {

View file

@ -19,6 +19,11 @@ mod ffi {
extern "C" { extern "C" {
pub fn audrey_playbin_get_type() -> glib::ffi::GType; pub fn audrey_playbin_get_type() -> glib::ffi::GType;
pub fn audrey_playbin_get_state(self_: *mut AudreyPlaybin) -> super::state::ffi::State;
pub fn audrey_playbin_pause(self_: *mut AudreyPlaybin);
pub fn audrey_playbin_play(self_: *mut AudreyPlaybin);
pub fn audrey_playbin_get_volume(self_: *mut AudreyPlaybin) -> std::ffi::c_int;
pub fn audrey_playbin_set_volume(self_: *mut AudreyPlaybin, volume: std::ffi::c_int);
} }
} }
@ -31,3 +36,35 @@ glib::wrapper! {
type_ => || ffi::audrey_playbin_get_type(), type_ => || ffi::audrey_playbin_get_type(),
} }
} }
impl Playbin {
pub fn get_state(&self) -> State {
use glib::translate::ToGlibPtr;
unsafe { glib::translate::from_glib(ffi::audrey_playbin_get_state(self.to_glib_none().0)) }
}
pub fn pause(&self) {
use glib::translate::ToGlibPtr;
unsafe { ffi::audrey_playbin_pause(self.to_glib_none().0) }
}
pub fn play(&self) {
use glib::translate::ToGlibPtr;
unsafe { ffi::audrey_playbin_play(self.to_glib_none().0) }
}
pub fn get_volume(&self) -> i32 {
use glib::translate::ToGlibPtr;
unsafe { ffi::audrey_playbin_get_volume(self.to_glib_none().0) }
}
pub fn set_volume(&self, value: i32) {
use glib::translate::ToGlibPtr;
unsafe { ffi::audrey_playbin_set_volume(self.to_glib_none().0, value) }
}
}

View file

@ -1,13 +1,15 @@
mod ffi { pub mod ffi {
use gtk::glib; use gtk::glib;
pub type State = std::ffi::c_int;
extern "C" { extern "C" {
pub fn audrey_playbin_state_get_type() -> glib::ffi::GType; pub fn audrey_playbin_state_get_type() -> glib::ffi::GType;
} }
} }
use gtk::glib;
use glib::prelude::*; use glib::prelude::*;
use gtk::glib;
#[derive(Copy, Clone, PartialEq, Eq)] #[derive(Copy, Clone, PartialEq, Eq)]
pub enum State { pub enum State {
@ -16,13 +18,9 @@ pub enum State {
Playing, Playing,
} }
unsafe impl<'a> glib::value::FromValue<'a> for State { impl glib::translate::FromGlib<ffi::State> for State {
type Checker = glib::value::GenericValueTypeChecker<Self>; unsafe fn from_glib(value: ffi::State) -> Self {
match value {
unsafe fn from_value(value: &'a glib::Value) -> Self {
use glib::translate::ToGlibPtr;
match glib::gobject_ffi::g_value_get_enum(value.to_glib_none().0) {
0 => Self::Stopped, 0 => Self::Stopped,
1 => Self::Paused, 1 => Self::Paused,
2 => Self::Playing, 2 => Self::Playing,
@ -31,6 +29,16 @@ unsafe impl<'a> glib::value::FromValue<'a> for State {
} }
} }
unsafe impl<'a> glib::value::FromValue<'a> for State {
type Checker = glib::value::GenericValueTypeChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
use glib::translate::ToGlibPtr;
glib::translate::from_glib(glib::gobject_ffi::g_value_get_enum(value.to_glib_none().0))
}
}
impl StaticType for State { impl StaticType for State {
fn static_type() -> glib::Type { fn static_type() -> glib::Type {
unsafe { glib::translate::from_glib(ffi::audrey_playbin_state_get_type()) } unsafe { glib::translate::from_glib(ffi::audrey_playbin_state_get_type()) }

View file

@ -18,8 +18,8 @@ mod imp {
#[property(get, set, default = true)] #[property(get, set, default = true)]
show_cover_art: Cell<bool>, show_cover_art: Cell<bool>,
#[property(get, set)] #[property(get = Self::get_volume, set = Self::set_volume)]
volume: Cell<i32>, volume: i32,
} }
#[glib::object_subclass] #[glib::object_subclass]
@ -96,11 +96,20 @@ mod imp {
#[template_callback] #[template_callback]
fn mute_button_icon_name(&self, mute: bool) -> &'static str { fn mute_button_icon_name(&self, mute: bool) -> &'static str {
if mute { "audio-volume-muted" } else { "audio-volume-high" } if mute {
"audio-volume-muted"
} else {
"audio-volume-high"
}
} }
#[template_callback] #[template_callback]
fn on_play_position_seek(&self, _range: &gtk::Range, _scroll_type: gtk::ScrollType, _value: f64) -> bool { fn on_play_position_seek(
&self,
_range: &gtk::Range,
_scroll_type: gtk::ScrollType,
_value: f64,
) -> bool {
/* /*
if (range.adjustment.lower < range.adjustment.upper) { if (range.adjustment.lower < range.adjustment.upper) {
this.playbin.seek ((int64) value); this.playbin.seek ((int64) value);
@ -139,15 +148,17 @@ mod imp {
// this.playbin.seek (new_position); // this.playbin.seek (new_position);
todo!() todo!()
} }
#[template_callback] #[template_callback]
fn on_play_pause_clicked(&self) { fn on_play_pause_clicked(&self, _button: &gtk::Button) {
// if (this.playbin.state == PlaybinState.PLAYING) { let playbin = self.playbin.borrow();
// this.playbin.pause(); let playbin = playbin.as_ref().unwrap();
// } else {
// this.playbin.play(); if playbin.get_state() == crate::playbin::State::Playing {
// } playbin.pause();
todo!() } else {
playbin.play();
}
} }
#[template_callback] #[template_callback]
@ -155,6 +166,21 @@ mod imp {
//this.playbin.mute = !this.playbin.mute; //this.playbin.mute = !this.playbin.mute;
todo!() todo!()
} }
fn get_volume(&self) -> i32 {
let playbin = self.playbin.borrow();
match playbin.as_ref() {
None => 100,
Some(playbin) => playbin.get_volume(),
}
}
fn set_volume(&self, value: i32) {
let playbin = self.playbin.borrow();
let playbin = playbin.as_ref().unwrap();
playbin.set_volume(value);
}
} }
} }