summaryrefslogtreecommitdiff
path: root/browser-plugin/totem-plugin-viewer-options.h
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2006-11-15 17:21:16 +0000
committerChristian Persch <chpe@src.gnome.org>2006-11-15 17:21:16 +0000
commit08504d7f6857b23ea596e08b8afc8944fbf31850 (patch)
tree6180a5d8f5b21458e75fbab4b91eeffd8a1748e6 /browser-plugin/totem-plugin-viewer-options.h
parent9a634aa3ae8af039131a0e816ae25419e49a23fe (diff)
downloadtotem-08504d7f6857b23ea596e08b8afc8944fbf31850.tar.gz
A browser-plugin/org_gnome_totem_PluginViewer.xml: A
2006-11-15 Christian Persch <chpe@cvs.gnome.org> * Makefile.am: * browser-plugin/Makefile.am: * browser-plugin/README: * browser-plugin/TODO: A browser-plugin/org_gnome_totem_PluginViewer.xml: A browser-plugin/totem-plugin-viewer-commands.h: A browser-plugin/totem-plugin-viewer-options.h: A browser-plugin/totem-plugin-viewer.c: * browser-plugin/totemBasicPlugin.cpp: * browser-plugin/totemBasicPlugin.h: * browser-plugin/totemComplexPlugin.cpp: * browser-plugin/totemComplexPlugin.h: * browser-plugin/totemGMPPlugin.cpp: * browser-plugin/totemGMPPlugin.h: * browser-plugin/totemMullYPlugin.cpp: * browser-plugin/totemMullYPlugin.h: * browser-plugin/totemNarrowSpacePlugin.cpp: * browser-plugin/totemNarrowSpacePlugin.h: * browser-plugin/totemPlugin.cpp: * browser-plugin/totemPlugin.h: * browser-plugin/totemPluginGlue.cpp: * configure.in: * data/mozilla-viewer.glade: * po/POTFILES.in: * src/Makefile.am: * src/backend/bvw-test.c: (on_redirect), (main): * src/plparse/totem-pl-parser.c: (totem_pl_parser_can_parse_from_data): R src/totem-mozilla-interface.xml: R src/totem-mozilla-options.h: R src/totem-mozilla-viewer.c: Make plugin / viewer interaction completely async. Bug #350297. Move plugin viewer from src/ to browser-plugin/.
Diffstat (limited to 'browser-plugin/totem-plugin-viewer-options.h')
-rw-r--r--browser-plugin/totem-plugin-viewer-options.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/browser-plugin/totem-plugin-viewer-options.h b/browser-plugin/totem-plugin-viewer-options.h
new file mode 100644
index 000000000..0bd595513
--- /dev/null
+++ b/browser-plugin/totem-plugin-viewer-options.h
@@ -0,0 +1,39 @@
+/* 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., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, 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_STATUSBAR "statusbar"
+
+#endif /* !__TOTEM_PLUGIN_VIEWER_OPTIONS_H__ */