aboutsummaryrefslogtreecommitdiff
path: root/src/pulse-manager.h
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2010-06-24 14:50:20 -0400
committerKen VanDine <ken.vandine@canonical.com>2010-06-24 14:50:20 -0400
commit63cc1d29b748a41f5e779aab6a38b7697421b80a (patch)
treeda17ffa7b04f31af69f5b02c7c8373a38c58abfb /src/pulse-manager.h
parent1e65c770811a96d79b302dfd0ddee67a4c7c07f5 (diff)
parent288985d7c0a4dcdde22335a31d9eae7f7d5ec215 (diff)
downloadayatana-indicator-sound-63cc1d29b748a41f5e779aab6a38b7697421b80a.tar.gz
ayatana-indicator-sound-63cc1d29b748a41f5e779aab6a38b7697421b80a.tar.bz2
ayatana-indicator-sound-63cc1d29b748a41f5e779aab6a38b7697421b80a.zip
* New upstream release.
- MPRIS transport status updates reflecting in UI If externally a registered player transport is changed (play/stop) the menu should reflect that - The first time a player registers its desktop file path should be stored ~.cache/indicators/sound/familiar-players-db.keyfile (provided the application indicator has a desktop file set. - Album art dynamically updated - Album title dynamically updated - Track title dynamically updated - Artist name dynamically updated - Play/pause transport control should be working from the menu
Diffstat (limited to 'src/pulse-manager.h')
-rw-r--r--src/pulse-manager.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/pulse-manager.h b/src/pulse-manager.h
index 54978bb..fc01f1c 100644
--- a/src/pulse-manager.h
+++ b/src/pulse-manager.h
@@ -29,19 +29,19 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
typedef struct {
- gchar* name;
- gint index;
- pa_cvolume volume;
- pa_channel_map channel_map;
- gboolean mute;
- pa_volume_t base_volume;
+ gchar* name;
+ gint index;
+ pa_cvolume volume;
+ pa_channel_map channel_map;
+ gboolean mute;
+ pa_volume_t base_volume;
} sink_info;
pa_context* get_context(void);
void establish_pulse_activities(SoundServiceDbus *service);
void set_sink_volume(gdouble percent);
-void toggle_global_mute(gboolean mute_value);
+void toggle_global_mute(gboolean mute_value);
void close_pulse_activites();
#endif