blob: 2a3be3816850873bcbf439d20ef78fd32599b4a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/* Totem Plugin Viewer options
*
* Copyright © 2005 Bastien Nocera <hadess@hadess.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*/
#ifndef __TOTEM_PLUGIN_VIEWER_OPTIONS_H__
#define __TOTEM_PLUGIN_VIEWER_OPTIONS_H__
#define TOTEM_PLUGIN_VIEWER_INTERFACE_NAME "org.gnome.totem.PluginViewer"
#define TOTEM_PLUGIN_VIEWER_NAME_TEMPLATE "org.gnome.totem.PluginViewer_%d"
#define TOTEM_PLUGIN_VIEWER_DBUS_PATH "/org/gnome/totem/PluginViewer"
#define TOTEM_OPTION_BASE_URI "base-uri"
#define TOTEM_OPTION_CONTROLS_HIDDEN "no-controls"
#define TOTEM_OPTION_HIDDEN "hidden"
#define TOTEM_OPTION_MIMETYPE "mimetype"
#define TOTEM_OPTION_NOAUTOSTART "no-autostart"
#define TOTEM_OPTION_PLAYLIST "playlist"
#define TOTEM_OPTION_PLUGIN_TYPE "plugin-type"
#define TOTEM_OPTION_REPEAT "repeat"
#define TOTEM_OPTION_USER_AGENT "user-agent"
#define TOTEM_OPTION_AUDIOONLY "audio-only"
#define TOTEM_OPTION_REFERRER "referrer"
#endif /* !__TOTEM_PLUGIN_VIEWER_OPTIONS_H__ */
|