]> git.sesse.net Git - vlc/blob - modules/gui/beos/MessagesWindow.h
contrib: fix link flags for live555 on WinCE
[vlc] / modules / gui / beos / MessagesWindow.h
1 /*****************************************************************************
2  * MessagesWindow.h
3  *****************************************************************************
4  * Copyright (C) 1999, 2000, 2001 the VideoLAN team
5  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef BEOS_MESSAGES_WINDOW_H
25 #define BEOS_MESSAGES_WINDOW_H
26
27 #include <Window.h>
28
29 class MessagesView : public BTextView
30 {
31     public:
32                              MessagesView( msg_subscription_t * _p_sub,
33                                            BRect rect, char * name, BRect textRect,
34                                            uint32 resizingMode, uint32 flags )
35                                  : BTextView( rect, name, textRect,
36                                               resizingMode, flags ),
37                                  p_sub(_p_sub)
38                              {
39                              }
40         virtual void         Pulse();
41
42         msg_subscription_t * p_sub;
43         BScrollBar         * fScrollBar;
44 };
45
46 class MessagesWindow : public BWindow
47 {
48     public:
49                              MessagesWindow( intf_thread_t * p_intf,
50                                              BRect frame, const char * name );
51         virtual              ~MessagesWindow();
52         virtual void         FrameResized( float, float );
53         virtual bool         QuitRequested();
54
55         void                 ReallyQuit();
56
57         intf_thread_t      * p_intf;
58         msg_subscription_t * p_sub;
59
60         BView *              fBackgroundView;
61         MessagesView *       fMessagesView;
62         BScrollView *        fScrollView;
63 };
64
65 #endif    // BEOS_PREFERENCES_WINDOW_H
66