]> git.sesse.net Git - vlc/blob - modules/gui/beos/PreferencesWindow.h
65300622566fea0c27bfcf8f15394398c8aafc34
[vlc] / modules / gui / beos / PreferencesWindow.h
1 /*****************************************************************************
2  * PreferencesWindow.h
3  *****************************************************************************
4  * Copyright (C) 1999, 2000, 2001 VideoLAN
5  * $Id: PreferencesWindow.h,v 1.14 2003/05/13 14:11:33 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   600
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 #define TEXT_HEIGHT 16
36
37 class StringItemWithView : public BStringItem
38 {
39   public:
40                             StringItemWithView( const char * text )
41                                 : BStringItem( text ) {}
42
43     /* Here we store the config BView associated to this module */
44     BView *                 fConfigView;
45 };
46
47 class ConfigTextControl : public BTextControl
48 {
49   public:
50                             ConfigTextControl( BRect rect, char * label,
51                                                int type, char * configName )
52                                 : BTextControl( rect, "ConfigTextControl", label,
53                                                 "", new BMessage() )
54                             {
55                                 fConfigType = type;
56                                 fConfigName = strdup( configName );
57                             }
58
59     int                     fConfigType;
60     char *                  fConfigName;
61 };
62
63 class ConfigCheckBox : public BCheckBox
64 {
65     public:
66                             ConfigCheckBox( BRect rect, char * label,
67                                             char * configName )
68                                : BCheckBox( rect, "ConfigCheckBox", label,
69                                             new BMessage() )
70                             {
71                                 fConfigName = strdup( configName );
72                             }
73
74     char *                  fConfigName;
75 };
76
77 class ConfigMenuField : public BMenuField
78 {
79     public:
80                             ConfigMenuField( BRect rect, char * label,
81                                              BPopUpMenu * popUp, char * configName )
82                                : BMenuField( rect, "ConfigMenuField", label,
83                                              popUp, new BMessage() )
84                             {
85                                 fConfigName = strdup( configName );
86                             }
87
88     char *                  fConfigName;
89 };
90
91 class PreferencesWindow : public BWindow
92 {
93   public:
94                             PreferencesWindow( intf_thread_t * p_intf,
95                                                BRect frame,
96                                                const char * name );
97     virtual                 ~PreferencesWindow();
98
99     virtual bool            QuitRequested();
100     virtual void            MessageReceived(BMessage* message);
101     virtual void            FrameResized( float, float );
102
103             void            Update();
104             void            UpdateScrollBar();
105             void            ApplyChanges( bool doIt );
106             void            SaveChanges();
107
108             void            ReallyQuit();
109
110   private:
111     BView *                 fPrefsView;
112     BOutlineListView *      fOutline;
113     BView *                 fDummyView;
114     BScrollView *           fConfigScroll;
115
116     intf_thread_t *         p_intf;
117 };
118
119 #endif    // BEOS_PREFERENCES_WINDOW_H