]> git.sesse.net Git - vlc/blob - modules/gui/beos/PreferencesWindow.h
* all: added support for a52 in PES private stream, but untested.
[vlc] / modules / gui / beos / PreferencesWindow.h
1 /*****************************************************************************
2  * PreferencesWindow.h
3  *****************************************************************************
4  * Copyright (C) 1999, 2000, 2001 VideoLAN
5  * $Id: PreferencesWindow.h,v 1.17 2003/05/25 17:21:36 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 <InterfaceKit.h>
28
29 #define PREFS_WINDOW_WIDTH   700
30 #define PREFS_WINDOW_HEIGHT  400
31 #define PREFS_ITEM_SELECTED  'pris'
32 #define PREFS_DEFAULTS       'prde'
33 #define PREFS_APPLY          'prap'
34 #define PREFS_SAVE           'prsa'
35
36 class StringItemWithView : public BStringItem
37 {
38   public:
39                             StringItemWithView( const char * text )
40                                 : BStringItem( text )
41                             {
42                                 fConfigBox = NULL;
43                                 fConfigScroll = NULL;
44                                 fConfigView = NULL;
45                                 fText = strdup( text );
46                             }
47
48     /* Here we store the config BBox associated to this module */
49     BBox *                  fConfigBox;
50     BScrollView *           fConfigScroll;
51     BView *                 fConfigView;
52     char *                  fText;
53 };
54
55 class ConfigTextControl : public BTextControl
56 {
57   public:
58                             ConfigTextControl( BRect rect, char * label,
59                                                int type, char * configName )
60                                 : BTextControl( rect, "ConfigTextControl", label,
61                                                 "", new BMessage() )
62                             {
63                                 fConfigType = type;
64                                 fConfigName = strdup( configName );
65                             }
66
67     int                     fConfigType;
68     char *                  fConfigName;
69 };
70
71 class ConfigCheckBox : public BCheckBox
72 {
73     public:
74                             ConfigCheckBox( BRect rect, char * label,
75                                             char * configName )
76                                : BCheckBox( rect, "ConfigCheckBox", label,
77                                             new BMessage() )
78                             {
79                                 fConfigName = strdup( configName );
80                             }
81
82     char *                  fConfigName;
83 };
84
85 class ConfigMenuField : public BMenuField
86 {
87     public:
88                             ConfigMenuField( BRect rect, char * label,
89                                              BPopUpMenu * popUp, char * configName )
90                                : BMenuField( rect, "ConfigMenuField", label,
91                                              popUp, new BMessage() )
92                             {
93                                 fConfigName = strdup( configName );
94                             }
95
96     char *                  fConfigName;
97 };
98
99 class ConfigSlider : public BSlider
100 {
101     public:
102                             ConfigSlider( BRect rect, char * label, int type,
103                                           int min, int max, char * configName )
104                                : BSlider( rect, "ConfigSlider", label,
105                                           new BMessage(), min, max )
106                             {
107                                 fConfigType = type;
108                                 fConfigName = strdup( configName );
109                             }
110                             
111     int                     fConfigType;
112     char * fConfigName;
113 };
114
115 class PreferencesWindow : public BWindow
116 {
117   public:
118                             PreferencesWindow( intf_thread_t * p_intf,
119                                                BRect frame,
120                                                const char * name );
121     virtual                 ~PreferencesWindow();
122
123     virtual bool            QuitRequested();
124     virtual void            MessageReceived(BMessage* message);
125     virtual void            FrameResized( float, float );
126
127             void            Update();
128             void            UpdateScrollBar();
129             void            ApplyChanges( bool doIt );
130             void            SaveChanges();
131
132             void            ReallyQuit();
133
134   private:
135     void                    BuildConfigView( StringItemWithView * stringItem,
136                                              module_config_t ** pp_item,
137                                              bool stop_after_category );
138
139     BView *                 fPrefsView;
140     BOutlineListView *      fOutline;
141     BView *                 fDummyView;
142     BScrollView *           fConfigScroll;
143     StringItemWithView *    fCurrent;
144
145     intf_thread_t *         p_intf;
146 };
147
148 #endif    // BEOS_PREFERENCES_WINDOW_H