]> git.sesse.net Git - vlc/blob - modules/gui/wxwindows/extrapanel.cpp
7b6a447295c5b41eb1c0c9a1e06437d10b2f355c
[vlc] / modules / gui / wxwindows / extrapanel.cpp
1 /*****************************************************************************
2  * extrapanel.cpp : wxWindows plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2004, 2003 VideoLAN
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
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  * Preamble
26  *****************************************************************************/
27 #include <vlc/vlc.h>
28 #include <vlc/aout.h>
29 #include <aout_internal.h>
30 #include <vlc/vout.h>
31 #include <vlc/intf.h>
32
33 #include <math.h>
34
35 #include "wxwindows.h"
36
37 /*****************************************************************************
38  * Local class declarations.
39  *****************************************************************************/
40
41 /* FIXME */
42 #define SMOOTH_TIP N_( "If this setting is not zero, the bands will move " \
43                 "together when you move one. The higher the value is, the " \
44                 "more correlated their movement will be." )
45
46 static int IntfBandsCallback( vlc_object_t *, char const *,
47                               vlc_value_t, vlc_value_t, void * );
48 static int IntfPreampCallback( vlc_object_t *, char const *,
49                                vlc_value_t, vlc_value_t, void * );
50 static void ChangeFiltersString( intf_thread_t *, aout_instance_t *,
51                                  char *, vlc_bool_t );
52 static void ChangeVFiltersString( intf_thread_t *, char *, vlc_bool_t );
53
54
55 /* IDs for the controls and the menu commands */
56 enum
57 {
58     Notebook_Event,
59
60     Adjust_Event,
61     RestoreDefaults_Event,
62
63     Hue_Event,
64     Contrast_Event,
65     Brightness_Event,
66     Saturation_Event,
67     Gamma_Event,
68     Ratio_Event,
69
70     FiltersInfo_Event,
71
72     Filter0_Event, Filter1_Event, Filter2_Event, Filter3_Event, Filter4_Event,
73     Filter5_Event, Filter6_Event, Filter7_Event, Filter8_Event, Filter9_Event,
74
75     EqEnable_Event,
76     Eq2Pass_Event,
77     EqRestore_Event,
78
79     Smooth_Event,
80
81     Preamp_Event,
82
83     Band0_Event,Band1_Event,Band2_Event,Band3_Event,Band4_Event,
84     Band5_Event,Band6_Event,Band7_Event,Band8_Event,Band9_Event,
85
86     NormVol_Event, NVSlider_Event, HeadPhone_Event
87 };
88
89 BEGIN_EVENT_TABLE( ExtraPanel, wxPanel )
90     EVT_IDLE( ExtraPanel::OnIdle )
91
92     /* Equalizer */
93     EVT_CHECKBOX( EqEnable_Event, ExtraPanel::OnEnableEqualizer )
94     EVT_CHECKBOX( Eq2Pass_Event, ExtraPanel::OnEq2Pass )
95     EVT_BUTTON( EqRestore_Event, ExtraPanel::OnEqRestore )
96
97     EVT_COMMAND_SCROLL( Preamp_Event, ExtraPanel::OnPreamp )
98     EVT_COMMAND_SCROLL( Smooth_Event, ExtraPanel::OnEqSmooth )
99
100     EVT_COMMAND_SCROLL(Band0_Event, ExtraPanel::OnChangeEqualizer)
101     EVT_COMMAND_SCROLL(Band1_Event, ExtraPanel::OnChangeEqualizer)
102     EVT_COMMAND_SCROLL(Band2_Event, ExtraPanel::OnChangeEqualizer)
103     EVT_COMMAND_SCROLL(Band3_Event, ExtraPanel::OnChangeEqualizer)
104     EVT_COMMAND_SCROLL(Band4_Event, ExtraPanel::OnChangeEqualizer)
105     EVT_COMMAND_SCROLL(Band5_Event, ExtraPanel::OnChangeEqualizer)
106     EVT_COMMAND_SCROLL(Band6_Event, ExtraPanel::OnChangeEqualizer)
107     EVT_COMMAND_SCROLL(Band7_Event, ExtraPanel::OnChangeEqualizer)
108     EVT_COMMAND_SCROLL(Band8_Event, ExtraPanel::OnChangeEqualizer)
109     EVT_COMMAND_SCROLL(Band9_Event, ExtraPanel::OnChangeEqualizer)
110
111     /* Video */
112     EVT_CHECKBOX( Adjust_Event, ExtraPanel::OnEnableAdjust )
113     EVT_BUTTON( RestoreDefaults_Event, ExtraPanel::OnRestoreDefaults )
114
115     EVT_COMMAND_SCROLL(Hue_Event, ExtraPanel::OnAdjustUpdate)
116     EVT_COMMAND_SCROLL(Contrast_Event, ExtraPanel::OnAdjustUpdate)
117     EVT_COMMAND_SCROLL(Brightness_Event, ExtraPanel::OnAdjustUpdate)
118     EVT_COMMAND_SCROLL(Saturation_Event, ExtraPanel::OnAdjustUpdate)
119     EVT_COMMAND_SCROLL(Gamma_Event, ExtraPanel::OnAdjustUpdate)
120
121     EVT_BUTTON( FiltersInfo_Event, ExtraPanel::OnFiltersInfo )
122
123     EVT_CHECKBOX( Filter0_Event, ExtraPanel::OnSelectFilter )
124     EVT_CHECKBOX( Filter1_Event, ExtraPanel::OnSelectFilter )
125     EVT_CHECKBOX( Filter2_Event, ExtraPanel::OnSelectFilter )
126     EVT_CHECKBOX( Filter3_Event, ExtraPanel::OnSelectFilter )
127     EVT_CHECKBOX( Filter4_Event, ExtraPanel::OnSelectFilter )
128     EVT_CHECKBOX( Filter5_Event, ExtraPanel::OnSelectFilter )
129     EVT_CHECKBOX( Filter6_Event, ExtraPanel::OnSelectFilter )
130     EVT_CHECKBOX( Filter7_Event, ExtraPanel::OnSelectFilter )
131     EVT_CHECKBOX( Filter8_Event, ExtraPanel::OnSelectFilter )
132     EVT_CHECKBOX( Filter9_Event, ExtraPanel::OnSelectFilter )
133
134     /* Audio */
135     EVT_CHECKBOX( NormVol_Event, ExtraPanel::OnNormvol )
136     EVT_CHECKBOX( HeadPhone_Event, ExtraPanel::OnHeadphone )
137
138     EVT_COMMAND_SCROLL( NVSlider_Event, ExtraPanel::OnNormvolSlider )
139
140 END_EVENT_TABLE()
141
142 struct filter {
143     char *psz_filter;
144     char *psz_name;
145     char *psz_help;
146 };
147
148 static const struct filter vfilters[] =
149 {
150     { "clone", N_("Image clone"), N_("Creates several clones of the image") },
151     { "distort", N_("Distortion"), N_("Adds distorsion effects") },
152     { "invert", N_("Image inversion") , N_("Inverts the image colors") },
153     { "crop", N_("Image cropping"), N_("Crops the image") },
154     { "motionblur", N_("Blurring"), N_("Creates a motion blurring on the image") },
155     { "transform",  N_("Transformation"), N_("Rotates or flips the image") },
156     { NULL, NULL, NULL } /* Do not remove this line */
157 };
158
159 /*****************************************************************************
160  * Constructor.
161  *****************************************************************************/
162 ExtraPanel::ExtraPanel( intf_thread_t *_p_intf, wxWindow *_p_parent ):
163         wxPanel( _p_parent , -1, wxDefaultPosition, wxDefaultSize )
164 {
165
166     p_intf = _p_intf;
167     p_parent = _p_parent;
168     SetAutoLayout( TRUE );
169
170     wxBoxSizer *extra_sizer = new wxBoxSizer( wxHORIZONTAL );
171
172     notebook = new wxNotebook( this, Notebook_Event );
173
174 #if (!wxCHECK_VERSION(2,5,0))
175     wxNotebookSizer *notebook_sizer = new wxNotebookSizer( notebook );
176 #endif
177
178     notebook->AddPage( VideoPanel( notebook ), wxU(_("Video")) );
179     notebook->AddPage( EqzPanel( notebook ), wxU(_("Equalizer")) );
180     notebook->AddPage( AudioPanel( notebook ), wxU(_("Audio")) );
181
182 #if (!wxCHECK_VERSION(2,5,0))
183     extra_sizer->Add( notebook_sizer, 1, wxEXPAND, 0 );
184 #else
185     extra_sizer->Add( notebook, 1, wxEXPAND, 0 );
186 #endif
187
188     SetSizerAndFit( extra_sizer );
189     extra_sizer->Layout();
190 }
191
192 ExtraPanel::~ExtraPanel()
193 {
194 }
195
196 /* Video Panel constructor */
197 wxPanel *ExtraPanel::VideoPanel( wxWindow *parent )
198 {
199     char *psz_filters;
200
201     wxPanel *panel = new wxPanel( parent, -1 );
202     wxBoxSizer *panel_sizer = new wxBoxSizer( wxHORIZONTAL );
203
204     /* Create static box to surround the adjust controls */
205     wxStaticBox *adjust_box =
206            new wxStaticBox( panel, -1, wxU(_("Adjust Image")) );
207     wxStaticBoxSizer *adjust_sizer =
208         new wxStaticBoxSizer( adjust_box, wxVERTICAL );
209     adjust_sizer->SetMinSize( -1, 50 );
210
211     /* Create flex grid */
212     wxFlexGridSizer *adjust_gridsizer =
213         new wxFlexGridSizer( 6, 2, 0, 0);
214     adjust_gridsizer->AddGrowableCol(1);
215
216     /* Create the adjust button */
217     wxCheckBox * adjust_check = new wxCheckBox( panel, Adjust_Event,
218                                                  wxU(_("Enable")));
219
220     /* Create the restore to defaults button */
221     restoredefaults_button =
222         new wxButton( panel, RestoreDefaults_Event,
223         wxU(_("Restore Defaults")), wxDefaultPosition);
224
225     wxStaticText *hue_text = new wxStaticText( panel, -1,
226                                        wxU(_("Hue")) );
227     hue_slider = new wxSlider ( panel, Hue_Event, 0, 0,
228                                 360, wxDefaultPosition, wxDefaultSize );
229
230     wxStaticText *contrast_text = new wxStaticText( panel, -1,
231                                        wxU(_("Contrast")) );
232     contrast_slider = new wxSlider ( panel, Contrast_Event, 0, 0,
233                                 200, wxDefaultPosition, wxDefaultSize);
234
235     wxStaticText *brightness_text = new wxStaticText( panel, -1,
236                                        wxU(_("Brightness")) );
237     brightness_slider = new wxSlider ( panel, Brightness_Event, 0, 0,
238                            200, wxDefaultPosition, wxDefaultSize) ;
239
240     wxStaticText *saturation_text = new wxStaticText( panel, -1,
241                                           wxU(_("Saturation")) );
242     saturation_slider = new wxSlider ( panel, Saturation_Event, 0, 0,
243                            300, wxDefaultPosition, wxDefaultSize );
244
245     wxStaticText *gamma_text = new wxStaticText( panel, -1,
246                                           wxU(_("Gamma")) );
247     gamma_slider = new wxSlider ( panel, Gamma_Event, 0, 0,
248                            100, wxDefaultPosition, wxDefaultSize );
249
250     adjust_gridsizer->Add( adjust_check, 1, wxEXPAND|wxALL, 2 );
251     adjust_gridsizer->Add( restoredefaults_button, 1, wxEXPAND|wxALL, 2 );
252     adjust_gridsizer->Add( hue_text, 1, wxEXPAND|wxALL, 2 );
253     adjust_gridsizer->Add( hue_slider, 1, wxEXPAND|wxALL, 2 );
254     adjust_gridsizer->Add( contrast_text, 1, wxEXPAND|wxALL, 2 );
255     adjust_gridsizer->Add( contrast_slider, 1, wxEXPAND|wxALL, 2 );
256     adjust_gridsizer->Add( brightness_text, 1, wxEXPAND|wxALL, 2 );
257     adjust_gridsizer->Add( brightness_slider, 1, wxEXPAND|wxALL, 2 );
258     adjust_gridsizer->Add( saturation_text, 1, wxEXPAND|wxALL, 2 );
259     adjust_gridsizer->Add( saturation_slider, 1, wxEXPAND|wxALL, 2 );
260     adjust_gridsizer->Add( gamma_text, 1, wxEXPAND|wxALL, 2 );
261     adjust_gridsizer->Add( gamma_slider, 1, wxEXPAND|wxALL, 2 );
262
263     adjust_sizer->Add( adjust_gridsizer, 1, wxEXPAND|wxALL, 2);
264
265     panel_sizer->Add( adjust_sizer , 1, wxTOP, 2 );
266
267 #if 0
268     /* Create sizer to surround the other controls */
269     wxBoxSizer *other_sizer = new wxBoxSizer( wxVERTICAL );
270
271     wxStaticBox *video_box =
272             new wxStaticBox( panel, -1, wxU(_("Video Options")) );
273     /* Create the sizer for the frame */
274     wxStaticBoxSizer *video_sizer =
275        new wxStaticBoxSizer( video_box, wxVERTICAL );
276     video_sizer->SetMinSize( -1, 50 );
277
278     static const wxString ratio_array[] =
279     {
280         wxT("4:3"),
281         wxT("16:9"),
282     };
283
284     wxBoxSizer *ratio_sizer = new wxBoxSizer( wxHORIZONTAL );
285     wxStaticText *ratio_text = new wxStaticText( panel, -1,
286                                           wxU(_("Aspect Ratio")) );
287
288     ratio_combo = new wxComboBox( panel, Ratio_Event, wxT(""),
289                                   wxDefaultPosition, wxSize( 80 , -1),
290                                   WXSIZEOF(ratio_array), ratio_array,
291                                   0 );
292
293     ratio_sizer->Add( ratio_text, 0, wxALL, 2 );
294     ratio_sizer->Add( ratio_combo, 0, wxALL, 2 );
295     ratio_sizer->Layout();
296
297     video_sizer->Add( ratio_sizer  , 0 , wxALL , 2 );
298     video_sizer->Layout();
299 #endif
300
301     wxStaticBox *filter_box =
302                   new wxStaticBox( panel, -1, wxU(_("Video Filters")) );
303     wxStaticBoxSizer *filter_sizer =
304                    new wxStaticBoxSizer( filter_box, wxHORIZONTAL );
305
306     wxBoxSizer *t_col_sizer = new wxBoxSizer( wxVERTICAL );
307
308
309     for( int i = 0 ; vfilters[i].psz_filter != NULL ; i++ )
310     {
311         wxCheckBox *box = new wxCheckBox( panel, Filter0_Event + i,
312                                           wxU( _( vfilters[i].psz_name ) ) );
313         t_col_sizer->Add( box, 0, wxALL, 4 );
314         box->SetToolTip( wxU( _( vfilters[i].psz_help ) ) );
315     }
316
317     filter_sizer->Add( t_col_sizer );
318     filter_sizer->Add( new wxButton( panel, FiltersInfo_Event,
319                             wxU(_("More info" ) ) ), 0, wxALL, 4 );
320 #if 0
321     other_sizer->Add( video_sizer, 0, wxALL | wxEXPAND , 0);
322     other_sizer->Add( filter_sizer, 0, wxALL | wxEXPAND , 0);
323     other_sizer->Layout();
324     panel_sizer->Add(other_sizer , 1 );
325 #endif
326
327     panel_sizer->Add( filter_sizer, 1, wxTOP|wxLEFT, 2 );
328
329     panel->SetSizerAndFit( panel_sizer );
330
331     /* Layout the whole panel */
332     panel_sizer->Layout();
333
334     panel_sizer->SetSizeHints( panel );
335
336     /* Write down initial values */
337     psz_filters = config_GetPsz( p_intf, "vout-filter" );
338     if( psz_filters && strstr( psz_filters, "adjust" ) )
339     {
340         adjust_check->SetValue( 1 );
341         restoredefaults_button->Enable();
342         saturation_slider->Enable();
343         contrast_slider->Enable();
344         brightness_slider->Enable();
345         hue_slider->Enable();
346         gamma_slider->Enable();
347     }
348     else
349     {
350         adjust_check->SetValue( 0 );
351         restoredefaults_button->Disable();
352         saturation_slider->Disable();
353         contrast_slider->Disable();
354         brightness_slider->Disable();
355         hue_slider->Disable();
356         gamma_slider->Disable();
357     }
358     if( psz_filters ) free( psz_filters );
359
360     int i_value = config_GetInt( p_intf, "hue" );
361     if( i_value > 0 && i_value < 360 )
362         hue_slider->SetValue( i_value );
363     float f_value;
364     f_value = config_GetFloat( p_intf, "saturation" );
365     if( f_value > 0 && f_value < 5 )
366         saturation_slider->SetValue( (int)(100 * f_value) );
367     f_value = config_GetFloat( p_intf, "contrast" );
368     if( f_value > 0 && f_value < 4 )
369         contrast_slider->SetValue( (int)(100 * f_value) );
370     f_value = config_GetFloat( p_intf, "brightness" );
371     if( f_value > 0 && f_value < 2 )
372         brightness_slider->SetValue( (int)(100 * f_value) );
373     f_value = config_GetFloat( p_intf, "gamma" );
374     if( f_value > 0 && f_value < 10 )
375         gamma_slider->SetValue( (int)(10 * f_value) );
376
377     b_update = VLC_FALSE;
378
379     return panel;
380 }
381
382 /* Audio panel constructor */
383 wxPanel *ExtraPanel::AudioPanel( wxWindow *parent )
384 {
385     char *psz_filters;
386
387     wxPanel *panel = new wxPanel( parent, -1 );
388     wxBoxSizer *panel_sizer = new wxBoxSizer( wxHORIZONTAL );
389
390     /* Create static box to surround the adjust controls */
391     wxStaticBox *filter_box =
392            new wxStaticBox( panel, -1, wxU(_("Audio filters")) );
393     wxStaticBoxSizer *filter_sizer =
394         new wxStaticBoxSizer( filter_box, wxVERTICAL );
395     filter_sizer->SetMinSize( -1, 50 );
396
397     wxCheckBox * headphone_check = new wxCheckBox( panel, HeadPhone_Event,
398                                     wxU(_("Headphone virtualization")));
399     headphone_check->SetToolTip( wxU(_("This filter gives the feeling of a "
400              "5.1 speaker set when using a headphone." ) ) );
401
402     wxCheckBox * normvol_check = new wxCheckBox( panel, NormVol_Event,
403                                     wxU(_("Volume normalization")));
404     normvol_check->SetToolTip( wxU(_("This filter prevents the audio output "
405                          "power from going over a defined value." ) ) );
406
407     wxStaticText *normvol_label = new wxStaticText( panel, -1,
408                                    wxU( _("Maximum level") ) );
409
410     wxSlider *normvol_slider = new wxSlider ( panel, NVSlider_Event, 20, 5,
411                            100, wxDefaultPosition, wxSize( 100, -1 ) );
412
413     filter_sizer->Add( headphone_check, 0, wxALL, 4 );
414     filter_sizer->Add( normvol_check, 0, wxALL, 4 );
415     filter_sizer->Add( normvol_label, 0, wxALL, 4 );
416     filter_sizer->Add( normvol_slider, 0, wxALL, 4 );
417
418     panel_sizer->Add( filter_sizer, 1, wxTOP, 2 );
419     panel->SetSizerAndFit( panel_sizer );
420     panel_sizer->Layout();
421     panel_sizer->SetSizeHints( panel );
422
423     /* Write down initial values */
424     psz_filters = config_GetPsz( p_intf, "audio-filter" );
425     if( psz_filters )
426     {
427         headphone_check->SetValue( strstr( psz_filters, "headphone" ) );
428         normvol_check->SetValue( strstr( psz_filters, "normvol" ) );
429         free( psz_filters );
430     }
431     else
432     {
433         headphone_check->SetValue( 0 );
434         normvol_check->SetValue( 0 );
435     }
436
437     return panel;
438 }
439
440
441 static const wxString band_frequencies[] =
442 {
443     wxT(" 60 Hz"),
444     wxT("170 Hz"),
445     wxT("310 Hz"),
446     wxT("600 Hz"),
447     wxT(" 1 kHz"),
448     wxT(" 3 kHz"),
449     wxT(" 6 kHz"),
450     wxT("12 kHz"),
451     wxT("14 kHz"),
452     wxT("16 kHz")
453 };
454
455 /* Equalizer Panel constructor */
456 wxPanel *ExtraPanel::EqzPanel( wxWindow *parent )
457 {
458     wxPanel *panel = new wxPanel( parent, -1 );
459     wxBoxSizer *panel_sizer = new wxBoxSizer( wxVERTICAL );
460
461     /* Create static box to surround the adjust controls */
462     wxBoxSizer *top_sizer =
463         new wxBoxSizer( wxHORIZONTAL );
464
465     /* Create the enable button */
466     eq_chkbox =  new wxCheckBox( panel, EqEnable_Event,
467                             wxU(_("Enable") ) );
468     eq_chkbox->SetToolTip( wxU(_("Enable the equalizer. You can either "
469     "manually change the bands or use a preset (Audio Menu->Equalizer)." ) ) );
470     top_sizer->Add( eq_chkbox, 0, wxALL, 2 );
471
472     eq_2p_chkbox =  new wxCheckBox( panel, Eq2Pass_Event,
473                             wxU(_("2 Pass") ) );
474
475     eq_2p_chkbox->SetToolTip( wxU(_("If you enable this settting, the "
476      "equalizer filter will be applied twice. The effect will be sharper.") ) );
477
478     top_sizer->Add( eq_2p_chkbox, 0, wxALL, 2 );
479
480     top_sizer->Add( 0, 0, 1, wxALL, 2 );
481
482     eq_restoredefaults_button = new wxButton( panel, EqRestore_Event,
483                                   wxU( _("Restore Defaults") ) );
484     top_sizer->Add( eq_restoredefaults_button, 0, wxALL, 2 );
485     top_sizer->Add( 0, 0, 1, wxALL, 2 );
486
487     smooth_text = new wxStaticText( panel, -1, wxU( "Smooth :" ));
488     smooth_text->SetToolTip( wxU( SMOOTH_TIP ) );
489     top_sizer->Add( smooth_text, 0, wxALL, 2 );
490
491     smooth_slider =new wxSlider( panel, Smooth_Event, 0, 0, 10 ,
492                     wxDefaultPosition, wxSize( 100, -1 ) );
493     smooth_slider->SetToolTip( wxU( SMOOTH_TIP ) );
494     top_sizer->Add( smooth_slider, 0, wxALL, 2 );
495     i_smooth = 0;
496
497     /* Create flex grid */
498     wxFlexGridSizer *eq_gridsizer =
499         new wxFlexGridSizer( 2, 12, 0, 0);
500     eq_gridsizer->AddGrowableRow( 0 );
501     eq_gridsizer->AddGrowableCol( 1 );
502
503     preamp_slider = new wxSlider( panel, Preamp_Event, 80, 0, 400,
504                     wxDefaultPosition, wxSize( -1 , 90 ) , wxSL_VERTICAL );
505     eq_gridsizer->Add( preamp_slider, 1, wxEXPAND|wxALL, 2 );
506
507     eq_gridsizer->Add( 0, 0, 1, wxALL, 2 );
508
509     for( int i = 0 ; i < 10 ; i++ )
510     {
511         band_sliders[i] = new wxSlider( panel, Band0_Event + i, 200, 0, 400,
512                     wxDefaultPosition, wxSize( -1 , 90 ) , wxSL_VERTICAL );
513
514         i_values[i] = 200;
515         eq_gridsizer->Add( band_sliders[i], 1, wxEXPAND|wxALL, 2 );
516     }
517
518     preamp_text = new wxStaticText( panel, -1, wxT( "Preamp\n12.0dB" ) );
519     wxFont font= preamp_text->GetFont();
520     font.SetPointSize(7);
521     preamp_text->SetFont( font );
522     eq_gridsizer->Add( preamp_text, wxALL, 2 );
523
524     eq_gridsizer->Add( 0, 0, 1 );
525
526     for( int i = 0 ; i < 10 ; i++ )
527     {
528         band_texts[i] = new wxStaticText( panel, -1,
529                                 band_frequencies[i] + wxU("\n0.0dB" ) ) ;
530         eq_gridsizer->Add( band_texts[i], 1, wxEXPAND|wxALL, 2 );
531         wxFont font= band_texts[i]->GetFont();
532         font.SetPointSize(7);
533         band_texts[i]->SetFont( font );
534     }
535
536     panel_sizer->Add( top_sizer , 0 , wxTOP | wxEXPAND, 5 );
537     panel_sizer->Add( eq_gridsizer , 0 , wxEXPAND, 0 );
538
539     panel->SetSizer( panel_sizer );
540
541     panel_sizer->Layout();
542
543     panel_sizer->SetSizeHints( panel );
544
545     CheckAout();
546
547     aout_instance_t *p_aout= (aout_instance_t *)vlc_object_find(p_intf,
548                                  VLC_OBJECT_AOUT, FIND_ANYWHERE);
549     char *psz_af;
550     if( p_aout )
551     {
552         psz_af = var_GetString( p_aout, "audio-filter" );
553         if( var_GetBool( p_aout, "equalizer-2pass" ) )
554             eq_2p_chkbox->SetValue( true );
555     }
556     else
557     {
558         psz_af = config_GetPsz( p_intf, "audio-filter" );
559         if( config_GetInt( p_intf, "equalizer-2pass" ) )
560             eq_2p_chkbox->SetValue( true );
561     }
562     if( strstr( psz_af, "equalizer" ) != NULL )
563     {
564         eq_chkbox->SetValue( true );
565     } else {
566         eq_2p_chkbox->Disable();
567         eq_restoredefaults_button->Disable();
568         smooth_slider->Disable();
569         smooth_text->Disable();
570         preamp_slider->Disable();
571         preamp_text->Disable();
572         for( int i_index=0; i_index < 10; i_index++ )
573         {
574             band_sliders[i_index]->Disable();
575             band_texts[i_index]->Disable();
576         }
577     }
578     free( psz_af );
579
580     return panel;
581 }
582
583 /*******************************************************
584  * Event handlers
585  *******************************************************/
586
587 /* Keep aout up to date and update the bands if needed */
588 void ExtraPanel::OnIdle( wxIdleEvent &event )
589 {
590     CheckAout();
591     if( b_update == VLC_TRUE )
592     {
593         if( b_my_update == VLC_TRUE )
594         {
595             b_update = b_my_update = VLC_FALSE;
596             return;
597         }
598         char *p = psz_bands;
599         for( int i = 0; i < 10; i++ )
600         {
601                 float f;
602                 char psz_val[5];
603                 int i_val;
604                 /* Read dB -20/20*/
605                 f = strtof( p, &p );
606                 i_val= (int)( ( f + 20 ) * 10 );
607                 band_sliders[i]->SetValue( 400 - i_val );
608                 i_values[i] = 400 - i_val;
609                 sprintf( psz_val, "%.1f", f );
610                 band_texts[i]->SetLabel( band_frequencies[i] + wxT("\n") +
611                                                 wxU( psz_val ) + wxT("dB") );
612                 if( p == NULL )
613                 {
614                     break;
615                 }
616                 p++;
617                 if( *p == 0 )
618                     break;
619         }
620         char psz_val[5];
621         int i_val = (int)( ( f_preamp + 20 ) * 10 );
622         sprintf( psz_val, "%.1f", f_preamp );
623         preamp_slider->SetValue( 400 - i_val );
624         const wxString preamp = wxT("Preamp\n");
625         preamp_text->SetLabel( preamp + wxU( psz_val ) + wxT( "dB" ) );
626         eq_chkbox->SetValue( TRUE );
627         b_update = VLC_FALSE;
628     }
629 }
630
631 /*************************
632  *  Equalizer Panel events
633  *************************/
634 void ExtraPanel::OnEnableEqualizer( wxCommandEvent &event )
635 {
636     int i_index;
637     aout_instance_t *p_aout= (aout_instance_t *)vlc_object_find(p_intf,
638                                  VLC_OBJECT_AOUT, FIND_ANYWHERE);
639     ChangeFiltersString( p_intf,p_aout, "equalizer",
640                          event.IsChecked() ? VLC_TRUE : VLC_FALSE );
641
642     if( event.IsChecked() )
643     {
644         eq_2p_chkbox->Enable();
645         eq_restoredefaults_button->Enable();
646         smooth_slider->Enable();
647         smooth_text->Enable();
648         preamp_slider->Enable();
649         preamp_text->Enable();
650         for( i_index=0; i_index < 10; i_index++ )
651         {
652             band_sliders[i_index]->Enable();
653             band_texts[i_index]->Enable();
654         }
655     } else {
656         eq_2p_chkbox->Disable();
657         eq_restoredefaults_button->Disable();
658         smooth_slider->Disable();
659         smooth_text->Disable();
660         preamp_slider->Disable();
661         preamp_text->Disable();
662         for( i_index=0; i_index < 10; i_index++ )
663         {
664             band_sliders[i_index]->Disable();
665             band_texts[i_index]->Disable();
666         }
667     }
668
669     if( p_aout != NULL )
670         vlc_object_release( p_aout );
671 }
672
673 void ExtraPanel::OnEqRestore( wxCommandEvent &event )
674 {
675     aout_instance_t *p_aout= (aout_instance_t *)vlc_object_find(p_intf,
676                                  VLC_OBJECT_AOUT, FIND_ANYWHERE);
677     if( p_aout == NULL )
678     {
679         vlc_value_t val;
680         vlc_bool_t b_previous = eq_chkbox->IsChecked();
681         val.f_float = 12.0;
682         IntfPreampCallback( NULL, NULL, val,val, this );
683         config_PutFloat( p_intf, "equalizer-preamp", 12.0 );
684         val.psz_string = strdup( "0 0 0 0 0 0 0 0 0 0" );
685         IntfBandsCallback( NULL, NULL, val,val, this );
686         config_PutPsz( p_intf, "equalizer-bands",
687                                 "0 0 0 0 0 0 0 0 0 0");
688         config_PutPsz( p_intf, "equalizer-preset","flat" );
689         eq_chkbox->SetValue( b_previous );
690     }
691     else
692     {
693         var_SetFloat( p_aout, "equalizer-preamp", 12.0 );
694         config_PutFloat( p_intf, "equalizer-preamp", 12.0 );
695         var_SetString( p_aout, "equalizer-bands",
696                                 "0 0 0 0 0 0 0 0 0 0");
697         config_PutPsz( p_intf, "equalizer-bands",
698                                 "0 0 0 0 0 0 0 0 0 0");
699         var_SetString( p_aout , "equalizer-preset" , "flat" );
700         config_PutPsz( p_intf, "equalizer-preset","flat" );
701         vlc_object_release( p_aout );
702     }
703 }
704
705 void ExtraPanel::OnEq2Pass( wxCommandEvent &event )
706 {
707     aout_instance_t *p_aout= (aout_instance_t *)vlc_object_find(p_intf,
708                                  VLC_OBJECT_AOUT, FIND_ANYWHERE);
709
710     vlc_bool_t b_2p = event.IsChecked() ? VLC_TRUE : VLC_FALSE;
711
712     if( p_aout == NULL )
713     {
714         config_PutInt( p_intf, "equalizer-2pass", b_2p );
715     }
716     else
717     {
718         var_SetBool( p_aout, "equalizer-2pass", b_2p );
719         config_PutInt( p_intf, "equalizer-2pass", b_2p );
720         if( eq_chkbox->IsChecked() )
721         {
722             for( int i = 0; i < p_aout->i_nb_inputs; i++ )
723             {
724                 p_aout->pp_inputs[i]->b_restart = VLC_TRUE;
725             }
726         }
727         vlc_object_release( p_aout );
728     }
729 }
730
731 void ExtraPanel::OnEqSmooth( wxScrollEvent &event )
732 {
733     /* Max smoothing : 70% */
734     i_smooth = event.GetPosition() * 7;
735 }
736
737 void ExtraPanel::OnPreamp( wxScrollEvent &event )
738 {
739     float f= (float)( 400 - event.GetPosition() ) / 10 - 20 ;
740     char psz_val[5];
741
742     aout_instance_t *p_aout= (aout_instance_t *)vlc_object_find(p_intf,
743                                  VLC_OBJECT_AOUT, FIND_ANYWHERE);
744
745     sprintf( psz_val, "%.1f", f );
746     const wxString preamp = wxT("Preamp\n");
747     preamp_text->SetLabel( preamp + wxU( psz_val ) + wxT( "dB" ) );
748
749     if( p_aout == NULL )
750     {
751         config_PutFloat( p_intf, "equalizer-preamp", f );
752     }
753     else
754     {
755         var_SetFloat( p_aout, "equalizer-preamp", f );
756         config_PutFloat( p_intf, "equalizer-preamp", f );
757         b_my_update = VLC_TRUE;
758         vlc_object_release( p_aout );
759     }
760 }
761
762 void ExtraPanel::OnChangeEqualizer( wxScrollEvent &event )
763 {
764     aout_instance_t *p_aout= (aout_instance_t *)vlc_object_find(p_intf,
765                                  VLC_OBJECT_AOUT, FIND_ANYWHERE);
766     char psz_values[102];
767     memset( psz_values, 0, 102 );
768
769
770     /* Smoothing */
771     int i_diff = event.GetPosition() - i_values[  event.GetId() - Band0_Event ];
772     i_values[ event.GetId() - Band0_Event] = event.GetPosition();
773
774     for( int i = event.GetId() + 1 ; i <= Band9_Event ; i++ )
775     {
776         int i_new = band_sliders[ i-Band0_Event ]->GetValue() +
777            (int)( i_diff * pow( (float)i_smooth / 100 , i- event.GetId() ) ) ;
778         if( i_new < 0 ) i_new = 0;
779         if( i_new > 400 ) i_new = 400;
780         band_sliders[ i-Band0_Event ]->SetValue( i_new );
781     }
782     for( int i = Band0_Event ; i < event.GetId() ; i++ )
783     {
784         int i_new =   band_sliders[ i-Band0_Event ]->GetValue() +
785            (int)( i_diff * pow( (float)i_smooth / 100 , event.GetId() - i  ) );
786         if( i_new < 0 ) i_new = 0;
787         if( i_new > 400 ) i_new = 400;
788         band_sliders[ i-Band0_Event ]->SetValue( i_new );
789     }
790
791     /* Write the new bands values */
792     for( int i = 0 ; i < 10 ; i++ )
793     {
794         char psz_val[5];
795         float f_val = (float)( 400 - band_sliders[i]->GetValue() ) / 10- 20 ;
796         sprintf( psz_values, "%s %f", psz_values, f_val );
797         sprintf( psz_val, "%.1f", f_val );
798         band_texts[i]->SetLabel( band_frequencies[i] + wxT("\n") +
799                         wxU( psz_val ) + wxT("dB" ) );
800     }
801     if( p_aout == NULL )
802     {
803         config_PutPsz( p_intf, "equalizer-bands", psz_values );
804     }
805     else
806     {
807         var_SetString( p_aout, "equalizer-bands", psz_values );
808         config_PutPsz( p_intf, "equalizer-bands", psz_values );
809         b_my_update = VLC_TRUE;
810         vlc_object_release( p_aout );
811     }
812 }
813
814 /***********************
815  * Audio Panel events
816  ***********************/
817 void ExtraPanel::OnHeadphone( wxCommandEvent &event )
818 {
819     aout_instance_t *p_aout= (aout_instance_t *)vlc_object_find(p_intf,
820                                  VLC_OBJECT_AOUT, FIND_ANYWHERE);
821     ChangeFiltersString( p_intf , p_aout, "headphone",
822                          event.IsChecked() ? VLC_TRUE : VLC_FALSE );
823     if( p_aout != NULL )
824         vlc_object_release( p_aout );
825 }
826
827 void ExtraPanel::OnNormvol( wxCommandEvent &event )
828 {
829     aout_instance_t *p_aout= (aout_instance_t *)vlc_object_find(p_intf,
830                                  VLC_OBJECT_AOUT, FIND_ANYWHERE);
831     ChangeFiltersString( p_intf , p_aout, "normvol",
832                          event.IsChecked() ? VLC_TRUE : VLC_FALSE );
833     if( p_aout != NULL )
834         vlc_object_release( p_aout );
835 }
836
837 void ExtraPanel::OnNormvolSlider( wxScrollEvent &event )
838 {
839     aout_instance_t *p_aout= (aout_instance_t *)vlc_object_find(p_intf,
840                                  VLC_OBJECT_AOUT, FIND_ANYWHERE);
841     if( p_aout != NULL )
842     {
843         var_SetFloat( p_aout, "norm-max-level", (float)event.GetPosition()/10 );
844         vlc_object_release( p_aout );
845     }
846     else
847     {
848         config_PutFloat( p_intf, "norm-max-level",
849                         (float)event.GetPosition()/10 );
850     }
851 }
852 /***********************
853  *  Video Panel events
854  ***********************/
855 void ExtraPanel::OnEnableAdjust(wxCommandEvent& event)
856 {
857     ChangeVFiltersString( p_intf,  "adjust",
858                           event.IsChecked() ? VLC_TRUE : VLC_FALSE );
859
860     if( event.IsChecked() )
861     {
862         restoredefaults_button->Enable();
863         brightness_slider->Enable();
864         saturation_slider->Enable();
865         contrast_slider->Enable();
866         hue_slider->Enable();
867         gamma_slider->Enable();
868     }
869     else
870     {
871         restoredefaults_button->Disable();
872         brightness_slider->Disable();
873         saturation_slider->Disable();
874         contrast_slider->Disable();
875         hue_slider->Disable();
876         gamma_slider->Disable();
877     }
878 }
879
880 void ExtraPanel::OnRestoreDefaults( wxCommandEvent &event)
881 {
882     hue_slider->SetValue(0);
883     saturation_slider->SetValue(100);
884     brightness_slider->SetValue(100);
885     contrast_slider->SetValue(100),
886     gamma_slider->SetValue(10);
887
888     wxScrollEvent *hscroll_event = new wxScrollEvent(0, Hue_Event, 0);
889     OnAdjustUpdate(*hscroll_event);
890
891     wxScrollEvent *sscroll_event = new wxScrollEvent(0, Saturation_Event, 100);
892     OnAdjustUpdate(*sscroll_event);
893
894     wxScrollEvent *bscroll_event = new wxScrollEvent(0, Brightness_Event, 100);
895     OnAdjustUpdate(*bscroll_event);
896
897     wxScrollEvent *cscroll_event = new wxScrollEvent(0, Contrast_Event, 100);
898     OnAdjustUpdate(*cscroll_event);
899
900     wxScrollEvent *gscroll_event = new wxScrollEvent(0, Gamma_Event, 10);
901     OnAdjustUpdate(*gscroll_event);
902
903 }
904
905 void ExtraPanel::OnAdjustUpdate( wxScrollEvent &event)
906 {
907     vout_thread_t *p_vout = (vout_thread_t *)vlc_object_find(p_intf,
908                                  VLC_OBJECT_VOUT, FIND_ANYWHERE);
909     if( p_vout == NULL )
910     {
911         switch( event.GetId() )
912         {
913             case Hue_Event:
914                 config_PutInt( p_intf , "hue" , event.GetPosition() );
915                 break;
916
917             case Saturation_Event:
918                 config_PutFloat( p_intf , "saturation" ,
919                                 (float)event.GetPosition()/100 );
920                 break;
921
922             case Brightness_Event:
923                 config_PutFloat( p_intf , "brightness" ,
924                                 (float)event.GetPosition()/100 );
925                 break;
926
927             case Contrast_Event:
928                 config_PutFloat( p_intf , "contrast" ,
929                                 (float)event.GetPosition()/100 );
930                 break;
931
932             case Gamma_Event:
933                 config_PutFloat( p_intf , "gamma" ,
934                                 (float)event.GetPosition()/10 );
935                 break;
936         }
937     }
938     else
939     {
940         vlc_value_t val;
941         switch( event.GetId() )
942         {
943             case Hue_Event:
944                 val.i_int = event.GetPosition();
945                 var_Set( p_vout, "hue", val );
946                 config_PutInt( p_intf , "hue" , event.GetPosition() );
947                 break;
948
949             case Saturation_Event:
950                 val.f_float = (float)event.GetPosition() / 100;
951                 var_Set( p_vout, "saturation", val );
952                 config_PutFloat( p_intf , "saturation" ,
953                                 (float)event.GetPosition()/100 );
954                 break;
955
956             case Brightness_Event:
957                 val.f_float = (float)event.GetPosition() / 100;
958                 var_Set( p_vout, "brightness", val );
959                 config_PutFloat( p_intf , "brightness" ,
960                                 (float)event.GetPosition()/100 );
961                 break;
962
963             case Contrast_Event:
964                 val.f_float = (float)event.GetPosition() / 100;
965                 var_Set( p_vout, "contrast", val );
966                 config_PutFloat( p_intf , "contrast" ,
967                                 (float)event.GetPosition()/100 );
968                 break;
969
970             case Gamma_Event:
971                 val.f_float = (float)event.GetPosition() / 10;
972                 var_Set( p_vout, "gamma", val );
973                 config_PutFloat( p_intf , "gamma" ,
974                                 (float)event.GetPosition()/10 );
975                 break;
976         }
977         vlc_object_release(p_vout);
978     }
979 }
980
981 /* FIXME */
982 void ExtraPanel::OnRatio( wxCommandEvent& event )
983 {
984    config_PutPsz( p_intf, "aspect-ratio", ratio_combo->GetValue().mb_str() );
985 }
986
987
988 void ExtraPanel::OnSelectFilter(wxCommandEvent& event)
989 {
990     int i_filter = event.GetId() - Filter0_Event ;
991     if( vfilters[i_filter].psz_filter  )
992     {
993         ChangeVFiltersString( p_intf, vfilters[i_filter].psz_filter ,
994                               event.IsChecked() ? VLC_TRUE : VLC_FALSE );
995     }
996 }
997
998 void ExtraPanel::OnFiltersInfo(wxCommandEvent& event)
999 {
1000     wxMessageBox( wxU( _("Select the video effects filters to apply. "
1001                   "You must restart the stream for these settings to "
1002                   "take effect.\n"
1003                   "To configure the filters, go to the Preferences, "
1004                   "and go to Modules/Video Filters. "
1005                   "You can then configure each filter.\n"
1006                   "If you want fine control over the filters ( to choose "
1007                   "the order in which they are applied ), you need to enter "
1008                   "manually a filters string (Preferences / General / Video)."
1009                   ) ),
1010                     wxU( _("More information" ) ), wxOK | wxICON_INFORMATION,
1011                     this->p_parent );
1012 }
1013 /**********************************
1014  * Other functions
1015  **********************************/
1016 void ExtraPanel::CheckAout()
1017 {
1018     aout_instance_t *p_aout= (aout_instance_t *)vlc_object_find(p_intf,
1019                                  VLC_OBJECT_AOUT, FIND_ANYWHERE);
1020     if( p_aout != NULL )
1021     {
1022         if( p_aout != p_intf->p_sys->p_aout )
1023         {
1024             /* We want to know if someone changes the bands */
1025             if( var_AddCallback( p_aout, "equalizer-bands",
1026                                     IntfBandsCallback, this ) )
1027             {
1028                 /* The variable does not exist yet, wait */
1029                 vlc_object_release( p_aout );
1030                 return;
1031             }
1032             if( var_AddCallback( p_aout, "equalizer-preamp",
1033                                     IntfPreampCallback, this )  )
1034             {
1035                 vlc_object_release( p_aout );
1036                 return;
1037             }
1038             /* Ok, we have our variables, make a first update round */
1039             p_intf->p_sys->p_aout = p_aout;
1040
1041             f_preamp = var_GetFloat( p_aout, "equalizer-preamp" );
1042             psz_bands = var_GetString( p_aout, "equalizer-bands" );
1043             b_update = VLC_TRUE;
1044         }
1045         vlc_object_release( p_aout );
1046     }
1047 }
1048
1049
1050 static void ChangeVFiltersString( intf_thread_t *p_intf,
1051                                  char *psz_name, vlc_bool_t b_add )
1052 {
1053     vout_thread_t *p_vout;
1054     char *psz_parser, *psz_string;
1055
1056     psz_string = config_GetPsz( p_intf, "vout-filter" );
1057
1058     if( !psz_string ) psz_string = strdup("");
1059
1060     psz_parser = strstr( psz_string, psz_name );
1061
1062     if( b_add )
1063     {
1064         if( !psz_parser )
1065         {
1066             psz_parser = psz_string;
1067             asprintf( &psz_string, (*psz_string) ? "%s,%s" : "%s%s",
1068                             psz_string, psz_name );
1069             free( psz_parser );
1070         }
1071         else
1072         {
1073             return;
1074         }
1075     }
1076     else
1077     {
1078         if( psz_parser )
1079         {
1080             memmove( psz_parser, psz_parser + strlen(psz_name) +
1081                             (*(psz_parser + strlen(psz_name)) == ',' ? 1 : 0 ),
1082                             strlen(psz_parser + strlen(psz_name)) + 1 );
1083
1084             /* Remove trailing : : */
1085             if( *(psz_string+strlen(psz_string ) -1 ) == ',' )
1086             {
1087                 *(psz_string+strlen(psz_string ) -1 ) = '\0';
1088             }
1089          }
1090          else
1091          {
1092              free( psz_string );
1093              return;
1094          }
1095     }
1096     /* Vout is not kept, so put that in the config */
1097     config_PutPsz( p_intf, "vout-filter", psz_string );
1098
1099     /* Try to set on the fly */
1100     p_vout = (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,
1101                                               FIND_ANYWHERE );
1102     if( p_vout )
1103     {
1104         var_SetString( p_vout, "vout-filter", psz_string );
1105         vlc_object_release( p_vout );
1106     }
1107
1108     free( psz_string );
1109 }
1110
1111
1112 static void ChangeFiltersString( intf_thread_t *p_intf,
1113                                  aout_instance_t * p_aout,
1114                                  char *psz_name, vlc_bool_t b_add )
1115 {
1116     char *psz_parser, *psz_string;
1117
1118     if( p_aout )
1119     {
1120         psz_string = var_GetString( p_aout, "audio-filter" );
1121     }
1122     else
1123     {
1124         psz_string = config_GetPsz( p_intf, "audio-filter" );
1125     }
1126
1127     if( !psz_string ) psz_string = strdup("");
1128
1129     psz_parser = strstr( psz_string, psz_name );
1130
1131     if( b_add )
1132     {
1133         if( !psz_parser )
1134         {
1135             psz_parser = psz_string;
1136             asprintf( &psz_string, (*psz_string) ? "%s,%s" : "%s%s",
1137                             psz_string, psz_name );
1138             free( psz_parser );
1139         }
1140         else
1141         {
1142             return;
1143         }
1144     }
1145     else
1146     {
1147         if( psz_parser )
1148         {
1149             memmove( psz_parser, psz_parser + strlen(psz_name) +
1150                             (*(psz_parser + strlen(psz_name)) == ',' ? 1 : 0 ),
1151                             strlen(psz_parser + strlen(psz_name)) + 1 );
1152
1153             if( *(psz_string+strlen(psz_string ) -1 ) == ',' )
1154             {
1155                 *(psz_string+strlen(psz_string ) -1 ) = '\0';
1156             }
1157          }
1158          else
1159          {
1160              free( psz_string );
1161              return;
1162          }
1163     }
1164
1165     if( p_aout == NULL )
1166     {
1167         config_PutPsz( p_intf, "audio-filter", psz_string );
1168     }
1169     else
1170     {
1171         var_SetString( p_aout, "audio-filter", psz_string );
1172         for( int i = 0; i < p_aout->i_nb_inputs; i++ )
1173         {
1174             p_aout->pp_inputs[i]->b_restart = VLC_TRUE;
1175         }
1176     }
1177     free( psz_string );
1178 }
1179
1180
1181 static int IntfBandsCallback( vlc_object_t *p_this, char const *psz_cmd,
1182                           vlc_value_t oldval, vlc_value_t newval, void *param )
1183 {
1184     ExtraPanel *p_panel = (ExtraPanel *)param;
1185
1186     p_panel->psz_bands = strdup( newval.psz_string );
1187     p_panel->b_update = VLC_TRUE;
1188
1189     return VLC_SUCCESS;
1190 }
1191
1192 static int IntfPreampCallback( vlc_object_t *p_this, char const *psz_cmd,
1193                           vlc_value_t oldval, vlc_value_t newval, void *param )
1194 {
1195     ExtraPanel *p_panel = (ExtraPanel *)param;
1196
1197     p_panel->f_preamp = newval.f_float;
1198     p_panel->b_update = VLC_TRUE;
1199
1200     return VLC_SUCCESS;
1201 }
1202
1203 #if 0
1204 /**********************************************************************
1205  * A small window to contain the extrapanel in its undocked state
1206  **********************************************************************/
1207 BEGIN_EVENT_TABLE(ExtraWindow, wxFrame)
1208 END_EVENT_TABLE()
1209
1210
1211 ExtraWindow::ExtraWindow( intf_thread_t *_p_intf, wxWindow *p_parent,
1212                           wxPanel *_extra_panel ):
1213        wxFrame( p_parent, -1, wxU(_("Extended controls")), wxDefaultPosition,
1214                  wxDefaultSize, wxDEFAULT_FRAME_STYLE )
1215 {
1216         fprintf(stderr,"Creating extrawindow\n");
1217     p_intf = _p_intf;
1218     SetIcon( *p_intf->p_sys->p_icon );
1219
1220     wxBoxSizer *window_sizer = new wxBoxSizer( wxVERTICAL );
1221     SetSizer( window_sizer );
1222 //    panel = new ExtraPanel(  p_intf, this );//_extra_panel;
1223
1224     panel = _extra_panel;
1225     window_sizer->Add( panel );
1226
1227     window_sizer->Layout();
1228     window_sizer->Fit( this );
1229
1230     Show();
1231 }
1232
1233 ExtraWindow::~ExtraWindow()
1234 {
1235     delete panel;
1236 }
1237 #endif