]> git.sesse.net Git - vlc/blob - modules/gui/beos/PlayListWindow.h
* AudioOutput.cpp: fixed a segfault
[vlc] / modules / gui / beos / PlayListWindow.h
1 /*****************************************************************************
2  * PlayListWindow.h: BeOS interface window class prototype
3  *****************************************************************************
4  * Copyright (C) 1999, 2000, 2001 VideoLAN
5  * $Id: PlayListWindow.h,v 1.5 2002/11/27 05:36:41 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_PLAY_LIST_WINDOW_H
28 #define BEOS_PLAY_LIST_WINDOW_H
29
30 #include <Window.h>
31
32 class BListView;
33 class CDMenu;
34 class InterfaceWindow;
35 class PlaylistView;
36
37 class PlayListWindow : public BWindow
38 {
39  public:
40                                                                 PlayListWindow(BRect frame,
41                                                                                            const char* name,
42                                                                                            InterfaceWindow* mainWindow,
43                                                                                            intf_thread_t *p_interface );
44         virtual                                         ~PlayListWindow();
45
46                                                                 // BWindow
47         virtual bool                            QuitRequested();
48         virtual void                            MessageReceived(BMessage *message);
49         virtual void                            FrameResized(float width, float height);
50
51                                                                 // PlayListWindow
52                         void                            ReallyQuit();
53                         void                            UpdatePlaylist( bool rebuild = false );
54
55  private:       
56                         PlaylistView *      fListView;
57                         BView *             fBackgroundView;
58                         BMenuBar *          fMenuBar;
59                         InterfaceWindow *   fMainWindow;
60                         
61                         intf_thread_t *     p_intf;
62                         VlcWrapper *   p_wrapper;
63 };
64
65 #endif  // BEOS_PLAY_LIST_WINDOW_H
66