dbus-service.h File Reference

#include <glib.h>
#include <libaudcore/core.h>
#include <dbus/dbus-glib.h>

Go to the source code of this file.

Classes

struct  RemoteObject
struct  RemoteObjectClass

Defines

#define DBUS_API_SUBJECT_TO_CHANGE

Typedefs

typedef struct RemoteObject MprisRoot
typedef struct RemoteObject MprisPlayer
typedef struct RemoteObject MprisTrackList
typedef struct RemoteObjectClass MprisRootClass
typedef struct RemoteObjectClass MprisPlayerClass
typedef struct RemoteObjectClass MprisTrackListClass

Enumerations

enum  {
  MPRIS_CAPS_NONE = 0, MPRIS_CAPS_CAN_GO_NEXT = 1 << 0, MPRIS_CAPS_CAN_GO_PREV = 1 << 1, MPRIS_CAPS_CAN_PAUSE = 1 << 2,
  MPRIS_CAPS_CAN_PLAY = 1 << 3, MPRIS_CAPS_CAN_SEEK = 1 << 4, MPRIS_CAPS_CAN_PROVIDE_METADATA = 1 << 5, MPRIS_CAPS_PROVIDES_TIMING = 1 << 6
}
enum  PlaybackStatus { MPRIS_STATUS_INVALID = -1, MPRIS_STATUS_PLAY = 0, MPRIS_STATUS_PAUSE = 1, MPRIS_STATUS_STOP = 2 }
enum  { TRACK_CHANGE_SIG, STATUS_CHANGE_SIG, CAPS_CHANGE_SIG, LAST_SIG }
enum  { TRACKLIST_CHANGE_SIG, LAST_TRACKLIST_SIG }

Functions

