]> git.sesse.net Git - vlc/blob - src/video_output/event.h
mux: mp4: const correctness
[vlc] / src / video_output / event.h
1 /*****************************************************************************
2  * event.h: vout event
3  *****************************************************************************
4  * Copyright (C) 2009 Laurent Aimar
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include <vlc_common.h>
25 #include <math.h>
26
27 #include "vout_control.h"
28
29 /* TODO/FIXME
30  *
31  * It should be converted to something like input_thread_t:
32  * one intf-event can be grabbed by a callback, all others
33  * variable only var_Change
34  *
35  * Maybe a intf-mouse can be used too (don't like it).
36  *
37  * (Some case may infinite loop otherwise here)
38  */
39
40 static inline void vout_SendEventClose(vout_thread_t *vout)
41 {
42 #warning FIXME: implement video close event
43     /* FIXME: this code is disabled as it breaks the non-playlist cases */
44     //playlist_Stop(pl_Get(vout));
45     (void) vout;
46 }
47 static inline void vout_SendEventKey(vout_thread_t *vout, int key)
48 {
49     var_SetInteger(vout->p_libvlc, "key-pressed", key);
50 }
51 static inline void vout_SendEventMouseMoved(vout_thread_t *vout, int x, int y)
52 {
53     var_SetCoords(vout, "mouse-moved", x, y);
54 }
55 static inline void vout_SendEventMousePressed(vout_thread_t *vout, int button)
56 {
57     int key = KEY_UNSET;
58     var_OrInteger(vout, "mouse-button-down", 1 << button);
59
60     switch (button)
61     {
62     case MOUSE_BUTTON_LEFT:
63     {
64         /* FIXME? */
65         int x, y;
66         var_GetCoords(vout, "mouse-moved", &x, &y);
67         var_SetCoords(vout, "mouse-clicked", x, y);
68         var_SetBool(vout->p_libvlc, "intf-popupmenu", false);
69         return;
70     }
71     case MOUSE_BUTTON_CENTER:
72         var_ToggleBool(vout->p_libvlc, "intf-toggle-fscontrol");
73         return;
74     case MOUSE_BUTTON_RIGHT:
75         var_SetBool(vout->p_libvlc, "intf-popupmenu", true);
76         return;
77     case MOUSE_BUTTON_WHEEL_UP:    key = KEY_MOUSEWHEELUP;    break;
78     case MOUSE_BUTTON_WHEEL_DOWN:  key = KEY_MOUSEWHEELDOWN;  break;
79     case MOUSE_BUTTON_WHEEL_LEFT:  key = KEY_MOUSEWHEELLEFT;  break;
80     case MOUSE_BUTTON_WHEEL_RIGHT: key = KEY_MOUSEWHEELRIGHT; break;
81     }
82     vout_SendEventKey(vout, key);
83 }
84 static inline void vout_SendEventMouseReleased(vout_thread_t *vout, int button)
85 {
86     var_NAndInteger(vout, "mouse-button-down", 1 << button);
87 }
88 static inline void vout_SendEventMouseDoubleClick(vout_thread_t *vout)
89 {
90     //vout_ControlSetFullscreen(vout, !var_GetBool(vout, "fullscreen"));
91     var_ToggleBool(vout, "fullscreen");
92 }
93 static inline void vout_SendEventMouseVisible(vout_thread_t *vout)
94 {
95     /* TODO */
96     VLC_UNUSED(vout);
97 }
98 static inline void vout_SendEventMouseHidden(vout_thread_t *vout)
99 {
100     /* TODO */
101     VLC_UNUSED(vout);
102 }
103
104 #if 0
105 static inline void vout_SendEventSnapshot(vout_thread_t *vout, const char *filename)
106 {
107     /* signal creation of a new snapshot file */
108     var_SetString(vout->p_libvlc, "snapshot-file", filename);
109 }
110
111 #warning "FIXME clean up postproc event"
112
113 extern void vout_InstallDeprecatedPostProcessing(vout_thread_t *);
114 extern void vout_UninstallDeprecatedPostProcessing(vout_thread_t *);
115
116 static inline void vout_SendEventPostProcessing(vout_thread_t *vout, bool is_available)
117 {
118     if (is_available)
119         vout_InstallDeprecatedPostProcessing(vout);
120     else
121         vout_UninstallDeprecatedPostProcessing(vout);
122 }
123
124 static inline void vout_SendEventFilters(vout_thread_t *vout)
125 {
126     vout_filter_t **filter;
127     int           filter_count;
128
129     vout_ControlGetFilters(vout, &filter, &filter_count);
130
131     char *list = strdup("");
132     for (int i = 0; i < filter_count; i++) {
133         char *psz;
134
135         if (asprintf(&psz, "%s%s%s",
136                      list, i > 0 ? ":" : "", filter[i]->name) < 0) {
137             free(list);
138             list = NULL;
139             break;
140         }
141         free(list);
142         list = psz;
143     }
144
145     if (list) {
146         vlc_value_t val;
147         val.psz_string = list;
148         var_Change(vout, "video-filter", VLC_VAR_SETVALUE, &val, NULL);
149         free(list);
150     }
151
152     for (int i = 0; i < filter_count; i++)
153         vout_filter_Delete(filter[i]);
154     free(filter);
155 }
156 #endif