]> git.sesse.net Git - vlc/blob - modules/gui/macosx/extended.m
* get the correct vout, when using the opengl-output-module - on-the-fly changing...
[vlc] / modules / gui / macosx / extended.m
1 /*****************************************************************************
2  * extended.m: MacOS X Extended interface panel
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Felix Kühne <fkuehne@users.sf.net>
8  *
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.
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 General Public License for more details.
18  *
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24
25 /*****************************************************************************
26  * Note: 
27  * the code used to bind with VLC's modules is heavily based upon 
28  * ../wxwidgets/extrapanel.cpp, written by Clément Stenac.
29  * the code used to insert/remove the views was inspired by intf.m, 
30  * written by Derk-Jan Hartman and Benjamin Pracht. 
31  * (all 3 are members of the VideoLAN team) 
32  *****************************************************************************/
33
34
35 /*****************************************************************************
36  * Preamble
37  *****************************************************************************/
38
39 #import "extended.h"
40 #import "intf.h"
41 #import "vout.h"
42 #import <vlc/aout.h>
43 #import <aout_internal.h>
44 #import <vlc/vout.h>
45 #import <vlc/intf.h>
46
47 /*****************************************************************************
48  * VLCExtended implementation
49  *****************************************************************************/
50
51 @implementation VLCExtended
52
53 static VLCExtended *_o_sharedInstance = nil;
54
55 + (VLCExtended *)sharedInstance
56 {
57     return _o_sharedInstance ? _o_sharedInstance : [[self alloc] init];
58 }
59
60 - (id)init
61 {
62     if (_o_sharedInstance) {
63         [self dealloc];
64     } else {
65         _o_sharedInstance = [super init];
66     }
67
68     return _o_sharedInstance;
69 }
70
71 /*****************************************************************************
72  * GUI methods
73  *****************************************************************************/
74
75 - (void)initStrings
76 {
77     /* localise GUI-strings */
78     /* method is called from intf.m (in method showExtended) */
79     [o_extended_window setTitle: _NS("Extended controls")];
80     [o_lbl_video setStringValue: _NS("Video")];
81     [o_lbl_audio setStringValue: _NS("Audio")];
82     [o_lbl_audioFlts setStringValue: _NS("Audio filters")];
83     [o_lbl_videoFlts setStringValue: _NS("Video filters")];
84     [o_lbl_adjustImage setStringValue: _NS("Adjust Image")];
85     [o_btn_vidFlts_mrInfo setTitle: _NS("More Info")];
86     [o_ckb_blur setTitle: _NS("Blurring")];
87     [o_ckb_blur setToolTip: _NS("Creates a motion blurring on the image")];
88     [o_ckb_distortion setTitle: _NS("Distortion")];
89     [o_ckb_distortion setToolTip: _NS("Adds distorsion effects")];
90     [o_ckb_imgClone setTitle: _NS("Image clone")];
91     [o_ckb_imgClone setToolTip: _NS("Creates several clones of the image")];
92     [o_ckb_imgCrop setTitle: _NS("Image cropping")];
93     [o_ckb_imgCrop setToolTip: _NS("Crops the image")];
94     [o_ckb_imgInvers setTitle: _NS("Image inversion")];
95     [o_ckb_imgInvers setToolTip: _NS("Inverts the image colors")];
96     [o_ckb_trnsform setTitle: _NS("Transformation")];
97     [o_ckb_trnsform setToolTip: _NS("Rotates or flips the image")];
98     [o_ckb_vlme_norm setTitle: _NS("Volume normalization")];
99     [o_ckb_vlme_norm setToolTip: _NS("This filters prevents the audio output " \
100         "power from going over a defined value.")];
101     [o_ckb_hdphnVirt setTitle: _NS("Headphone virtualization")];
102     [o_ckb_hdphnVirt setToolTip: _NS("This filter gives the feeling of a " \
103         "5.1 speaker set when using a headphone.")];
104     [o_lbl_maxLevel setStringValue: _NS("Maximum level")];
105     [o_btn_rstrDefaults setTitle: _NS("Restore Defaults")];
106     [o_ckb_enblAdjustImg setTitle: _NS("Enable")];
107     [o_lbl_brightness setStringValue: _NS("Brightness")];
108     [o_lbl_contrast setStringValue: _NS("Contrast")];
109     [o_lbl_gamma setStringValue: _NS("Gamma")];
110     [o_lbl_hue setStringValue: _NS("Hue")];
111     [o_lbl_saturation setStringValue: _NS("Saturation")];
112     [o_lbl_opaque setStringValue: _NS("Opaqueness")];
113     
114 }
115
116 - (void)awakeFromNib
117 {
118     /* set the adjust-filter-sliders to the values from the prefs and enable
119      * them, if wanted */
120     char * psz_vfilters;
121     intf_thread_t * p_intf = VLCIntf;
122     psz_vfilters = config_GetPsz( p_intf, "vout-filter" );
123     if( psz_vfilters && strstr( psz_vfilters, "adjust" ) )
124     {
125         [o_ckb_enblAdjustImg setState: NSOnState];
126         [o_btn_rstrDefaults setEnabled: YES];
127         [o_sld_brightness setEnabled: YES];
128         [o_sld_contrast setEnabled: YES];
129         [o_sld_gamma setEnabled: YES];
130         [o_sld_hue setEnabled: YES];
131         [o_sld_saturation setEnabled: YES];
132     }
133     else
134     {
135         [o_ckb_enblAdjustImg setState: NSOffState];
136         [o_btn_rstrDefaults setEnabled: NO];
137         [o_sld_brightness setEnabled: NO];
138         [o_sld_contrast setEnabled: NO];
139         [o_sld_gamma setEnabled: NO];
140         [o_sld_hue setEnabled: NO];
141         [o_sld_saturation setEnabled: NO];
142     }
143     
144     /* set the other video-filter-checkboxes to the correct values */
145     if( psz_vfilters )
146     {
147         [o_ckb_blur setState: (int)strstr( psz_vfilters, "motionblur")];
148         [o_ckb_distortion setState: (int)strstr( psz_vfilters, "distort")];
149         [o_ckb_imgClone setState: (int)strstr( psz_vfilters, "clone")];
150         [o_ckb_imgCrop setState: (int)strstr( psz_vfilters, "crop")];
151         [o_ckb_imgInvers setState: (int)strstr( psz_vfilters, "invert")];
152         [o_ckb_trnsform setState: (int)strstr( psz_vfilters, "transform")];
153         
154         free( psz_vfilters );
155     }
156     
157     /* set the audio-filter-checkboxes to the values taken from the prefs */
158     char * psz_afilters;
159     psz_afilters = config_GetPsz( p_intf, "audio-filter" );
160     if( psz_afilters )
161     {
162         [o_ckb_hdphnVirt setState: (int)strstr( psz_afilters, "headphone" ) ];
163         [o_ckb_vlme_norm setState: (int)strstr( psz_afilters, "normvol" ) ];
164         
165         free( psz_afilters );
166     }
167 }
168
169 - (void)showPanel
170 {
171     /* get the correct slider values from the prefs, in case they were changed
172      * elsewhere */
173     intf_thread_t * p_intf = VLCIntf;
174
175     int i_value = config_GetInt( p_intf, "hue" );
176     if( i_value > 0 && i_value < 360 )
177     {
178         [o_sld_hue setIntValue: i_value];
179     }
180
181     float f_value;
182     
183     f_value = config_GetFloat( p_intf, "saturation" );
184     if( f_value > 0 && f_value < 5 )
185     {
186         [o_sld_saturation setIntValue: (int)(100 * f_value) ];
187     }
188
189     f_value = config_GetFloat( p_intf, "contrast" );
190     if( f_value > 0 && f_value < 4 )
191     {
192         [o_sld_contrast setIntValue: (int)(100 * f_value) ];
193     }
194
195     f_value = config_GetFloat( p_intf, "brightness" );
196     if( f_value > 0 && f_value < 2 )
197     {
198         [o_sld_brightness setIntValue: (int)(100 * f_value) ];
199     }
200
201     f_value = config_GetFloat( p_intf, "gamma" );
202     if( f_value > 0 && f_value < 10 )
203     {
204         [o_sld_gamma setIntValue: (int)(10 * f_value) ];
205     }
206
207     [o_sld_maxLevel setFloatValue: (config_GetFloat(p_intf, "norm-max-level") \
208         * 10)];
209
210     [o_sld_opaque setFloatValue: (config_GetFloat( p_intf, \
211         "macosx-opaqueness") * 100)];
212
213
214     /* show the window */
215     [o_extended_window displayIfNeeded];
216     [o_extended_window makeKeyAndOrderFront:nil];
217 }
218
219 - (IBAction)adjImg_Enbl:(id)sender
220 {
221     /* en-/disable the sliders */
222     if ([o_ckb_enblAdjustImg state] == NSOnState)
223     {
224         [o_btn_rstrDefaults setEnabled: YES];
225         [o_sld_brightness setEnabled: YES];
226         [o_sld_contrast setEnabled: YES];
227         [o_sld_gamma setEnabled: YES];
228         [o_sld_hue setEnabled: YES];
229         [o_sld_saturation setEnabled: YES];
230         [self changeVFiltersString: "adjust" onOrOff: VLC_TRUE];
231     }else{
232         [o_btn_rstrDefaults setEnabled: NO];
233         [o_sld_brightness setEnabled: NO];
234         [o_sld_contrast setEnabled: NO];
235         [o_sld_gamma setEnabled: NO];
236         [o_sld_hue setEnabled: NO];
237         [o_sld_saturation setEnabled: NO];
238         [self changeVFiltersString: "adjust" onOrOff: VLC_FALSE];
239     }
240 }
241
242 - (IBAction)adjImg_rstrDefaults:(id)sender
243 {
244     /* reset the sliders */
245     [o_sld_brightness setIntValue: 100];
246     [o_sld_contrast setIntValue: 100];
247     [o_sld_gamma setIntValue: 10];
248     [o_sld_hue setIntValue: 0];
249     [o_sld_saturation setIntValue: 100];
250     
251     /* transmit the values */
252     [self adjImg_sliders: o_sld_brightness];
253     [self adjImg_sliders: o_sld_contrast];
254     [self adjImg_sliders: o_sld_gamma];
255     [self adjImg_sliders: o_sld_hue];
256     [self adjImg_sliders: o_sld_saturation];
257 }
258
259 - (IBAction)adjImg_sliders:(id)sender
260 {
261     /* read-out the sliders' values and apply them */
262     intf_thread_t * p_intf = VLCIntf;
263     vout_thread_t *p_vout = (vout_thread_t *)vlc_object_find(p_intf,
264                                  VLC_OBJECT_VOUT, FIND_ANYWHERE);
265     if( p_vout == NULL )
266     {
267         if (sender == o_sld_brightness)
268         {
269             config_PutFloat( p_intf , "brightness" , [o_sld_brightness floatValue] / 100);
270         } else if (sender == o_sld_contrast)
271         {
272             config_PutFloat( p_intf , "contrast" , [o_sld_contrast floatValue] / 100);
273         } else if (sender == o_sld_gamma)
274         {
275             config_PutFloat( p_intf , "gamma" , [o_sld_gamma floatValue] / 10);
276         } else if (sender == o_sld_hue)
277         {
278             config_PutInt( p_intf , "hue" , [o_sld_hue intValue]);
279         } else if (sender == o_sld_saturation)
280         {
281             config_PutFloat( p_intf , "saturation" , [o_sld_saturation floatValue] / 100);
282         } else {
283             msg_Warn( p_intf, "cannot find adjust-image-subfilter related to " \
284                 "moved slider");
285         }
286     } else {
287         vlc_value_t val;
288         if (sender == o_sld_brightness)
289         {
290             val.f_float = [o_sld_brightness floatValue] / 100;
291             var_Set( p_vout, "brightness", val );
292             config_PutFloat( p_intf , "brightness" , [o_sld_brightness floatValue] / 100);
293         } else if (sender == o_sld_contrast)
294         {
295             val.f_float = [o_sld_contrast floatValue] / 100;
296             var_Set( p_vout, "contrast", val );
297             config_PutFloat( p_intf , "contrast" , [o_sld_contrast floatValue] / 100);
298         } else if (sender == o_sld_gamma)
299         {
300             val.f_float = [o_sld_gamma floatValue] / 10;
301             var_Set( p_vout, "gamma", val );
302             config_PutFloat( p_intf , "gamma" , [o_sld_gamma floatValue] / 10);
303         } else if (sender == o_sld_hue)
304         {
305             val.i_int = [o_sld_hue intValue];
306             var_Set( p_vout, "hue", val );
307             config_PutInt( p_intf , "hue" , [o_sld_hue intValue]);
308         } else if (sender == o_sld_saturation)
309         {
310             val.f_float = [o_sld_saturation floatValue] / 100;
311             var_Set( p_vout, "saturation", val );
312             config_PutFloat( p_intf , "saturation" , [o_sld_saturation floatValue] / 100);
313         } else {
314             msg_Warn( p_intf, "cannot find adjust-image-subfilter related to " \
315                 "moved slider");
316         }
317         vlc_object_release( p_vout );
318     }
319 }
320
321 - (IBAction)adjImg_opaque:(id)sender
322 {
323     /* change the opaqueness of the vouts */
324     playlist_t * p_playlist = vlc_object_find( VLCIntf, VLC_OBJECT_PLAYLIST, \
325         FIND_ANYWHERE );
326     vout_thread_t * p_vout = (vout_thread_t *)vlc_object_find( p_playlist, \
327         VLC_OBJECT_VOUT, FIND_ANYWHERE );
328     vout_thread_t * p_real_vout;
329     
330     vlc_value_t val;
331     val.f_float = [o_sld_opaque floatValue] / 100;
332
333     /* Try to set on the fly */
334     if( p_vout )
335     {
336         if( p_vout->i_object_type == VLC_OBJECT_OPENGL )
337         {
338             p_real_vout = (vout_thread_t *) p_vout->p_parent;
339         }
340         else
341         {
342             p_real_vout = p_vout;
343         }
344         
345         /* FIXME: insert the correct pointer here */
346         /*[p_vout->p_sys->o_window setAlpha: var_CreateGetFloat( p_vout, \
347             "macosx-opaqueness")];*/
348         
349         var_Set( p_vout, "macosx-opaqueness", val );
350         vlc_object_release( p_real_vout );
351         vlc_object_release( p_vout );
352     }
353     
354     /* store to prefs */
355     config_PutFloat( p_playlist , "macosx-opaqueness" , val.f_float );
356     
357     vlc_object_release( p_playlist );
358 }
359
360 - (IBAction)audFtls_hdphnVirt:(id)sender
361 {
362     /* en-/disable headphone virtualisation */
363     if ([o_ckb_hdphnVirt state] == NSOnState)
364     {
365         [self changeAFiltersString: "headphone" onOrOff: VLC_TRUE ];
366     }else{
367         [self changeAFiltersString: "headphone" onOrOff: VLC_FALSE ];
368     }
369 }
370
371 - (IBAction)audFtls_maxLevelSld:(id)sender
372 {
373     /* read-out the slider's value and apply it */
374     intf_thread_t * p_intf = VLCIntf;
375     aout_instance_t * p_aout= (aout_instance_t *)vlc_object_find(p_intf,
376                                  VLC_OBJECT_AOUT, FIND_ANYWHERE);
377     if( p_aout != NULL )
378     {
379         var_SetFloat( p_aout, "norm-max-level", [o_sld_maxLevel floatValue] / 10 );
380         vlc_object_release( p_aout );
381     }
382     else
383     {
384         config_PutFloat( p_intf, "norm-max-level", [o_sld_maxLevel floatValue] /10 );
385     }
386 }
387
388 - (IBAction)audFtls_vlmeNorm:(id)sender
389 {
390     /* en-/disable volume normalisation */
391     if ([o_ckb_vlme_norm state] == NSOnState)
392     {
393         [self changeAFiltersString: "normvol" onOrOff: YES ];
394     }else{
395         [self changeAFiltersString: "normvol" onOrOff: NO ];
396     }
397 }
398
399 - (IBAction)extWin_exp_adjImg:(id)sender
400 {
401     /* expand or collapse adjImg */
402     NSRect o_win_rect = [o_extended_window frame];
403     NSRect o_box_audFlts_rect = [o_box_audFlts frame];
404     NSRect o_box_vidFlts_rect = [o_box_vidFlts frame];
405     NSRect o_box_adjImg_rect = [o_box_adjImg frame];
406     
407     if (o_adjImg_expanded)
408     {
409         /* move the window contents upwards (partially done through settings
410          * inside the nib) and resize the window */
411         o_win_rect.size.height = o_win_rect.size.height - 171;
412         o_win_rect.origin.y = [o_extended_window frame].origin.y + 171;
413         o_box_audFlts_rect.origin.y = o_box_audFlts_rect.origin.y + 171;
414         o_box_vidFlts_rect.origin.y = o_box_vidFlts_rect.origin.y + 171;
415         
416         /* remove the inserted view */
417         [o_adjustImg_view removeFromSuperviewWithoutNeedingDisplay];
418     }else{
419     
420         /* move the window contents downwards and resize the window */
421         o_win_rect.size.height = o_win_rect.size.height + 171;
422         o_win_rect.origin.y = [o_extended_window frame].origin.y - 171;
423         o_box_audFlts_rect.origin.y = o_box_audFlts_rect.origin.y - 171;
424         o_box_vidFlts_rect.origin.y = o_box_vidFlts_rect.origin.y - 171;
425     }
426     
427     [o_box_audFlts setFrameFromContentFrame: o_box_audFlts_rect];
428     [o_box_vidFlts setFrameFromContentFrame: o_box_vidFlts_rect];
429     [o_extended_window displayIfNeeded];
430     [o_extended_window setFrame: o_win_rect display:YES animate: YES];
431     
432     if (o_adjImg_expanded)
433     {
434         o_box_adjImg_rect.size.height = [o_box_adjImg frame].size.height - 171;
435         msg_Dbg( VLCIntf, "collapsed adjust-image section");
436         o_adjImg_expanded = NO;
437     } else {
438         /* insert view */
439         o_box_adjImg_rect.size.height = [o_box_adjImg frame].size.height + 171;
440         [o_adjustImg_view setFrame: NSMakeRect( 20, -10, 370, 181)];
441         [o_adjustImg_view setNeedsDisplay:YES];
442         [o_adjustImg_view setAutoresizesSubviews: YES];
443         [[o_box_adjImg contentView] addSubview: o_adjustImg_view];
444         msg_Dbg( VLCIntf, "expanded adjust-image section");
445         o_adjImg_expanded = YES;
446     }
447     [o_box_adjImg setFrameFromContentFrame: o_box_adjImg_rect];
448 }
449
450 - (IBAction)extWin_exp_audFlts:(id)sender
451 {
452     /* expand or collapse audFlts */
453     NSRect o_win_rect = [o_extended_window frame];
454     NSRect o_box_audFlts_rect = [o_box_audFlts frame];
455     
456     if (o_audFlts_expanded)
457     {
458         /* move the window contents upwards (partially done through settings
459          * inside the nib) and resize the window */
460         o_win_rect.size.height = o_win_rect.size.height - 66;
461         o_win_rect.origin.y = [o_extended_window frame].origin.y + 66;
462         
463         /* remove the inserted view */
464         [o_audioFlts_view removeFromSuperviewWithoutNeedingDisplay];
465     }else{
466         /* move the window contents downwards and resize the window */
467         o_win_rect.size.height = o_win_rect.size.height + 66;
468         o_win_rect.origin.y = [o_extended_window frame].origin.y - 66;
469     }
470     [o_extended_window displayIfNeeded];
471     [o_extended_window setFrame: o_win_rect display:YES animate: YES];
472     
473     
474     if (o_audFlts_expanded)
475     {
476         o_box_audFlts_rect.size.height = [o_box_audFlts frame].size.height - 66;
477         msg_Dbg( VLCIntf, "collapsed audio-filters section");
478         o_audFlts_expanded = NO;
479     } else {
480         /* insert view */
481         o_box_audFlts_rect.size.height = [o_box_audFlts frame].size.height + 66;
482         [o_audioFlts_view setFrame: NSMakeRect( 20, -20, 370, 76)];
483         [o_audioFlts_view setNeedsDisplay:YES];
484         [o_audioFlts_view setAutoresizesSubviews: YES];
485         [[o_box_audFlts contentView] addSubview: o_audioFlts_view];
486         msg_Dbg( VLCIntf, "expanded audio-filters section");
487         o_audFlts_expanded = YES;
488     }
489     [o_box_audFlts setFrameFromContentFrame: o_box_audFlts_rect];
490 }
491
492 - (IBAction)extWin_exp_vidFlts:(id)sender
493 {
494     /* expand or collapse vidFlts */
495     NSRect o_win_rect = [o_extended_window frame];
496     NSRect o_box_audFlts_rect = [o_box_audFlts frame];
497     NSRect o_box_vidFlts_rect = [o_box_vidFlts frame];
498     
499     if (o_vidFlts_expanded)
500     {
501         /* move the window contents upwards (partially done through settings
502          * inside the nib) and resize the window */
503         o_win_rect.size.height = o_win_rect.size.height - 134;
504         o_win_rect.origin.y = [o_extended_window frame].origin.y + 134;
505         o_box_audFlts_rect.origin.y = o_box_audFlts_rect.origin.y + 134;
506         
507         /* remove the inserted view */
508         [o_videoFilters_view removeFromSuperviewWithoutNeedingDisplay];
509     }else{
510     
511         /* move the window contents downwards and resize the window */
512         o_win_rect.size.height = o_win_rect.size.height + 134;
513         o_win_rect.origin.y = [o_extended_window frame].origin.y - 134;
514         o_box_audFlts_rect.origin.y = o_box_audFlts_rect.origin.y - 134;
515     }
516     
517     [o_box_audFlts setFrameFromContentFrame: o_box_audFlts_rect];
518     [o_extended_window displayIfNeeded];
519     [o_extended_window setFrame: o_win_rect display:YES animate: YES];
520     
521     if (o_vidFlts_expanded)
522     {
523         o_box_vidFlts_rect.size.height = [o_box_vidFlts frame].size.height - 134;
524         msg_Dbg( VLCIntf, "collapsed video-filters section");
525         o_vidFlts_expanded = NO;
526     } else {
527         /* insert view */
528         o_box_vidFlts_rect.size.height = [o_box_vidFlts frame].size.height + 134;
529         [o_videoFilters_view setFrame: NSMakeRect( 20, -10, 370, 144)];
530         [o_videoFilters_view setNeedsDisplay:YES];
531         [o_videoFilters_view setAutoresizesSubviews: YES];
532         [[o_box_vidFlts contentView] addSubview: o_videoFilters_view];
533         msg_Dbg( VLCIntf, "expanded video-filters section");
534         o_vidFlts_expanded = YES;
535     }
536     [o_box_vidFlts setFrameFromContentFrame: o_box_vidFlts_rect];
537 }
538
539 - (IBAction)vidFlts:(id)sender
540 {
541     /* en-/disable video filters */
542     if (sender == o_ckb_blur)
543     {
544         [self changeVFiltersString: "motionblur" onOrOff: [o_ckb_blur state]];
545     }
546     else if (sender == o_ckb_distortion)
547     {
548         [self changeVFiltersString: "distort" onOrOff: [o_ckb_distortion state]];
549     }
550     else if (sender == o_ckb_imgClone)
551     {
552         [self changeVFiltersString: "clone" onOrOff: [o_ckb_imgClone state]];
553     }
554     else if (sender == o_ckb_imgCrop)
555     {
556         [self changeVFiltersString: "crop" onOrOff: [o_ckb_imgCrop state]];
557     }
558     else if (sender == o_ckb_imgInvers)
559     {
560         [self changeVFiltersString: "invert" onOrOff: [o_ckb_imgInvers state]];
561     }
562     else if (sender == o_ckb_trnsform)
563     {
564         [self changeVFiltersString: "transform" onOrOff: [o_ckb_trnsform state]];
565     } else {
566         /* this shouldn't happen */
567         msg_Warn (VLCIntf, "cannot find selected video-filter");
568     }
569 }
570
571 - (IBAction)vidFlts_mrInfo:(id)sender
572 {
573     /* show info sheet */
574     NSBeginInformationalAlertSheet(_NS("More information"), _NS("OK"), @"", @"", \
575         o_extended_window, nil, nil, nil, nil, _NS("Select the video effects " \
576         "filters to apply. You must restart the stream for these settings to " \
577         "take effect.\nTo configure the filters, go to the Preferences, and " \
578         "go to Modules/Video Filters. You can then configure each filter.\n" \
579         "If you want fine control over the filters ( to choose the order in " \
580         "which they are applied ), you need to enter manually a filters " \
581         "string (Preferences / Video / Filters)."));
582 }
583
584
585 /*****************************************************************************
586  * methods to communicate changes to VLC's core
587  *****************************************************************************/
588
589 - (void)changeVFiltersString:(char *)psz_name onOrOff:(vlc_bool_t )b_add 
590 {
591     /* copied from ../wxwidgets/extrapanel.cpp
592      * renamed to conform with Cocoa's rules */
593      
594     vout_thread_t *p_vout;
595     intf_thread_t * p_intf = VLCIntf;
596     
597     char *psz_parser, *psz_string;
598     psz_string = config_GetPsz( p_intf, "vout-filter" );
599     
600     if( !psz_string ) psz_string = strdup("");
601
602     psz_parser = strstr( psz_string, psz_name );
603
604     if( b_add )
605     {
606         if( !psz_parser )
607         {
608             psz_parser = psz_string;
609             asprintf( &psz_string, (*psz_string) ? "%s:%s" : "%s%s",
610                             psz_string, psz_name );
611             free( psz_parser );
612         }
613         else
614         {
615             return;
616         }
617     }
618     else
619     {
620         if( psz_parser )
621         {
622             memmove( psz_parser, psz_parser + strlen(psz_name) +
623                             (*(psz_parser + strlen(psz_name)) == ':' ? 1 : 0 ),
624                             strlen(psz_parser + strlen(psz_name)) + 1 );
625
626             /* Remove trailing : : */
627             if( *(psz_string+strlen(psz_string ) -1 ) == ':' )
628             {
629                 *(psz_string+strlen(psz_string ) -1 ) = '\0';
630             }
631          }
632          else
633          {
634              free( psz_string );
635              return;
636          }
637     }
638     /* Vout is not kept, so put that in the config */
639     config_PutPsz( p_intf, "vout-filter", psz_string );
640
641     /* Try to set on the fly */
642     p_vout = (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,
643                                               FIND_ANYWHERE );
644     if( p_vout )
645     {
646         var_SetString( p_vout, "vout-filter", psz_string );
647         vlc_object_release( p_vout );
648     }
649
650     free( psz_string );
651     
652     [self savePrefs];
653 }
654
655
656 - (void)changeAFiltersString: (char *)psz_name onOrOff: (vlc_bool_t )b_add;
657 {
658     char *psz_parser, *psz_string;
659     intf_thread_t * p_intf = VLCIntf;
660     aout_instance_t * p_aout= (aout_instance_t *)vlc_object_find(p_intf,
661                                  VLC_OBJECT_AOUT, FIND_ANYWHERE);
662
663     if( p_aout )
664     {
665         psz_string = var_GetString( p_aout, "audio-filter" );
666     }
667     else
668     {
669         psz_string = config_GetPsz( p_intf, "audio-filter" );
670     }
671
672     if( !psz_string ) psz_string = strdup("");
673
674     psz_parser = strstr( psz_string, psz_name );
675
676     if( b_add )
677     {
678         if( !psz_parser )
679         {
680             psz_parser = psz_string;
681             asprintf( &psz_string, (*psz_string) ? "%s:%s" : "%s%s",
682                             psz_string, psz_name );
683             free( psz_parser );
684         }
685         else
686         {
687             return;
688         }
689     }
690     else
691     {
692         if( psz_parser )
693         {
694             memmove( psz_parser, psz_parser + strlen(psz_name) +
695                             (*(psz_parser + strlen(psz_name)) == ':' ? 1 : 0 ),
696                             strlen(psz_parser + strlen(psz_name)) + 1 );
697
698             if( *(psz_string+strlen(psz_string ) -1 ) == ':' )
699             {
700                 *(psz_string+strlen(psz_string ) -1 ) = '\0';
701             }
702          }
703          else
704          {
705              free( psz_string );
706              return;
707          }
708     }
709
710     if( p_aout == NULL )
711     {
712         config_PutPsz( p_intf, "audio-filter", psz_string );
713     }
714     else
715     {
716         var_SetString( p_aout, "audio-filter", psz_string );
717         int i = 0;
718         while( i < p_aout->i_nb_inputs )
719         {
720             p_aout->pp_inputs[i]->b_restart = VLC_TRUE;
721             i = (i + 1);
722         }
723         vlc_object_release( p_aout );
724     }
725     free( psz_string );
726     
727     [self savePrefs];
728 }
729
730 - (void)savePrefs
731 {    
732     /* save the preferences to make sure that our module-changes will up on
733      * next launch again */
734     playlist_t * p_playlist = vlc_object_find( VLCIntf, VLC_OBJECT_PLAYLIST, \
735         FIND_ANYWHERE );
736     int returnedValue;
737     
738     returnedValue = config_SaveConfigFile( p_playlist, NULL);
739     if (returnedValue == 0)
740     {
741         msg_Dbg(p_playlist, "VLCExtended: saved preferences successfully");
742     } else {
743         msg_Dbg(p_playlist, "VLCExtended: error while saving the preferences " \
744             "(%i)" , returnedValue);
745     }
746     vlc_object_release( p_playlist );
747 }
748
749
750 /*****************************************************************************
751  * delegate method
752  *****************************************************************************/
753
754 - (BOOL)applicationShouldTerminate:(NSWindow *)sender
755 {
756     /* save the prefs before shutting down */
757     [self savePrefs];
758     
759     return YES;
760 }
761 @end