MessagesWindow.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:6k
源码类别:

midi

开发平台:

Unix_Linux

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