]> git.sesse.net Git - vlc/blob - modules/gui/beos/PlayListWindow.h
2dc047150046afa1f1abb7149e26b8b7ccf6f106
[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.2 2002/09/30 18:30:27 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                                                                                            playlist_t* playlist,
43                                                                                            InterfaceWindow* mainWindow );
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
57                         playlist_t*                     fPlaylist;
58                         PlaylistView*           fListView;
59                         BView*                          fBackgroundView;
60                         BMenuBar*                       fMenuBar;
61                         InterfaceWindow*        fMainWindow;
62 };
63
64 #endif  // BEOS_PLAY_LIST_WINDOW_H
65