]> git.sesse.net Git - vlc/blob - modules/control/dbus/dbus_player.h
Reorganize the dbus control module code
[vlc] / modules / control / dbus / dbus_player.h
1 /*****************************************************************************
2  * dbus-player.h : dbus control module (mpris v1.0) - /Player object
3  *****************************************************************************
4  * Copyright © 2006-2008 Rafaël Carré
5  * Copyright © 2007-2010 Mirsal Ennaime
6  * Copyright © 2009-2010 The VideoLAN team
7  * $Id$
8  *
9  * Authors:    Mirsal ENNAIME <mirsal dot ennaime at gmail dot com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #ifndef _VLC_DBUS_PLAYER_H
27 #define _VLC_DBUS_PLAYER_H
28
29 #include <vlc_interface.h>
30 #include "dbus_common.h"
31
32 #define DBUS_MPRIS_PLAYER_INTERFACE    "org.freedesktop.MediaPlayer"
33 #define DBUS_MPRIS_PLAYER_PATH         "/Player"
34
35 /* Handle incoming dbus messages */
36 DBusHandlerResult handle_player ( DBusConnection *p_conn,
37                                   DBusMessage *p_from,
38                                   void *p_this );
39
40 static const DBusObjectPathVTable dbus_mpris_player_vtable = {
41         NULL, handle_player, /* handler function */
42         NULL, NULL, NULL, NULL
43 };
44
45 /* GetCaps() capabilities */
46 enum
47 {
48      CAPS_NONE                  = 0,
49      CAPS_CAN_GO_NEXT           = 1 << 0,
50      CAPS_CAN_GO_PREV           = 1 << 1,
51      CAPS_CAN_PAUSE             = 1 << 2,
52      CAPS_CAN_PLAY              = 1 << 3,
53      CAPS_CAN_SEEK              = 1 << 4,
54      CAPS_CAN_PROVIDE_METADATA  = 1 << 5,
55      CAPS_CAN_HAS_TRACKLIST     = 1 << 6
56 };
57
58 int StatusChangeEmit ( intf_thread_t * );
59 int CapsChangeEmit   ( intf_thread_t * );
60 int TrackChangeEmit  ( intf_thread_t *, input_item_t * );
61
62 #endif //dbus_player.h