]> git.sesse.net Git - vlc/blob - modules/gui/beos/PreferencesWindow.h
modules/gui/beos/*: Partial fix for Preferences resizing
[vlc] / modules / gui / beos / PreferencesWindow.h
1 /*****************************************************************************
2  * PreferencesWindow.h
3  *****************************************************************************
4  * Copyright (C) 1999, 2000, 2001 VideoLAN
5  * $Id: PreferencesWindow.h,v 1.11 2003/05/05 13:06:02 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   600
30 #define PREFS_WINDOW_HEIGHT  400
31 #define PREFS_ITEM_SELECTED  'pris'
32 #define PREFS_OK             'prok'
33 #define PREFS_REVERT         'prre'
34 #define PREFS_APPLY          'prap'
35 #define TEXT_HEIGHT 16
36
37 class ConfigView : public BView
38 {
39   public:
40                             ConfigView( BRect frame, const char * name,
41                                         uint32 resizingMode, uint32 flags );
42
43     /* When we create the view, we have to give it an arbitrary size because
44        it will be the size of the BScrollView. That's why we keep the real size
45        in fRealBounds so we can have a correct BScrollBar later */
46     BRect                   fRealBounds;
47 };
48
49 class StringItemWithView : public BStringItem
50 {
51   public:
52                             StringItemWithView( const char * text );
53
54     /* Here we store the ConfigView associated to this module */
55     ConfigView *            fConfigView;
56 };
57
58 class PreferencesWindow : public BWindow
59 {
60   public:
61                             PreferencesWindow( intf_thread_t * p_intf,
62                                                BRect frame,
63                                                const char * name );
64     virtual                 ~PreferencesWindow();
65
66     virtual bool            QuitRequested();
67     virtual void            MessageReceived(BMessage* message);
68     virtual void            FrameResized( float, float );
69
70             void            Update();
71             void            UpdateScrollBar();
72             void            ApplyChanges( bool doIt );
73
74             void            ReallyQuit();
75
76   private:
77     BView *                 fPrefsView;
78     BOutlineListView *      fOutline;
79     BView *                 fDummyView;
80     BScrollView *           fConfigScroll;
81
82     intf_thread_t *         p_intf;
83 };
84
85 #endif    // BEOS_PREFERENCES_WINDOW_H