bool_t mpris_root_identity (MprisRoot *obj, char **identity, GError **error)
bool_t mpris_root_quit (MprisPlayer *obj, GError **error)
bool_t mpris_player_next (MprisPlayer *obj, GError **error)
bool_t mpris_player_prev (MprisPlayer *obj, GError **error)
bool_t mpris_player_pause (MprisPlayer *obj, GError **error)
bool_t mpris_player_stop (MprisPlayer *obj, GError **error)
bool_t mpris_player_play (MprisPlayer *obj, GError **error)
bool_t mpris_player_repeat (MprisPlayer *obj, bool_t rpt, GError **error)
bool_t mpris_player_get_status (MprisPlayer *obj, GValueArray **status, GError **error)
bool_t mpris_player_get_metadata (MprisPlayer *obj, GHashTable **metadata, GError **error)
bool_t mpris_player_get_caps (MprisPlayer *obj, int *capabilities, GError **error)
bool_t mpris_player_volume_set (MprisPlayer *obj, int vol, GError **error)
bool_t mpris_player_volume_get (MprisPlayer *obj, int *vol, GError **error)
bool_t mpris_player_position_set (MprisPlayer *obj, int pos, GError **error)
bool_t mpris_player_position_get (MprisPlayer *obj, int *pos, GError **error)
bool_t mpris_emit_track_change (MprisPlayer *obj)
bool_t mpris_emit_status_change (MprisPlayer *obj, PlaybackStatus status)
bool_t mpris_emit_caps_change (MprisPlayer *obj)
bool_t mpris_emit_tracklist_change (MprisTrackList *obj, int playlist)
bool_t mpris_tracklist_get_metadata (MprisTrackList *obj, int pos, GHashTable **metadata, GError **error)
bool_t mpris_tracklist_get_current_track (MprisTrackList *obj, int *pos, GError **error)
bool_t mpris_tracklist_get_length (MprisTrackList *obj, int *length, GError **error)
bool_t mpris_tracklist_add_track (MprisTrackList *obj, char *uri, bool_t play, GError **error)
bool_t mpris_tracklist_del_track (MprisTrackList *obj, int pos, GError **error)
bool_t mpris_tracklist_loop (MprisTrackList *obj, bool_t loop, GError **error)
bool_t mpris_tracklist_random (MprisTrackList *obj, bool_t random, GError **error)
bool_t audacious_rc_version (RemoteObject *obj, char **version, GError **error)
bool_t audacious_rc_quit (RemoteObject *obj, GError **error)
bool_t audacious_rc_eject (RemoteObject *obj, GError **error)
bool_t audacious_rc_main_win_visible (RemoteObject *obj, bool_t *is_main_win, GError **error)
bool_t audacious_rc_show_main_win (RemoteObject *obj, bool_t show, GError **error)
bool_t audacious_rc_equalizer_visible (RemoteObject *obj, bool_t *is_eq_win, GError **error)
bool_t audacious_rc_show_equalizer (RemoteObject *obj, bool_t show, GError **error)
bool_t audacious_rc_playlist_visible (RemoteObject *obj, bool_t *is_pl_win, GError **error)
bool_t audacious_rc_show_playlist (RemoteObject *obj, bool_t show, GError **error)
bool_t audacious_rc_get_tuple_fields (RemoteObject *obj, char ***fields, GError **error)
bool_t audacious_rc_play (RemoteObject *obj, GError **error)
bool_t audacious_rc_pause (RemoteObject *obj, GError **error)
bool_t audacious_rc_stop (RemoteObject *obj, GError **error)
bool_t audacious_rc_playing (RemoteObject *obj, bool_t *is_playing, GError **error)
bool_t audacious_rc_paused (RemoteObject *obj, bool_t *is_paused, GError **error)
bool_t audacious_rc_stopped (RemoteObject *obj, bool_t *is_stopped, GError **error)
bool_t audacious_rc_status (RemoteObject *obj, char **status, GError **error)
bool_t audacious_rc_info (RemoteObject *obj, int *rate, int *freq, int *nch, GError **error)
bool_t audacious_rc_time (RemoteObject *obj, int *time, GError **error)
bool_t audacious_rc_seek (RemoteObject *obj, unsigned int pos, GError **error)
bool_t audacious_rc_volume (RemoteObject *obj, int *vl, int *vr, GError **error)
bool_t audacious_rc_set_volume (RemoteObject *obj, int vl, int vr, GError **error)
bool_t audacious_rc_balance (RemoteObject *obj, int *balance, GError **error)
bool_t audacious_rc_position (RemoteObject *obj, int *pos, GError **error)
bool_t audacious_rc_advance (RemoteObject *obj, GError **error)
bool_t audacious_rc_reverse (RemoteObject *obj, GError **error)
bool_t audacious_rc_length (RemoteObject *obj, int *length, GError **error)
bool_t audacious_rc_song_title (RemoteObject *obj, unsigned int pos, char **title, GError **error)
bool_t audacious_rc_song_filename (RemoteObject *obj, unsigned int pos, char **filename, GError **error)
bool_t audacious_rc_song_length (RemoteObject *obj, unsigned int pos, int *length, GError **error)
bool_t audacious_rc_song_frames (RemoteObject *obj, unsigned int pos, int *length, GError **error)
bool_t audacious_rc_song_tuple (RemoteObject *obj, unsigned int pos, char *tuple, GValue *value, GError **error)
bool_t audacious_rc_jump (RemoteObject *obj, unsigned int pos, GError **error)
bool_t audacious_rc_add (RemoteObject *obj, char *file, GError **error)
bool_t audacious_rc_add_url (RemoteObject *obj, char *url, GError **error)
bool_t audacious_rc_add_list (RemoteObject *obj, char **filenames, GError **error)
bool_t audacious_rc_open_list (RemoteObject *obj, char **filenames, GError **error)
bool_t audacious_rc_open_list_to_temp (RemoteObject *obj, char **filenames, GError **error)
bool_t audacious_rc_delete (RemoteObject *obj, unsigned int pos, GError **error)
bool_t audacious_rc_clear (RemoteObject *obj, GError **error)
bool_t audacious_rc_auto_advance (RemoteObject *obj, bool_t *is_advance, GError **error)
bool_t audacious_rc_toggle_auto_advance (RemoteObject *obj, GError **error)
bool_t audacious_rc_repeat (RemoteObject *obj, bool_t *is_repeat, GError **error)
bool_t audacious_rc_toggle_repeat (RemoteObject *obj, GError **error)
bool_t audacious_rc_shuffle (RemoteObject *obj, bool_t *is_shuffle, GError **error)
bool_t audacious_rc_toggle_shuffle (RemoteObject *obj, GError **error)
bool_t audacious_rc_show_prefs_box (RemoteObject *obj, bool_t show, GError **error)
bool_t audacious_rc_show_about_box (RemoteObject *obj, bool_t show, GError **error)
bool_t audacious_rc_show_jtf_box (RemoteObject *obj, bool_t show, GError **error)
bool_t audacious_rc_show_filebrowser (RemoteObject *obj, bool_t show, GError **error)
bool_t audacious_rc_play_pause (RemoteObject *obj, GError **error)
bool_t audacious_rc_activate (RemoteObject *obj, GError **error)
bool_t audacious_rc_queue_get_list_pos (RemoteObject *obj, int qpos, int *pos, GError **error)
bool_t audacious_rc_queue_get_queue_pos (RemoteObject *obj, int pos, int *qpos, GError **error)
bool_t audacious_rc_get_info (RemoteObject *obj, int *rate, int *freq, int *nch, GError **error)
bool_t audacious_rc_toggle_aot (RemoteObject *obj, bool_t ontop, GError **error)
bool_t audacious_rc_get_playqueue_length (RemoteObject *obj, int *length, GError **error)
bool_t audacious_rc_playqueue_add (RemoteObject *obj, int pos, GError **error)
bool_t audacious_rc_playqueue_remove (RemoteObject *obj, int pos, GError **error)
bool_t audacious_rc_playqueue_clear (RemoteObject *obj, GError **error)
bool_t audacious_rc_playqueue_is_queued (RemoteObject *obj, int pos, bool_t *is_queued, GError **error)
bool_t audacious_rc_playlist_ins_url_string (RemoteObject *obj, char *url, int pos, GError **error)
bool_t audacious_rc_playlist_enqueue_to_temp (RemoteObject *obj, char *url, GError **error)
bool_t audacious_rc_playlist_add (RemoteObject *obj, gpointer list, GError **error)
bool_t audacious_rc_get_eq (RemoteObject *obj, double *preamp, GArray **bands, GError **error)
bool_t audacious_rc_get_eq_preamp (RemoteObject *obj, double *preamp, GError **error)
bool_t audacious_rc_get_eq_band (RemoteObject *obj, int band, double *value, GError **error)
bool_t audacious_rc_set_eq (RemoteObject *obj, double preamp, GArray *bands, GError **error)
bool_t audacious_rc_set_eq_preamp (RemoteObject *obj, double preamp, GError **error)
bool_t audacious_rc_set_eq_band (RemoteObject *obj, int band, double value, GError **error)
bool_t audacious_rc_equalizer_activate (RemoteObject *obj, bool_t active, GError **error)
bool_t audacious_rc_get_active_playlist_name (RemoteObject *obj, char **title, GError **error)
bool_t audacious_rc_stop_after (RemoteObject *obj, bool_t *is_stopping, GError **error)
bool_t audacious_rc_toggle_stop_after (RemoteObject *obj, GError **error)

