]> git.sesse.net Git - vlc/blob - modules/gui/beos/MessagesWindow.h
e74c23ada54927e2374bec4e7e7de22a7f7babf7
[vlc] / modules / gui / beos / MessagesWindow.h
1 /*****************************************************************************
2  * MessagesWindow.h
3  *****************************************************************************
4  * Copyright (C) 1999, 2000, 2001 VideoLAN
5  * $Id: MessagesWindow.h,v 1.2 2003/01/26 08:28:20 titer Exp $
6  *
7  * Authors: Eric Petit <titer@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef BEOS_MESSAGES_WINDOW_H
25 #define BEOS_MESSAGES_WINDOW_H
26
27 #include <Window.h>
28
29 class MessagesWindow : public BWindow
30 {
31     public:
32                              MessagesWindow( intf_thread_t * p_intf,
33                                              BRect frame, const char * name );
34         virtual              ~MessagesWindow();
35         virtual void         FrameResized( float, float );
36         virtual bool         QuitRequested();
37         
38         void                 ReallyQuit();
39         void                 UpdateMessages();
40
41     private:
42         intf_thread_t *      p_intf;
43         msg_subscription_t * p_sub;
44         
45         BView *              fBackgroundView;
46         BTextView *          fMessagesView;
47         BScrollView *        fScrollView;
48         BScrollBar *         fScrollBar;
49 };
50
51 #endif  // BEOS_PREFERENCES_WINDOW_H
52