1 /*****************************************************************************
2 * InterfaceWindow.h: BeOS interface window class prototype
3 *****************************************************************************
4 * Copyright (C) 1999, 2000, 2001 the VideoLAN team
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>
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25 *****************************************************************************/
27 #ifndef BEOS_INTERFACE_WINDOW_H
28 #define BEOS_INTERFACE_WINDOW_H
34 class MediaControlView;
39 class PreferencesWindow;
42 class CDMenu : public BMenu
45 CDMenu( const char* name );
48 virtual void AttachedToWindow();
51 int GetCD( const char* directory );
54 class LanguageMenu : public BMenu
57 LanguageMenu( intf_thread_t * p_intf,
58 const char * psz_name,
59 char * psz_variable );
60 virtual ~LanguageMenu();
62 virtual void AttachedToWindow();
65 intf_thread_t * p_intf;
69 class TitleMenu : public BMenu
72 TitleMenu( const char* name, intf_thread_t *p_interface );
75 virtual void AttachedToWindow();
77 intf_thread_t *p_intf;
80 class ChapterMenu : public BMenu
83 ChapterMenu( const char* name, intf_thread_t *p_interface );
84 virtual ~ChapterMenu();
86 virtual void AttachedToWindow();
88 intf_thread_t *p_intf;
92 class InterfaceWindow : public BWindow
95 InterfaceWindow( intf_thread_t * p_intf,
98 virtual ~InterfaceWindow();
101 virtual void FrameResized( float width, float height );
102 virtual void MessageReceived( BMessage* message );
103 virtual bool QuitRequested();
106 void UpdateInterface();
107 void UpdatePlaylist();
109 bool IsStopped() const;
111 MediaControlView* p_mediaControl;
112 MessagesWindow* fMessagesWindow;
115 void _SetMenusEnabled( bool hasFile,
116 bool hasChapters = false,
117 bool hasTitles = false );
118 void _UpdateSpeedMenu( int rate );
119 void _ShowFilePanel( uint32 command,
120 const char* windowTitle );
121 void _RestoreSettings();
122 void _StoreSettings();
124 intf_thread_t * p_intf;
125 input_thread_t * p_input;
126 playlist_t * p_playlist;
127 es_descriptor_t * p_spu_es;
128 bool b_playlist_update;
130 BFilePanel* fFilePanel;
132 PlayListWindow* fPlaylistWindow;
134 PreferencesWindow* fPreferencesWindow;
136 BMenuItem* fGotoMenuMI;
137 BMenuItem* fNextTitleMI;
138 BMenuItem* fPrevTitleMI;
139 BMenuItem* fNextChapterMI;
140 BMenuItem* fPrevChapterMI;
142 BMenuItem* fHeighthMI;
143 BMenuItem* fQuarterMI;
145 BMenuItem* fNormalMI;
148 BMenuItem* fHeightMI;
150 BMenu* fNavigationMenu;
153 BMenu* fLanguageMenu;
154 BMenu* fSubtitlesMenu;
157 bigtime_t fLastUpdateTime;
158 BMessage* fSettings; // we keep the message arround
159 // for forward compatibility
163 // some global support functions
164 status_t load_settings( BMessage* message,
165 const char* fileName,
166 const char* folder = NULL );
168 status_t save_settings( BMessage* message,
169 const char* fileName,
170 const char* folder = NULL );
173 #endif // BEOS_INTERFACE_WINDOW_H