Variables

MprisPlayermpris

Define Documentation

#define DBUS_API_SUBJECT_TO_CHANGE

Definition at line 27 of file dbus-service.h.


Typedef Documentation

typedef struct RemoteObject MprisPlayer
typedef struct RemoteObject MprisRoot
typedef struct RemoteObject MprisTrackList

Enumeration Type Documentation

anonymous enum
Enumerator:
MPRIS_CAPS_NONE 
MPRIS_CAPS_CAN_GO_NEXT 
MPRIS_CAPS_CAN_GO_PREV 
MPRIS_CAPS_CAN_PAUSE 
MPRIS_CAPS_CAN_PLAY 
MPRIS_CAPS_CAN_SEEK 
MPRIS_CAPS_CAN_PROVIDE_METADATA 
MPRIS_CAPS_PROVIDES_TIMING 

Definition at line 41 of file dbus-service.h.

anonymous enum
Enumerator:
TRACK_CHANGE_SIG 
STATUS_CHANGE_SIG 
CAPS_CHANGE_SIG 
LAST_SIG 

Definition at line 86 of file dbus-service.h.

anonymous enum
Enumerator:
TRACKLIST_CHANGE_SIG 
LAST_TRACKLIST_SIG 

Definition at line 93 of file dbus-service.h.

