]> git.sesse.net Git - vlc/blob - modules/gui/beos/InterfaceWindow.h
* ALL: more intensive use of the VLCWrapper class
[vlc] / modules / gui / beos / InterfaceWindow.h
1 /*****************************************************************************
2  * InterfaceWindow.h: BeOS interface window class prototype
3  *****************************************************************************
4  * Copyright (C) 1999, 2000, 2001 VideoLAN
5  * $Id: InterfaceWindow.h,v 1.5 2002/11/26 01:06:08 titer Exp $
6  *
7  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
8  *          Tony Castley <tcastley@mail.powerup.com.au>
9  *          Richard Shepherd <richard@rshepherd.demon.co.uk>
10  *          Stephan Aßmus <stippi@yellowbites.com>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
25  *****************************************************************************/
26
27 #ifndef BEOS_INTERFACE_WINDOW_H
28 #define BEOS_INTERFACE_WINDOW_H
29
30 #include <Menu.h>
31 #include <Window.h>
32
33 class BMenuBar;
34 class MediaControlView;
35 class PlayListWindow;
36 class BFilePanel;
37 class PreferencesWindow;
38
39 class CDMenu : public BMenu
40 {
41  public:
42                                                         CDMenu( const char* name );
43         virtual                                 ~CDMenu();
44
45         virtual void                    AttachedToWindow();
46
47  private:
48         int                                             GetCD( const char* directory );
49 };
50
51 class LanguageMenu : public BMenu
52 {
53  public:
54                                                         LanguageMenu( const char* name,
55                                                                                   int menu_kind,
56                                                                                   intf_thread_t* p_interface );
57         virtual                                 ~LanguageMenu();
58
59         virtual void                    AttachedToWindow();
60
61  private:
62                         void                    _GetChannels();
63
64         intf_thread_t*                  p_intf;
65         int                                             kind;
66 };
67
68 class TitleMenu : public BMenu
69 {
70  public:
71                                                         TitleMenu( const char* name, intf_thread_t  *p_interface );
72         virtual                                 ~TitleMenu();
73
74         virtual void                    AttachedToWindow();
75         
76         intf_thread_t  *p_intf;
77 };
78
79 class ChapterMenu : public BMenu
80 {
81  public:
82                                                         ChapterMenu( const char* name, intf_thread_t  *p_interface );
83         virtual                                 ~ChapterMenu();
84
85         virtual void                    AttachedToWindow();
86
87         intf_thread_t  *p_intf;
88 };
89
90
91 class InterfaceWindow : public BWindow
92 {
93  public:
94                                                         InterfaceWindow( BRect frame,
95                                                                                          const char* name,
96                                                                                          intf_thread_t* p_interface );
97         virtual                                 ~InterfaceWindow();
98
99                                                         // BWindow
100         virtual void                    FrameResized( float width, float height );
101         virtual void                    MessageReceived( BMessage* message );
102         virtual bool                    QuitRequested();
103
104                                                         // InterfaceWindow
105                         void                    updateInterface();
106                         bool                    IsStopped() const;
107             
108         MediaControlView*               p_mediaControl;
109
110  private:       
111                         void                    _UpdatePlaylist();
112                         void                    _SetMenusEnabled( bool hasFile,
113                                                                                           bool hasChapters = false,
114                                                                                           bool hasTitles = false );
115                         void                    _UpdateSpeedMenu( int rate );
116                         void                    _InputStreamChanged();
117                         status_t                _LoadSettings( BMessage* message,
118                                                                                    const char* fileName,
119                                                                                    const char* subFolder = NULL );
120                         status_t                _SaveSettings( BMessage* message,
121                                                                                    const char* fileName,
122                                                                                    const char* subFolder = NULL );
123                         void                    _RestoreSettings();
124                         void                    _StoreSettings();
125
126         intf_thread_t*                  p_intf;
127         es_descriptor_t*                p_spu_es;
128
129         bool                                    fPlaylistIsEmpty;
130         BFilePanel*                             fFilePanel;
131         PlayListWindow*                 fPlaylistWindow;
132         PreferencesWindow*              fPreferencesWindow;
133         BMenuBar*                               fMenuBar;
134         BMenuItem*                              fNextTitleMI;
135         BMenuItem*                              fPrevTitleMI;
136         BMenuItem*                              fNextChapterMI;
137         BMenuItem*                              fPrevChapterMI;
138         BMenuItem*                              fOnTopMI;
139         BMenuItem*                              fSlowerMI;
140         BMenuItem*                              fNormalMI;
141         BMenuItem*                              fFasterMI;
142         BMenuItem*                              fPreferencesMI;
143         BMenu*                                  fAudioMenu;
144         BMenu*                                  fNavigationMenu;
145         BMenu*                                  fTitleMenu;
146         BMenu*                                  fChapterMenu;
147         BMenu*                                  fLanguageMenu;
148         BMenu*                                  fSubtitlesMenu;
149         BMenu*                                  fSpeedMenu;
150         BMenu*                                  fSettingsMenu;
151         bigtime_t                               fLastUpdateTime;
152         BMessage*                               fSettings;      // we keep the message arround
153                                                                                 // for forward compatibility
154         
155         Intf_VLCWrapper *  p_wrapper;
156 };
157
158 #endif  // BEOS_INTERFACE_WINDOW_H