events.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /**
  2.  * @file events.c
  3.  * @brief X C Bindings VLC video output events handling
  4.  */
  5. /*****************************************************************************
  6.  * Copyright © 2009 Rémi Denis-Courmont
  7.  *
  8.  * This library is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU General Public License
  10.  * as published by the Free Software Foundation; either version 2.0
  11.  * of the License, or (at your option) any later version.
  12.  *
  13.  * This library is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU Lesser General Public
  19.  * License along with this library; if not, write to the Free Software
  20.  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  21.  ****************************************************************************/
  22. #ifdef HAVE_CONFIG_H
  23. # include <config.h>
  24. #endif
  25. #include <inttypes.h>
  26. #include <assert.h>
  27. #include <xcb/xcb.h>
  28. #include <vlc_common.h>
  29. #include <vlc_vout.h>
  30. #include "xcb_vlc.h"
  31. /* NOTE: we assume no other thread will be _setting_ our video output events
  32.  * variables. Afterall, only this plugin is supposed to know when these occur.
  33.   * Otherwise, we'd var_OrInteger() and var_NandInteger() functions...
  34.  */
  35. static void HandleButtonPress (vout_thread_t *vout,
  36.                                xcb_button_press_event_t *ev)
  37. {
  38.     unsigned buttons = var_GetInteger (vout, "mouse-button-down");
  39.     buttons |= (1 << (ev->detail - 1));
  40.     var_SetInteger (vout, "mouse-button-down", buttons);
  41. }
  42. static void HandleButtonRelease (vout_thread_t *vout,
  43.                                  xcb_button_release_event_t *ev)
  44. {
  45.     unsigned buttons = var_GetInteger (vout, "mouse-button-down");
  46.     buttons &= ~(1 << (ev->detail - 1));
  47.     var_SetInteger (vout, "mouse-button-down", buttons);
  48.     switch (ev->detail)
  49.     {
  50.         case 1: /* left mouse button */
  51.             var_SetBool (vout, "mouse-clicked", true);
  52.             var_SetBool (vout->p_libvlc, "intf-popupmenu", false);
  53.             break;
  54.         case 3:
  55.             var_SetBool (vout->p_libvlc, "intf-popupmenu", true);
  56.             break;
  57.     }
  58. }
  59. static void HandleMotionNotify (vout_thread_t *vout,
  60.                                 xcb_motion_notify_event_t *ev)
  61. {
  62.     unsigned x, y, width, height;
  63.     int v;
  64.     vout_PlacePicture (vout, vout->output.i_width, vout->output.i_height,
  65.                        &x, &y, &width, &height);
  66.     v = vout->fmt_in.i_x_offset
  67.         + ((ev->event_x - x) * vout->fmt_in.i_visible_width / width);
  68.     if (v < 0)
  69.         v = 0; /* to the left of the picture */
  70.     else if ((unsigned)v > vout->fmt_in.i_width)
  71.         v = vout->fmt_in.i_width; /* to the right of the picture */
  72.     var_SetInteger (vout, "mouse-x", v);
  73.     v = vout->fmt_in.i_y_offset
  74.         + ((ev->event_y - y) * vout->fmt_in.i_visible_height / height);
  75.     if (v < 0)
  76.         v = 0; /* above the picture */
  77.     else if ((unsigned)v > vout->fmt_in.i_height)
  78.         v = vout->fmt_in.i_height; /* below the picture */
  79.     var_SetInteger (vout, "mouse-y", v);
  80. }
  81. /**
  82.  * Process an X11 event.
  83.  */
  84. int ProcessEvent (vout_thread_t *vout, xcb_connection_t *conn,
  85.                   xcb_window_t window, xcb_generic_event_t *ev)
  86. {
  87.     switch (ev->response_type & 0x7f)
  88.     {
  89.         case XCB_BUTTON_PRESS:
  90.             HandleButtonPress (vout, (xcb_button_press_event_t *)ev);
  91.             break;
  92.         case XCB_BUTTON_RELEASE:
  93.             HandleButtonRelease (vout, (xcb_button_release_event_t *)ev);
  94.             break;
  95.         case XCB_MOTION_NOTIFY:
  96.             HandleMotionNotify (vout, (xcb_motion_notify_event_t *)ev);
  97.             break;
  98.         case XCB_CONFIGURE_NOTIFY:
  99.         {
  100.             xcb_configure_notify_event_t *cn =
  101.                 (xcb_configure_notify_event_t *)ev;
  102.             assert (cn->window != window);
  103.             HandleParentStructure (vout, conn, window, cn);
  104.             break;
  105.         }
  106.         default:
  107.             msg_Dbg (vout, "unhandled event %"PRIu8, ev->response_type);
  108.     }
  109.     free (ev);
  110.     return VLC_SUCCESS;
  111. }