Enumerator:
MPRIS_STATUS_INVALID 
MPRIS_STATUS_PLAY 
MPRIS_STATUS_PAUSE 
MPRIS_STATUS_STOP 

Definition at line 53 of file dbus-service.h.


Function Documentation

bool_t audacious_rc_activate ( RemoteObject obj,
GError **  error 
)
bool_t audacious_rc_add ( RemoteObject obj,
char *  file,
GError **  error 
)

Definition at line 761 of file dbus.c.

bool_t audacious_rc_add_list ( RemoteObject obj,
char **  filenames,
GError **  error 
)

Definition at line 781 of file dbus.c.

bool_t audacious_rc_add_url ( RemoteObject obj,
char *  url,
GError **  error 
)

Definition at line 766 of file dbus.c.

bool_t audacious_rc_advance ( RemoteObject obj,
GError **  error 
)

Definition at line 690 of file dbus.c.

bool_t audacious_rc_auto_advance ( RemoteObject obj,
bool_t is_advance,
GError **  error 
)

Definition at line 815 of file dbus.c.

bool_t audacious_rc_balance ( RemoteObject obj,
int balance,
GError **  error 
)

Definition at line 676 of file dbus.c.

bool_t audacious_rc_clear ( RemoteObject obj,
GError **  error 
)

Definition at line 808 of file dbus.c.

bool_t audacious_rc_delete ( RemoteObject obj,
unsigned int  pos,
GError **  error 
)

Definition at line 802 of file dbus.c.

bool_t audacious_rc_eject ( RemoteObject obj,
GError **  error 
)

Definition at line 565 of file dbus.c.

bool_t audacious_rc_equalizer_activate ( RemoteObject obj,
bool_t  active,
GError **  error 
)

Definition at line 1028 of file dbus.c.

bool_t audacious_rc_equalizer_visible ( RemoteObject obj,
bool_t is_eq_win,
GError **  error 
)
bool_t audacious_rc_get_active_playlist_name ( RemoteObject obj,
char **  title,
GError **  error 
)

Definition at line 1034 of file dbus.c.

bool_t audacious_rc_get_eq ( RemoteObject obj,
double *  preamp,
GArray **  bands,
GError **  error 
)

Definition at line 987 of file dbus.c.

bool_t audacious_rc_get_eq_band ( RemoteObject obj,
int  band,
double *  value,
GError **  error 
)

Definition at line 1003 of file dbus.c.

bool_t audacious_rc_get_eq_preamp ( RemoteObject obj,
double *  preamp,
GError **  error 
)

Definition at line 997 of file dbus.c.

bool_t audacious_rc_get_info ( RemoteObject obj,
int rate,
int freq,
int nch,
GError **  error 
)

Definition at line 902 of file dbus.c.

bool_t audacious_rc_get_playqueue_length ( RemoteObject obj,
int length,
GError **  error 
)

Definition at line 939 of file dbus.c.

bool_t audacious_rc_get_tuple_fields ( RemoteObject obj,
char ***  fields,
GError **  error 
)

Definition at line 585 of file dbus.c.

bool_t audacious_rc_info ( RemoteObject obj,
int rate,
int freq,
int nch,
GError **  error 
)

Definition at line 645 of file dbus.c.

bool_t audacious_rc_jump ( RemoteObject obj,
unsigned int  pos,
GError **  error 
)

Definition at line 755 of file dbus.c.

bool_t audacious_rc_length ( RemoteObject obj,
int length,
GError **  error 
)

