summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-06-02 06:36:30 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-06-02 06:36:30 +0000
commit4b2bf6fdebc77fca044d9aa043dd56726d10e7d1 (patch)
tree21fe7b3fd1e5e2885f9d5686795121e83f9929a1 /include
parent620c5284eda213c0b7d0596ea405de5fd4e22aa0 (diff)
downloadxine-lib-4b2bf6fdebc77fca044d9aa043dd56726d10e7d1.tar.gz
xine-lib-4b2bf6fdebc77fca044d9aa043dd56726d10e7d1.tar.bz2
new event which inform UI when the mouse pointer enter and leave a spu button (DVD navigation)
CVS patchset: 4997 CVS date: 2003/06/02 06:36:30
Diffstat (limited to 'include')
-rw-r--r--include/xine.h.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/xine.h.in b/include/xine.h.in
index 9a0cefcac..2fec4c118 100644
--- a/include/xine.h.in
+++ b/include/xine.h.in
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine.h.in,v 1.87 2003/05/28 04:26:02 miguelfreitas Exp $
+ * $Id: xine.h.in,v 1.88 2003/06/02 06:36:30 f1rmb Exp $
*
* public xine-lib (libxine) interface and documentation
*
@@ -1255,6 +1255,7 @@ void xine_config_reset (xine_t *self);
#define XINE_EVENT_PROGRESS 8 /* index creation/network connections */
#define XINE_EVENT_MRL_REFERENCE 9 /* demuxer->frontend: MRL reference(s) for the real stream */
#define XINE_EVENT_UI_NUM_BUTTONS 10 /* number of buttons for interactive menus */
+#define XINE_EVENT_SPU_BUTTON 11 /* the mouse pointer enter/leave a button */
/* input events coming from frontend */
#define XINE_EVENT_INPUT_MOUSE_BUTTON 101
@@ -1458,6 +1459,10 @@ typedef struct {
} xine_set_mpeg_data_t;
+typedef struct {
+ int direction; /* 0 leave, 1 enter */
+ int32_t button; /* button number */
+} xine_spu_button_t;
#ifdef XINE_ENABLE_EXPERIMENTAL_FEATURES