summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-05-03 22:20:44 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-05-03 22:20:44 +0000
commit19ce7395a22963e24cf0a703f415b6520ba8feae (patch)
tree126f64686a964bd3f7d645df191b3186af60f511 /include
parent9142df5dc4bd090d324c2b62059f52f4e83b737f (diff)
downloadxine-lib-19ce7395a22963e24cf0a703f415b6520ba8feae.tar.gz
xine-lib-19ce7395a22963e24cf0a703f415b6520ba8feae.tar.bz2
Implement some window/cursor settings functions to public API.
CVS patchset: 59 CVS date: 2001/05/03 22:20:44
Diffstat (limited to 'include')
-rw-r--r--include/xine.h.tmpl.in62
1 files changed, 61 insertions, 1 deletions
diff --git a/include/xine.h.tmpl.in b/include/xine.h.tmpl.in
index 2096ce8f7..c2998ccc2 100644
--- a/include/xine.h.tmpl.in
+++ b/include/xine.h.tmpl.in
@@ -29,7 +29,7 @@
\endverbatim
*/
/*
- * $Id: xine.h.tmpl.in,v 1.12 2001/05/03 18:22:37 f1rmb Exp $
+ * $Id: xine.h.tmpl.in,v 1.13 2001/05/03 22:20:44 f1rmb Exp $
*
*/
@@ -339,6 +339,66 @@ void xine_get_window_property_min_max(xine_t *this, int property, int *min, int
*/
void xine_window_handle_event(xine_t *this, void *event);
+/**
+ * \fn void xine_set_window_fullscreen(xine_t *this, int fullscreen);
+ * \brief
+ * \param
+ * \return
+ *
+ *
+ */
+void xine_set_window_fullscreen(xine_t *this, int fullscreen);
+
+/**
+ * \fn int xine_get_window_fullscreen(xine_t *this);
+ * \brief
+ * \param
+ * \return
+ *
+ *
+ */
+int xine_get_window_fullscreen(xine_t *this);
+
+/**
+ * \fn void xine_set_window_visible(xine_t *this, int visible);
+ * \brief
+ * \param
+ * \return
+ *
+ *
+ */
+void xine_set_window_visible(xine_t *this, int visible);
+
+/**
+ * \fn int xine_get_window_visible(xine_t *this);
+ * \brief
+ * \param
+ * \return
+ *
+ *
+ */
+int xine_get_window_visible(xine_t *this);
+
+/**
+ * \fn void xine_set_display_cursor(xine_t *this, int show);
+ * \brief
+ * \param
+ * \return
+ *
+ *
+ */
+void xine_set_display_cursor(xine_t *this, int show);
+
+/**
+ * \fn int xine_get_display_cursor(xine_t *this);
+ * \brief
+ * \param
+ * \return
+ *
+ *
+ */
+int xine_get_display_cursor(xine_t *this);
+
/** @} end of xine_management_api */
/**