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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * MessagesWindow.cpp: beos interface
  3.  *****************************************************************************
  4.  * Copyright (C) 1999, 2000, 2001 VideoLAN
  5.  * $Id: MessagesWindow.cpp 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. /* BeOS headers */
  24. #include <InterfaceKit.h>
  25. #include <SupportKit.h>
  26. /* VLC headers */
  27. #include <vlc/vlc.h>
  28. #include <vlc/intf.h>
  29. /* BeOS module headers */
  30. #include "InterfaceWindow.h"
  31. #include "MessagesWindow.h"
  32. /*****************************************************************************
  33.  * MessagesView::Pulse
  34.  *****************************************************************************/
  35. void MessagesView::Pulse()
  36. {
  37.     bool isScrolling = false;
  38.     if( fScrollBar->LockLooper() )
  39.     {
  40.         float min, max;
  41.         fScrollBar->GetRange( &min, &max );
  42.         if( fScrollBar->Value() != max )
  43.             isScrolling = true;
  44.         fScrollBar->UnlockLooper();
  45.     }
  46.     int i_start, oldLength;
  47.     char * psz_module_type = NULL;
  48.     rgb_color red = { 200, 0, 0 };
  49.     rgb_color gray = { 150, 150, 150 };
  50.     rgb_color green = { 0, 150, 0 };
  51.     rgb_color orange = { 230, 180, 00 };
  52.     rgb_color color;
  53.     vlc_mutex_lock( p_sub->p_lock );
  54.     int i_stop = *p_sub->pi_stop;
  55.     vlc_mutex_unlock( p_sub->p_lock );
  56.     if( p_sub->i_start != i_stop )
  57.     {
  58.         for( i_start = p_sub->i_start;
  59.              i_start != i_stop;
  60.                  i_start = (i_start+1) % VLC_MSG_QSIZE )
  61.         {
  62.             /* Add message */
  63.             switch( p_sub->p_msg[i_start].i_type )
  64.             {
  65.                 case VLC_MSG_INFO: color = green; break;
  66.                 case VLC_MSG_WARN: color = orange; break;
  67.                 case VLC_MSG_ERR: color = red; break;
  68.                 case VLC_MSG_DBG: color = gray; break;
  69.             }
  70.             switch( p_sub->p_msg[i_start].i_object_type )
  71.             {
  72.                 case VLC_OBJECT_ROOT: psz_module_type = "root"; break;
  73.                 case VLC_OBJECT_VLC: psz_module_type = "vlc"; break;
  74.                 case VLC_OBJECT_MODULE: psz_module_type = "module"; break;
  75.                 case VLC_OBJECT_INTF: psz_module_type = "interface"; break;
  76.                 case VLC_OBJECT_PLAYLIST: psz_module_type = "playlist"; break;
  77.                 case VLC_OBJECT_ITEM: psz_module_type = "item"; break;
  78.                 case VLC_OBJECT_INPUT: psz_module_type = "input"; break;
  79.                 case VLC_OBJECT_DECODER: psz_module_type = "decoder"; break;
  80.                 case VLC_OBJECT_VOUT: psz_module_type = "video output"; break;
  81.                 case VLC_OBJECT_AOUT: psz_module_type = "audio output"; break;
  82.                 case VLC_OBJECT_SOUT: psz_module_type = "stream output"; break;
  83.             }
  84.             if( LockLooper() )
  85.             {
  86.                 oldLength = TextLength();
  87.                 BString string;
  88.                 string << p_sub->p_msg[i_start].psz_module
  89.                     << " " << psz_module_type << " : "
  90.                     << p_sub->p_msg[i_start].psz_msg << "n";
  91.                 Insert( TextLength(), string.String(), strlen( string.String() ) );
  92.                 SetFontAndColor( oldLength, TextLength(), NULL, 0, &color );
  93.                 Draw( Bounds() );
  94.                 UnlockLooper();
  95.             }
  96.         }
  97.         vlc_mutex_lock( p_sub->p_lock );
  98.         p_sub->i_start = i_start;
  99.         vlc_mutex_unlock( p_sub->p_lock );
  100.     }
  101.     /* Scroll at the end unless the is user is scrolling or selecting something */
  102.     int32 start, end;
  103.     GetSelection( &start, &end );
  104.     if( !isScrolling && start == end && fScrollBar->LockLooper() )
  105.     {
  106.         float min, max;
  107.         fScrollBar->GetRange( &min, &max );
  108.         fScrollBar->SetValue( max );
  109.         fScrollBar->UnlockLooper();
  110.     }
  111.     BTextView::Pulse();
  112. }
  113. /*****************************************************************************
  114.  * MessagesWindow::MessagesWindow
  115.  *****************************************************************************/
  116. MessagesWindow::MessagesWindow( intf_thread_t * _p_intf,
  117.                                 BRect frame, const char * name )
  118.     : BWindow( frame, name, B_FLOATING_WINDOW_LOOK, B_NORMAL_WINDOW_FEEL,
  119.                B_NOT_ZOOMABLE ),
  120.     p_intf(_p_intf)
  121. {
  122.     SetSizeLimits( 400, 2000, 200, 2000 );
  123.     p_sub = msg_Subscribe( p_intf );
  124.     
  125.     BRect rect, textRect;
  126.     rect = Bounds();
  127.     rect.right -= B_V_SCROLL_BAR_WIDTH;
  128.     textRect = rect;
  129.     textRect.InsetBy( 5, 5 );
  130.     fMessagesView = new MessagesView( p_sub,
  131.                                       rect, "messages", textRect,
  132.                                       B_FOLLOW_ALL, B_WILL_DRAW );
  133.     fMessagesView->MakeEditable( false );
  134.     fMessagesView->SetStylable( true );
  135.     fScrollView = new BScrollView( "scrollview", fMessagesView, B_WILL_DRAW,
  136.                                    B_FOLLOW_ALL, false, true );
  137.     fMessagesView->fScrollBar = fScrollView->ScrollBar( B_VERTICAL );
  138.     AddChild( fScrollView );
  139.     
  140.     /* start window thread in hidden state */
  141.     Hide();
  142.     Show();
  143. }
  144. /*****************************************************************************
  145.  * MessagesWindow::~MessagesWindow
  146.  *****************************************************************************/
  147. MessagesWindow::~MessagesWindow()
  148. {
  149.      msg_Unsubscribe( p_intf, p_sub );
  150. }
  151. /*****************************************************************************
  152.  * MessagesWindow::FrameResized
  153.  *****************************************************************************/
  154. void MessagesWindow::FrameResized( float width, float height )
  155. {
  156.     BWindow::FrameResized( width, height );
  157.     BRect rect = fMessagesView->Bounds();
  158.     rect.InsetBy( 5, 5 );
  159.     fMessagesView->SetTextRect( rect );
  160. }
  161. /*****************************************************************************
  162.  * MessagesWindow::QuitRequested
  163.  *****************************************************************************/
  164. bool MessagesWindow::QuitRequested()
  165. {
  166.     Hide();
  167.     return false;
  168. }
  169. /*****************************************************************************
  170.  * MessagesWindow::ReallyQuit
  171.  *****************************************************************************/
  172. void MessagesWindow::ReallyQuit()
  173. {
  174.     Lock();
  175.     Hide();
  176.     Quit();
  177. }