]> git.sesse.net Git - vlc/blob - modules/gui/beos/PreferencesWindow.h
Disabled DVD menus by default for 0.5.0
[vlc] / modules / gui / beos / PreferencesWindow.h
1 /*****************************************************************************
2  * PreferencesWindow.h
3  *****************************************************************************
4  * Copyright (C) 1999, 2000, 2001 VideoLAN
5  * $Id: PreferencesWindow.h,v 1.8 2003/01/27 10:29:22 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 #ifndef BEOS_PREFERENCES_WINDOW_H
25 #define BEOS_PREFERENCES_WINDOW_H
26
27 #include <Window.h>
28
29 #define PREFS_WINDOW_WIDTH   400
30 #define PREFS_WINDOW_HEIGHT  280
31
32 #define PREFS_OK       'prok'
33 #define PREFS_SAVE     'prsa'
34 #define PREFS_DEFAULTS 'prde'
35 #define SLIDER_UPDATE  'slup'
36 #define DVDMENUS_CHECK 'dvme'
37
38 class PreferencesWindow : public BWindow
39 {
40     public:
41                          PreferencesWindow( intf_thread_t * p_intf,
42                                             BRect frame,
43                                             const char * name );
44         virtual          ~PreferencesWindow();
45         virtual void     MessageReceived(BMessage *message);
46         void             ReallyQuit();
47
48     private:
49         void             SetDefaults();
50         void             ApplyChanges();
51         BView *          fPrefsView;
52         BTabView *       fTabView;
53         BView *          fGeneralView;
54         BView *          fAdjustView;
55         BTab *           fGeneralTab;
56         BTab *           fAdjustTab;
57         BCheckBox *      fDvdMenusCheck;
58         BSlider *        fPpSlider;
59         BSlider *        fContrastSlider;
60         BSlider *        fBrightnessSlider;
61         BSlider *        fHueSlider;
62         BSlider *        fSaturationSlider;
63         BStringView *    fRestartString;
64
65         intf_thread_t *  p_intf;
66 };
67
68 #endif    // BEOS_PREFERENCES_WINDOW_H
69