aboutsummaryrefslogtreecommitdiff
path: root/src/accounts-service-sound-settings.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/accounts-service-sound-settings.vala')
-rw-r--r--src/accounts-service-sound-settings.vala24
1 files changed, 14 insertions, 10 deletions
diff --git a/src/accounts-service-sound-settings.vala b/src/accounts-service-sound-settings.vala
index bbd6852..54c6ad6 100644
--- a/src/accounts-service-sound-settings.vala
+++ b/src/accounts-service-sound-settings.vala
@@ -1,5 +1,6 @@
/*
* Copyright 2014 Canonical Ltd.
+ * Copyright 2023 Robert Tari
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,18 +16,21 @@
*
* Authors:
* Ted Gould <ted@canonical.com>
+ * Robert Tari <robert@tari.in>
*/
[DBus (name = "org.ayatana.indicator.sound.AccountsService")]
public interface AccountsServiceSoundSettings : Object {
- // properties
- public abstract uint64 timestamp {owned get; set;}
- public abstract string player_name {owned get; set;}
- public abstract Variant player_icon {owned get; set;}
- public abstract bool running {owned get; set;}
- public abstract string state {owned get; set;}
- public abstract string title {owned get; set;}
- public abstract string artist {owned get; set;}
- public abstract string album {owned get; set;}
- public abstract string art_url {owned get; set;}
+ // properties
+ public abstract uint64 timestamp {owned get; set;}
+ public abstract string player_name {owned get; set;}
+ public abstract Variant player_icon {owned get; set;}
+ public abstract bool running {owned get; set;}
+ public abstract string state {owned get; set;}
+ public abstract string title {owned get; set;}
+ public abstract string artist {owned get; set;}
+ public abstract string album {owned get; set;}
+ public abstract string art_url {owned get; set;}
+ public abstract double volume {owned get; set;}
+ public abstract bool mute {owned get; set;}
}