diff options
author | kotontrion <[email protected]> | 2024-08-15 10:11:16 +0200 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-08-15 10:11:16 +0200 |
commit | e14677c877bb591ed496e60ad37113e1dc41d509 (patch) | |
tree | 53601e1a9048e780735d0d45fc00467f7b05f128 /include/astal/wireplumber/endpoint.h | |
parent | 8f3eca7c0876fc8daf2cbc86bb7b83dd01fc2845 (diff) |
add volume-icon
Diffstat (limited to 'include/astal/wireplumber/endpoint.h')
-rw-r--r-- | include/astal/wireplumber/endpoint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/astal/wireplumber/endpoint.h b/include/astal/wireplumber/endpoint.h index e2e4065..6ae8b94 100644 --- a/include/astal/wireplumber/endpoint.h +++ b/include/astal/wireplumber/endpoint.h @@ -22,19 +22,19 @@ typedef enum { ASTAL_WP_MEDIA_CLASS_VIDEO_STREAM, } AstalWpMediaClass; -void astal_wp_endpoint_update_volume(AstalWpEndpoint *self); void astal_wp_endpoint_set_volume(AstalWpEndpoint *self, gdouble volume); void astal_wp_endpoint_set_mute(AstalWpEndpoint *self, gboolean mute); gboolean astal_wp_endpoint_get_is_default(AstalWpEndpoint *self); +void astal_wp_endpoint_set_is_default(AstalWpEndpoint *self, gboolean is_default); AstalWpMediaClass astal_wp_endpoint_get_media_class(AstalWpEndpoint *self); guint astal_wp_endpoint_get_id(AstalWpEndpoint *self); gboolean astal_wp_endpoint_get_mute(AstalWpEndpoint *self); gdouble astal_wp_endpoint_get_volume(AstalWpEndpoint *self); const gchar *astal_wp_endpoint_get_description(AstalWpEndpoint *self); -void astal_wp_endpoint_set_is_default(AstalWpEndpoint *self, gboolean is_default); const gchar *astal_wp_endpoint_get_name(AstalWpEndpoint *self); const gchar *astal_wp_endpoint_get_icon(AstalWpEndpoint *self); +const gchar *astal_wp_endpoint_get_volume_icon(AstalWpEndpoint *self); G_END_DECLS |