Definition at line 702 of file dbus.c.

bool_t audacious_rc_main_win_visible ( RemoteObject obj,
bool_t is_main_win,
GError **  error 
)

Definition at line 571 of file dbus.c.

bool_t audacious_rc_open_list ( RemoteObject obj,
char **  filenames,
GError **  error 
)

Definition at line 788 of file dbus.c.

bool_t audacious_rc_open_list_to_temp ( RemoteObject obj,
char **  filenames,
GError **  error 
)

Definition at line 795 of file dbus.c.

bool_t audacious_rc_pause ( RemoteObject obj,
GError **  error 
)

Definition at line 605 of file dbus.c.

bool_t audacious_rc_paused ( RemoteObject obj,
bool_t is_paused,
GError **  error 
)

Definition at line 623 of file dbus.c.

bool_t audacious_rc_play ( RemoteObject obj,
GError **  error 
)

Definition at line 599 of file dbus.c.

bool_t audacious_rc_play_pause ( RemoteObject obj,
GError **  error 
)

Definition at line 892 of file dbus.c.

bool_t audacious_rc_playing ( RemoteObject obj,
bool_t is_playing,
GError **  error 
)

Definition at line 617 of file dbus.c.

bool_t audacious_rc_playlist_add ( RemoteObject obj,
gpointer  list,
GError **  error 
)
bool_t audacious_rc_playlist_enqueue_to_temp ( RemoteObject obj,
char *  url,
GError **  error 
)

Definition at line 979 of file dbus.c.

bool_t audacious_rc_playlist_ins_url_string ( RemoteObject obj,
char *  url,
int  pos,
GError **  error 
)

Definition at line 967 of file dbus.c.

Referenced by audacious_rc_add(), audacious_rc_add_url(), and audacious_rc_playlist_add().

bool_t audacious_rc_playlist_visible ( RemoteObject obj,
bool_t is_pl_win,
GError **  error 
)
bool_t audacious_rc_playqueue_add ( RemoteObject obj,
int  pos,
GError **  error 
)

Definition at line 915 of file dbus.c.

bool_t audacious_rc_playqueue_clear ( RemoteObject obj,
GError **  error 
)

Definition at line 932 of file dbus.c.

bool_t audacious_rc_playqueue_is_queued ( RemoteObject obj,
int  pos,
bool_t is_queued,
GError **  error 
)

Definition at line 960 of file dbus.c.

bool_t audacious_rc_playqueue_remove ( RemoteObject obj,
int  pos,
GError **  error 
)

Definition at line 921 of file dbus.c.

bool_t audacious_rc_position ( RemoteObject obj,
int pos,
GError **  error 
)

Definition at line 684 of file dbus.c.

bool_t audacious_rc_queue_get_list_pos ( RemoteObject obj,
int  qpos,
int pos,
GError **  error 
)

Definition at line 946 of file dbus.c.

bool_t audacious_rc_queue_get_queue_pos ( RemoteObject obj,
int  pos,
int qpos,
GError **  error 
)

Definition at line 953 of file dbus.c.

bool_t audacious_rc_quit ( RemoteObject obj,
GError **  error 
)

Definition at line 559 of file dbus.c.

bool_t audacious_rc_repeat ( RemoteObject obj,
bool_t is_repeat,
GError **  error 
)

Definition at line 827 of file dbus.c.

bool_t audacious_rc_reverse ( RemoteObject obj,
GError **  error 
)

Definition at line 696 of file dbus.c.

bool_t audacious_rc_seek ( RemoteObject obj,
unsigned int  pos,
GError **  error 
)

Definition at line 658 of file dbus.c.

bool_t audacious_rc_set_eq ( RemoteObject obj,
double  preamp,
GArray *  bands,
GError **  error 
)

Definition at line 1009 of file dbus.c.

bool_t audacious_rc_set_eq_band ( RemoteObject obj,
int  band,
double  value,
GError **  error 
)

Definition at line 1022 of file dbus.c.

bool_t audacious_rc_set_eq_preamp ( RemoteObject obj,
double  preamp,
GError **  error 
)

