summaryrefslogtreecommitdiff
path: root/src/totem-object.c
diff options
context:
space:
mode:
authorKrifa75 <yahiaoui.fakhri@gmail.com>2022-11-19 19:34:07 +0100
committerBastien Nocera <hadess@hadess.net>2022-11-23 12:38:09 +0100
commit1e0b0b189492f37f5652fd4ce2b1c3c870010977 (patch)
tree47a89bc8a2cd254644f4d7c4ee98ed925d98be68 /src/totem-object.c
parent078f29d065ae3a1718e796da3159130ae72508da (diff)
downloadtotem-1e0b0b189492f37f5652fd4ce2b1c3c870010977.tar.gz
main: Connect to BaconVideoWidget properties in GtkBuilder
Diffstat (limited to 'src/totem-object.c')
-rw-r--r--src/totem-object.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/totem-object.c b/src/totem-object.c
index 2ffc2585c..25c07d0e4 100644
--- a/src/totem-object.c
+++ b/src/totem-object.c
@@ -157,6 +157,8 @@ G_MODULE_EXPORT void drop_video_cb (GtkWidget *wid
guint info,
guint _time,
Totem *totem);
+G_MODULE_EXPORT void property_notify_cb_volume (BaconVideoWidget *bvw, GParamSpec *spec, TotemObject *totem);
+G_MODULE_EXPORT void property_notify_cb_seekable (BaconVideoWidget *bvw, GParamSpec *spec, TotemObject *totem);
enum {
PROP_0,
@@ -2783,13 +2785,13 @@ update_volume_sliders (TotemObject *totem)
g_signal_handlers_unblock_by_func (totem->volume, volume_button_value_changed_cb, totem);
}
-static void
+void
property_notify_cb_volume (BaconVideoWidget *bvw, GParamSpec *spec, TotemObject *totem)
{
update_volume_sliders (totem);
}
-static void
+void
property_notify_cb_seekable (BaconVideoWidget *bvw, GParamSpec *spec, TotemObject *totem)
{
update_seekable (totem);
@@ -3993,10 +3995,6 @@ totem_callback_connect (TotemObject *totem)
action_set_sensitive ("previous-chapter", FALSE);
/* Volume */
- g_signal_connect (G_OBJECT (totem->bvw), "notify::volume",
- G_CALLBACK (property_notify_cb_volume), totem);
- g_signal_connect (G_OBJECT (totem->bvw), "notify::seekable",
- G_CALLBACK (property_notify_cb_seekable), totem);
update_volume_sliders (totem);
}