Change the "intf-show" variable into a toggle.
[vlc.git] / src / video_output / event.h
blobda9212c939598395d500871e34ac4db73a1962f4
1 /*****************************************************************************
2 * event.h: vout event
3 *****************************************************************************
4 * Copyright (C) 2009 Laurent Aimar
5 * $Id$
7 * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
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 General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #include <vlc_common.h>
25 #include <vlc_playlist.h>
26 #include <math.h>
28 #include "vout_control.h"
30 /* TODO/FIXME
32 * It should be converted to something like input_thread_t:
33 * one intf-event can be grabbed by a callback, all others
34 * variable only var_Change
36 * Maybe a intf-mouse can be used too (don't like it).
38 * (Some case may infinite loop otherwise here)
41 static inline void vout_SendEventClose(vout_thread_t *vout)
43 /* Ask to stop
44 * FIXME works only for input handled by the playlist
46 playlist_t *playlist = pl_Get(vout);
47 playlist_Stop(playlist);
49 static inline void vout_SendEventKey(vout_thread_t *vout, int key)
51 var_SetInteger(vout->p_libvlc, "key-pressed", key);
53 static inline void vout_SendEventMouseMoved(vout_thread_t *vout, int x, int y)
55 var_SetCoords(vout, "mouse-moved", x, y);
57 static inline void vout_SendEventMousePressed(vout_thread_t *vout, int button)
59 int key;
60 var_OrInteger(vout, "mouse-button-down", 1 << button);
62 switch (button)
64 case MOUSE_BUTTON_LEFT:
66 /* FIXME? */
67 int x, y;
68 var_GetCoords(vout, "mouse-moved", &x, &y);
69 var_SetCoords(vout, "mouse-clicked", x, y);
70 var_SetBool(vout->p_libvlc, "intf-popupmenu", false);
71 return;
73 case MOUSE_BUTTON_CENTER:
74 var_ToggleBool(vout->p_libvlc, "intf-toggle-fscontrol");
75 return;
76 case MOUSE_BUTTON_RIGHT:
77 var_SetBool(vout->p_libvlc, "intf-popupmenu", true);
78 return;
79 case MOUSE_BUTTON_WHEEL_UP: key = KEY_MOUSEWHEELUP; break;
80 case MOUSE_BUTTON_WHEEL_DOWN: key = KEY_MOUSEWHEELDOWN; break;
81 case MOUSE_BUTTON_WHEEL_LEFT: key = KEY_MOUSEWHEELLEFT; break;
82 case MOUSE_BUTTON_WHEEL_RIGHT: key = KEY_MOUSEWHEELRIGHT; break;
84 vout_SendEventKey(vout, key);
86 static inline void vout_SendEventMouseReleased(vout_thread_t *vout, int button)
88 var_NAndInteger(vout, "mouse-button-down", 1 << button);
90 static inline void vout_SendEventMouseDoubleClick(vout_thread_t *vout)
92 //vout_ControlSetFullscreen(vout, !var_GetBool(vout, "fullscreen"));
93 //var_ToggleBool(vout, "fullscreen");
94 var_SetInteger(vout->p_libvlc, "key-action", ACTIONID_TOGGLE_FULLSCREEN);
96 static inline void vout_SendEventMouseVisible(vout_thread_t *vout)
98 /* TODO */
99 VLC_UNUSED(vout);
101 static inline void vout_SendEventMouseHidden(vout_thread_t *vout)
103 /* TODO */
104 VLC_UNUSED(vout);
107 static inline void vout_SendEventFullscreen(vout_thread_t *vout, bool is_fullscreen)
109 var_SetBool(vout, "fullscreen", is_fullscreen);
112 static inline void vout_SendEventDisplayFilled(vout_thread_t *vout, bool is_display_filled)
114 if (!var_GetBool(vout, "autoscale") != !is_display_filled)
115 var_SetBool(vout, "autoscale", is_display_filled);
118 static inline void vout_SendEventZoom(vout_thread_t *vout, int num, int den)
120 VLC_UNUSED(vout);
121 VLC_UNUSED(num);
122 VLC_UNUSED(den);
123 /* FIXME deadlock problems with current vout */
124 #if 0
125 const float zoom = (float)num / (float)den;
127 /* XXX 0.1% is arbitrary */
128 if (fabs(zoom - var_GetFloat(vout, "scale")) > 0.001)
129 var_SetFloat(vout, "scale", zoom);
130 #endif
133 static inline void vout_SendEventOnTop(vout_thread_t *vout, bool is_on_top)
135 VLC_UNUSED(vout);
136 VLC_UNUSED(is_on_top);
137 /* FIXME deadlock problems with current vout */
138 #if 0
140 if (!var_GetBool(vout, "video-on-top") != !is_on_top)
141 var_SetBool(vout, "video-on-top", is_on_top);
142 #endif
146 * It must be called on source aspect ratio changes, with the new DAR (Display
147 * Aspect Ratio) value.
149 static inline void vout_SendEventSourceAspect(vout_thread_t *vout,
150 unsigned num, unsigned den)
152 VLC_UNUSED(vout);
153 VLC_UNUSED(num);
154 VLC_UNUSED(den);
155 /* FIXME the value stored in "aspect-ratio" are not reduced
156 * creating a lot of problems here */
157 #if 0
158 char *ar;
159 if (num > 0 && den > 0) {
160 if (asprintf(&ar, "%u:%u", num, den) < 0)
161 return;
162 } else {
163 ar = strdup("");
166 char *current = var_GetString(vout, "aspect-ratio");
167 msg_Err(vout, "vout_SendEventSourceAspect %s -> %s", current, ar);
168 if (ar && current && strcmp(ar, current))
169 var_SetString(vout, "aspect-ratio", ar);
171 free(current);
172 free(ar);
173 #endif
175 static inline void vout_SendEventSourceCrop(vout_thread_t *vout,
176 unsigned num, unsigned den,
177 unsigned left, unsigned top,
178 unsigned right, unsigned bottom)
180 VLC_UNUSED(num);
181 VLC_UNUSED(den);
183 vlc_value_t val;
185 /* I cannot use var_Set here, infinite loop otherwise */
187 /* */
188 val.i_int = left;
189 var_Change(vout, "crop-left", VLC_VAR_SETVALUE, &val, NULL);
190 val.i_int = top;
191 var_Change(vout, "crop-top", VLC_VAR_SETVALUE, &val, NULL);
192 val.i_int = right;
193 var_Change(vout, "crop-right", VLC_VAR_SETVALUE, &val, NULL);
194 val.i_int = bottom;
195 var_Change(vout, "crop-bottom", VLC_VAR_SETVALUE, &val, NULL);
197 /* FIXME the value stored in "crop" are not reduced
198 * creating a lot of problems here */
199 #if 0
200 char *crop;
201 if (num > 0 && den > 0) {
202 if (asprintf(&crop, "%u:%u", num, den) < 0)
203 crop = NULL;
204 } else if (left > 0 || top > 0 || right > 0 || bottom > 0) {
205 if (asprintf(&crop, "%u+%u+%u+%u", left, top, right, bottom) < 0)
206 crop = NULL;
207 } else {
208 crop = strdup("");
210 if (crop) {
211 val.psz_string = crop;
212 var_Change(vout, "crop", VLC_VAR_SETVALUE, &val, NULL);
213 free(crop);
215 #endif
217 #if 0
218 static inline void vout_SendEventSnapshot(vout_thread_t *vout, const char *filename)
220 /* signal creation of a new snapshot file */
221 var_SetString(vout->p_libvlc, "snapshot-file", filename);
224 #warning "FIXME clean up postproc event"
226 extern void vout_InstallDeprecatedPostProcessing(vout_thread_t *);
227 extern void vout_UninstallDeprecatedPostProcessing(vout_thread_t *);
229 static inline void vout_SendEventPostProcessing(vout_thread_t *vout, bool is_available)
231 if (is_available)
232 vout_InstallDeprecatedPostProcessing(vout);
233 else
234 vout_UninstallDeprecatedPostProcessing(vout);
237 static inline void vout_SendEventFilters(vout_thread_t *vout)
239 vout_filter_t **filter;
240 int filter_count;
242 vout_ControlGetFilters(vout, &filter, &filter_count);
244 char *list = strdup("");
245 for (int i = 0; i < filter_count; i++) {
246 char *psz;
248 if (asprintf(&psz, "%s%s%s",
249 list, i > 0 ? ":" : "", filter[i]->name) < 0) {
250 free(list);
251 list = NULL;
252 break;
254 free(list);
255 list = psz;
258 if (list) {
259 vlc_value_t val;
260 val.psz_string = list;
261 var_Change(vout, "video-filter", VLC_VAR_SETVALUE, &val, NULL);
262 free(list);
265 for (int i = 0; i < filter_count; i++)
266 vout_filter_Delete(filter[i]);
267 free(filter);
269 #endif