Definition at line 1016 of file dbus.c.

bool_t audacious_rc_set_volume ( RemoteObject obj,
int  vl,
int  vr,
GError **  error 
)

Definition at line 670 of file dbus.c.

bool_t audacious_rc_show_about_box ( RemoteObject obj,
bool_t  show,
GError **  error 
)

Definition at line 870 of file dbus.c.

bool_t audacious_rc_show_equalizer ( RemoteObject obj,
bool_t  show,
GError **  error 
)
bool_t audacious_rc_show_filebrowser ( RemoteObject obj,
bool_t  show,
GError **  error 
)

Definition at line 884 of file dbus.c.

bool_t audacious_rc_show_jtf_box ( RemoteObject obj,
bool_t  show,
GError **  error 
)

Definition at line 876 of file dbus.c.

bool_t audacious_rc_show_main_win ( RemoteObject obj,
bool_t  show,
GError **  error 
)

Definition at line 578 of file dbus.c.

bool_t audacious_rc_show_playlist ( RemoteObject obj,
bool_t  show,
GError **  error 
)
bool_t audacious_rc_show_prefs_box ( RemoteObject obj,
bool_t  show,
GError **  error 
)

Definition at line 864 of file dbus.c.

bool_t audacious_rc_shuffle ( RemoteObject obj,
bool_t is_shuffle,
GError **  error 
)

Definition at line 839 of file dbus.c.

bool_t audacious_rc_song_filename ( RemoteObject obj,
unsigned int  pos,
char **  filename,
GError **  error 
)

Definition at line 717 of file dbus.c.

bool_t audacious_rc_song_frames ( RemoteObject obj,
unsigned int  pos,
int length,
GError **  error 
)

Definition at line 733 of file dbus.c.

Referenced by audacious_rc_song_length().

bool_t audacious_rc_song_length ( RemoteObject obj,
unsigned int  pos,
int length,
GError **  error 
)

Definition at line 726 of file dbus.c.

bool_t audacious_rc_song_title ( RemoteObject obj,
unsigned int  pos,
char **  title,
GError **  error 
)

Definition at line 708 of file dbus.c.

bool_t audacious_rc_song_tuple ( RemoteObject obj,
unsigned int  pos,
char *  tuple,
GValue *  value,
GError **  error 
)

Definition at line 740 of file dbus.c.

bool_t audacious_rc_status ( RemoteObject obj,
char **  status,
GError **  error 
)

Definition at line 635 of file dbus.c.

bool_t audacious_rc_stop ( RemoteObject obj,
GError **  error 
)

Definition at line 611 of file dbus.c.

bool_t audacious_rc_stop_after ( RemoteObject obj,
bool_t is_stopping,
GError **  error 
)

Definition at line 851 of file dbus.c.

bool_t audacious_rc_stopped ( RemoteObject obj,
bool_t is_stopped,
GError **  error 
)

Definition at line 629 of file dbus.c.

bool_t audacious_rc_time ( RemoteObject obj,
int time,
GError **  error 
)

Definition at line 652 of file dbus.c.

bool_t audacious_rc_toggle_aot ( RemoteObject obj,
bool_t  ontop,
GError **  error 
)

Definition at line 909 of file dbus.c.

bool_t audacious_rc_toggle_auto_advance ( RemoteObject obj,
GError **  error 
)

Definition at line 821 of file dbus.c.

bool_t audacious_rc_toggle_repeat ( RemoteObject obj,
GError **  error 
)

Definition at line 833 of file dbus.c.

bool_t audacious_rc_toggle_shuffle ( RemoteObject obj,
GError **  error 
)

Definition at line 845 of file dbus.c.

bool_t audacious_rc_toggle_stop_after ( RemoteObject obj,
GError **  error 
)

Definition at line 857 of file dbus.c.

bool_t audacious_rc_version ( RemoteObject obj,
char **  version,
GError **  error 
)

Definition at line 553 of file dbus.c.

bool_t audacious_rc_volume ( RemoteObject obj,
int vl,
int vr,
GError **  error 
)

