diff options
author | Ted Gould <ted@gould.cx> | 2014-03-13 16:11:50 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2014-03-13 16:11:50 -0500 |
commit | aa729767217df6e3058b439552ba166cef6c6053 (patch) | |
tree | 533f687d74056e3d86917458c94d5a1690d6b442 /src/service.vala | |
parent | 5857ca8b2f70630a298ac19aaf8a60668badbb53 (diff) | |
parent | b51fa335562a99e80ec30daf89d0715e084d50d0 (diff) | |
download | ayatana-indicator-sound-aa729767217df6e3058b439552ba166cef6c6053.tar.gz ayatana-indicator-sound-aa729767217df6e3058b439552ba166cef6c6053.tar.bz2 ayatana-indicator-sound-aa729767217df6e3058b439552ba166cef6c6053.zip |
Catching up with trunk
Diffstat (limited to 'src/service.vala')
-rw-r--r-- | src/service.vala | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/service.vala b/src/service.vala index d329e7b..6835896 100644 --- a/src/service.vala +++ b/src/service.vala @@ -22,6 +22,9 @@ public class IndicatorSound.Service: Object { this.settings = new Settings ("com.canonical.indicator.sound"); this.sharedsettings = new Settings ("com.ubuntu.sound"); + this.settings.bind ("visible", this, "visible", SettingsBindFlags.GET); + this.notify["visible"].connect ( () => this.update_root_icon () ); + this.volume_control = new VolumeControl (); this.players = new MediaPlayerList (); @@ -35,7 +38,7 @@ public class IndicatorSound.Service: Object { this.actions.add_action (this.create_mic_volume_action ()); this.menus = new HashTable<string, SoundMenu> (str_hash, str_equal); - this.menus.insert ("desktop_greeter", new SoundMenu (null, SoundMenu.DisplayFlags.SHOW_MUTE)); + this.menus.insert ("desktop_greeter", new SoundMenu (null, SoundMenu.DisplayFlags.SHOW_MUTE | SoundMenu.DisplayFlags.HIDE_PLAYERS)); this.menus.insert ("desktop", new SoundMenu ("indicator.desktop-settings", SoundMenu.DisplayFlags.SHOW_MUTE)); this.menus.insert ("phone", new SoundMenu ("indicator.phone-settings", SoundMenu.DisplayFlags.HIDE_INACTIVE_PLAYERS)); @@ -78,6 +81,8 @@ public class IndicatorSound.Service: Object { return 0; } + public bool visible { get; set; } + public bool allow_amplified_volume { get { return this.max_volume > 1.0; @@ -209,7 +214,7 @@ public class IndicatorSound.Service: Object { builder.add ("{sv}", "title", new Variant.string (_("Sound"))); builder.add ("{sv}", "accessible-desc", new Variant.string (accessible_name)); builder.add ("{sv}", "icon", serialize_themed_icon (icon)); - builder.add ("{sv}", "visible", new Variant.boolean (true)); + builder.add ("{sv}", "visible", new Variant.boolean (this.visible)); root_action.set_state (builder.end()); } |