MessagesWindow.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:2k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * MessagesWindow.h
  3.  *****************************************************************************
  4.  * Copyright (C) 1999, 2000, 2001 VideoLAN
  5.  * $Id: MessagesWindow.h 8475 2004-08-20 15:49:09Z titer $
  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. #ifndef BEOS_MESSAGES_WINDOW_H
  24. #define BEOS_MESSAGES_WINDOW_H
  25. #include <Window.h>
  26. class MessagesView : public BTextView
  27. {
  28.     public:
  29.                              MessagesView( msg_subscription_t * _p_sub,
  30.                                            BRect rect, char * name, BRect textRect,
  31.                                            uint32 resizingMode, uint32 flags )
  32.                                  : BTextView( rect, name, textRect,
  33.                                               resizingMode, flags ),
  34.                                  p_sub(_p_sub)
  35.                              {
  36.                              }
  37.         virtual void         Pulse();
  38.         msg_subscription_t * p_sub;
  39.         BScrollBar         * fScrollBar;
  40. };
  41. class MessagesWindow : public BWindow
  42. {
  43.     public:
  44.                              MessagesWindow( intf_thread_t * p_intf,
  45.                                              BRect frame, const char * name );
  46.         virtual              ~MessagesWindow();
  47.         virtual void         FrameResized( float, float );
  48.         virtual bool         QuitRequested();
  49.         void                 ReallyQuit();
  50.         intf_thread_t      * p_intf;
  51.         msg_subscription_t * p_sub;
  52.         BView *              fBackgroundView;
  53.         MessagesView *       fMessagesView;
  54.         BScrollView *        fScrollView;
  55. };
  56. #endif    // BEOS_PREFERENCES_WINDOW_H