Definition at line 664 of file dbus.c.

bool_t mpris_emit_caps_change ( MprisPlayer obj  ) 

Definition at line 441 of file dbus.c.

bool_t mpris_emit_status_change ( MprisPlayer obj,
PlaybackStatus  status 
)

Definition at line 471 of file dbus.c.

bool_t mpris_emit_track_change ( MprisPlayer obj  ) 

Definition at line 447 of file dbus.c.

bool_t mpris_emit_tracklist_change ( MprisTrackList obj,
int  playlist 
)

Definition at line 489 of file dbus.c.

Referenced by mpris_playlist_update_hook().

bool_t mpris_player_get_caps ( MprisPlayer obj,
int capabilities,
GError **  error 
)

Definition at line 410 of file dbus.c.

bool_t mpris_player_get_metadata ( MprisPlayer obj,
GHashTable **  metadata,
GError **  error 
)

Definition at line 397 of file dbus.c.

bool_t mpris_player_get_status ( MprisPlayer obj,
GValueArray **  status,
GError **  error 
)

Definition at line 386 of file dbus.c.

bool_t mpris_player_next ( MprisPlayer obj,
GError **  error 
)

Definition at line 333 of file dbus.c.

bool_t mpris_player_pause ( MprisPlayer obj,
GError **  error 
)

Definition at line 345 of file dbus.c.

bool_t mpris_player_play ( MprisPlayer obj,
GError **  error 
)

Definition at line 357 of file dbus.c.

bool_t mpris_player_position_get ( MprisPlayer obj,
int pos,
GError **  error 
)

Definition at line 434 of file dbus.c.

bool_t mpris_player_position_set ( MprisPlayer obj,
int  pos,
GError **  error 
)

Definition at line 428 of file dbus.c.

bool_t mpris_player_prev ( MprisPlayer obj,
GError **  error 
)

Definition at line 339 of file dbus.c.

bool_t mpris_player_repeat ( MprisPlayer obj,
bool_t  rpt,
GError **  error 
)

Definition at line 363 of file dbus.c.

bool_t mpris_player_stop ( MprisPlayer obj,
GError **  error 
)

Definition at line 351 of file dbus.c.

bool_t mpris_player_volume_get ( MprisPlayer obj,
int vol,
GError **  error 
)

Definition at line 422 of file dbus.c.

bool_t mpris_player_volume_set ( MprisPlayer obj,
int  vol,
GError **  error 
)

Definition at line 416 of file dbus.c.

bool_t mpris_root_identity ( MprisRoot obj,
char **  identity,
GError **  error 
)

Definition at line 319 of file dbus.c.

bool_t mpris_root_quit ( MprisPlayer obj,
GError **  error 
)

Definition at line 325 of file dbus.c.

bool_t mpris_tracklist_add_track ( MprisTrackList obj,
char *  uri,
bool_t  play,
GError **  error 
)

Definition at line 525 of file dbus.c.

bool_t mpris_tracklist_del_track ( MprisTrackList obj,
int  pos,
GError **  error 
)

Definition at line 532 of file dbus.c.

bool_t mpris_tracklist_get_current_track ( MprisTrackList obj,
int pos,
GError **  error 
)

Definition at line 512 of file dbus.c.

bool_t mpris_tracklist_get_length ( MprisTrackList obj,
int length,
GError **  error 
)

Definition at line 519 of file dbus.c.

bool_t mpris_tracklist_get_metadata ( MprisTrackList obj,
int  pos,
GHashTable **  metadata,
GError **  error 
)

Definition at line 502 of file dbus.c.

bool_t mpris_tracklist_loop ( MprisTrackList obj,
bool_t  loop,
GError **  error 
)

Definition at line 538 of file dbus.c.

bool_t mpris_tracklist_random ( MprisTrackList obj,
bool_t  random,
GError **  error 
)

Definition at line 545 of file dbus.c.


Variable Documentation

Definition at line 49 of file dbus.c.


Generated on 21 Aug 2012 for Audacious by  doxygen 1.6.1