]> git.sesse.net Git - vlc/blob - modules/gui/beos/PreferencesWindow.cpp
Added a window to see vlc messages.
[vlc] / modules / gui / beos / PreferencesWindow.cpp
1 /*****************************************************************************
2  * PreferencesWindow.cpp: beos interface
3  *****************************************************************************
4  * Copyright (C) 1999, 2000, 2001 VideoLAN
5  * $Id: PreferencesWindow.cpp,v 1.9 2003/01/25 20:15:41 titer Exp $
6  *
7  * Authors: Eric Petit <titer@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 /* BeOS headers */
25 #include <InterfaceKit.h>
26
27 /* VLC headers */
28 #include <vlc/vlc.h>
29 #include <vlc/intf.h>
30
31 /* BeOS module headers */
32 #include "VlcWrapper.h"
33 #include "MsgVals.h"
34 #include "PreferencesWindow.h"
35
36
37 /*****************************************************************************
38  * Preferences::PreferencesWindow
39  *****************************************************************************/
40 PreferencesWindow::PreferencesWindow( intf_thread_t * p_intf,
41                                       BRect frame, const char * name )
42     : BWindow( frame, name, B_FLOATING_WINDOW_LOOK, B_NORMAL_WINDOW_FEEL,
43                B_NOT_ZOOMABLE | B_NOT_RESIZABLE | B_NOT_CLOSABLE )
44 {
45     this->p_intf = p_intf;
46     BRect rect;
47
48     /* "background" view */
49     fPrefsView = new BView( Bounds(), NULL, B_FOLLOW_ALL, B_WILL_DRAW );
50     fPrefsView->SetViewColor( ui_color( B_PANEL_BACKGROUND_COLOR ) );
51     AddChild( fPrefsView );
52
53     /* add the tabs */
54     rect = Bounds();
55     rect.top += 10;
56     rect.bottom -= 65;
57     fTabView = new BTabView( rect, "preferences view" );
58     fTabView->SetViewColor( ui_color( B_PANEL_BACKGROUND_COLOR ) );
59     
60     fGeneralView = new BView( fTabView->Bounds(), NULL, B_FOLLOW_ALL, B_WILL_DRAW );
61     fGeneralView->SetViewColor( ui_color( B_PANEL_BACKGROUND_COLOR ) );
62     fAdjustView = new BView( fTabView->Bounds(), NULL, B_FOLLOW_ALL, B_WILL_DRAW );
63     fAdjustView->SetViewColor( ui_color( B_PANEL_BACKGROUND_COLOR ) );
64     
65     fGeneralTab = new BTab();
66     fTabView->AddTab( fGeneralView, fGeneralTab );
67     fGeneralTab->SetLabel( "General" );
68     
69     fAdjustTab = new BTab();
70     fTabView->AddTab( fAdjustView, fAdjustTab );
71     fAdjustTab->SetLabel( "Adjust" );
72     
73     /* fills the tabs */
74     /* ffmpeg tab */
75     rect = fGeneralView->Bounds();
76     rect.InsetBy( 10, 10 );
77     rect.bottom = rect.top + 10;
78     fDvdOldCheck = new BCheckBox( rect, "dvdold", "Do not use DVD menus",
79                                   new BMessage( DVDOLD_CHECK ) );
80     fGeneralView->AddChild( fDvdOldCheck );
81     
82     rect.top = rect.bottom + 20;
83     rect.bottom = rect.top + 30;
84     fPpSlider = new BSlider( rect, "post-processing", "MPEG4 post-processing level",
85                                new BMessage( SLIDER_UPDATE ),
86                                0, 6, B_TRIANGLE_THUMB,
87                                B_FOLLOW_LEFT, B_WILL_DRAW ); 
88     fPpSlider->SetHashMarks(B_HASH_MARKS_BOTTOM);
89     fPpSlider->SetHashMarkCount( 7 );
90     fPpSlider->SetLimitLabels( "None", "Maximum" );
91     fPpSlider->SetValue( config_GetInt( p_intf, "ffmpeg-pp-q" ) );
92     fGeneralView->AddChild( fPpSlider );
93     
94     
95     /* adjust tab */
96     rect = fAdjustView->Bounds();
97     rect.InsetBy( 10, 10 );
98     rect.bottom = rect.top + 30;
99     fBrightnessSlider = new BSlider( rect, "brightness", "Brightness",
100                                        new BMessage( SLIDER_UPDATE ),
101                                        0, 200, B_TRIANGLE_THUMB,
102                                        B_FOLLOW_LEFT, B_WILL_DRAW );
103     fBrightnessSlider->SetValue( 100 * config_GetFloat( p_intf, "brightness" ) );
104     rect.OffsetBy( 0, 40 );
105     fContrastSlider = new BSlider( rect, "contrast", "Contrast",
106                                      new BMessage( SLIDER_UPDATE ),
107                                      0, 200, B_TRIANGLE_THUMB,
108                                      B_FOLLOW_LEFT, B_WILL_DRAW );
109     fContrastSlider->SetValue( 100 * config_GetFloat( p_intf, "contrast" ) );
110     rect.OffsetBy( 0, 40 );
111     fHueSlider = new BSlider( rect, "hue", "Hue",
112                                 new BMessage( SLIDER_UPDATE ),
113                                 0, 360, B_TRIANGLE_THUMB,
114                                 B_FOLLOW_LEFT, B_WILL_DRAW );
115     fHueSlider->SetValue( config_GetInt( p_intf, "hue" ) );
116     rect.OffsetBy( 0, 40 );
117     fSaturationSlider = new BSlider( rect, "saturation", "Saturation",
118                                        new BMessage( SLIDER_UPDATE ),
119                                        0, 200, B_TRIANGLE_THUMB,
120                                        B_FOLLOW_LEFT, B_WILL_DRAW );
121     fSaturationSlider->SetValue( 100 * config_GetFloat( p_intf, "saturation" ) );
122     fAdjustView->AddChild( fBrightnessSlider );
123     fAdjustView->AddChild( fContrastSlider );
124     fAdjustView->AddChild( fHueSlider );
125     fAdjustView->AddChild( fSaturationSlider );
126     
127     fPrefsView->AddChild( fTabView );
128
129     /* restart message */
130     rect = fPrefsView->Bounds();
131     rect.bottom -= 43;
132     rect.top = rect.bottom - 10;
133     fRestartString = new BStringView( rect, NULL,
134         "Warning: changing settings after starting playback may have no effect." );
135     fRestartString->SetAlignment( B_ALIGN_CENTER );
136     fPrefsView->AddChild( fRestartString );
137
138     /* buttons */
139     BButton *button;
140     rect = Bounds();
141     rect.InsetBy( 10, 10 );
142     rect.top = rect.bottom - 25;
143     rect.left = rect.right - 80;
144     button = new BButton( rect, NULL, "OK", new BMessage( PREFS_OK ) );
145     fPrefsView->AddChild( button );
146
147     rect.OffsetBy( -90, 0 );
148     button = new BButton( rect, NULL, "Save", new BMessage( PREFS_SAVE ) );
149     fPrefsView->AddChild( button );
150     
151     rect.OffsetBy( -90, 0 );
152     button = new BButton( rect, NULL, "Defaults", new BMessage( PREFS_DEFAULTS ) );
153     fPrefsView->AddChild( button );
154     
155     // start window thread in hidden state
156     Hide();
157     Show();
158 }
159
160 /*****************************************************************************
161  * PreferencesWindow::~PreferencesWindow
162  *****************************************************************************/
163 PreferencesWindow::~PreferencesWindow()
164 {
165 }
166
167 /*****************************************************************************
168  * PreferencesWindow::MessageReceived
169  *****************************************************************************/
170 void PreferencesWindow::MessageReceived( BMessage * p_message )
171 {
172     switch ( p_message->what )
173     {
174         case DVDOLD_CHECK:
175         case SLIDER_UPDATE:
176         {
177             ApplyChanges();
178             break;
179         }
180         case PREFS_DEFAULTS:
181         {
182             SetDefaults();
183             ApplyChanges();
184             break;
185         }
186         case PREFS_SAVE:
187         {
188             config_SaveConfigFile( p_intf, "main" );
189             config_SaveConfigFile( p_intf, "adjust" );
190             config_SaveConfigFile( p_intf, "ffmpeg" );
191             break;
192         }
193         case PREFS_OK:
194         {
195             Hide();
196             break;
197         }
198         default:
199             BWindow::MessageReceived( p_message );
200             break;
201     }
202 }
203
204 /*****************************************************************************
205  * PreferencesWindow::ReallyQuit
206  *****************************************************************************/
207 void PreferencesWindow::ReallyQuit()
208 {
209     Hide();
210     Quit();
211 }
212
213 /*****************************************************************************
214  * PreferencesWindow::SetDefaults
215  *****************************************************************************/
216 void PreferencesWindow::SetDefaults()
217 {
218     fDvdOldCheck->SetValue( 0 );
219     fPpSlider->SetValue( 0 );
220     fBrightnessSlider->SetValue( 100 );
221     fContrastSlider->SetValue( 100 );
222     fHueSlider->SetValue( 0 );
223     fSaturationSlider->SetValue( 100 );
224 }
225
226 /*****************************************************************************
227  * PreferencesWindow::ApplyChanges
228  *****************************************************************************/
229 void PreferencesWindow::ApplyChanges()
230 {
231     if( fDvdOldCheck->Value() )
232         p_intf->p_sys->b_dvdold = true;
233     else
234         p_intf->p_sys->b_dvdold = false;
235     
236     config_PutInt( p_intf, "ffmpeg-pp-q", fPpSlider->Value() );
237     config_PutFloat( p_intf, "brightness",
238                      (float)fBrightnessSlider->Value() / 100 );
239     config_PutFloat( p_intf, "contrast",
240                      (float)fContrastSlider->Value() / 100 );
241     config_PutInt( p_intf, "hue", fHueSlider->Value() );
242     config_PutFloat( p_intf, "saturation",
243                      (float)fSaturationSlider->Value() / 100 );
244
245     if( config_GetFloat( p_intf, "brightness" ) != 1 ||
246         config_GetFloat( p_intf, "contrast" ) != 1 ||
247         config_GetInt( p_intf, "hue" ) != 0 ||
248         config_GetFloat( p_intf, "saturation" ) != 1 )
249     {
250         config_PutPsz( p_intf, "filter", "adjust" );
251     }
252     else
253     {
254         config_PutPsz( p_intf, "filter", NULL );
255     }
256 }