1 /*****************************************************************************
2 * InterfaceWindow.h: BeOS interface window class prototype
3 *****************************************************************************
4 * Copyright (C) 1999, 2000, 2001 VideoLAN
5 * $Id: InterfaceWindow.h,v 1.14 2002/07/23 00:39:16 sam Exp $
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>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
24 *****************************************************************************/
25 class MediaControlView;
28 class CDMenu : public BMenu
31 CDMenu(const char *name);
33 void AttachedToWindow(void);
35 int GetCD(const char *directory);
38 class LanguageMenu : public BMenu
41 LanguageMenu(const char *name, int menu_kind,
42 intf_thread_t *p_interface);
44 void AttachedToWindow(void);
46 intf_thread_t *p_intf;
51 class InterfaceWindow : public BWindow
54 InterfaceWindow( BRect frame, const char *name,
55 intf_thread_t *p_interface );
58 // standard window member
59 virtual bool QuitRequested();
60 virtual void MessageReceived(BMessage *message);
61 void updateInterface();
63 MediaControlView *p_mediaControl;
66 intf_thread_t *p_intf;
67 bool b_empty_playlist;
68 BFilePanel *file_panel;
69 PlayListWindow* playlist_window;