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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * messages.cpp: the KMessagesWindow class
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2003 VideoLAN
  5.  * $Id: messages.cpp 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Author: Sigmund Augdal <sigmunau@idi.ntnu.no>
  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. #include "messages.h"
  24. #include <qtextview.h>
  25. #include <qlayout.h>
  26. #include <qlabel.h>
  27. #include <qvbox.h>
  28. KMessagesWindow::KMessagesWindow( intf_thread_t * p_intf,  msg_subscription_t *p_msg ) :
  29.     KDialogBase( Plain, _( "Messages" ), Ok, Ok, 0, 0, false)
  30. {
  31. //    clearWFlags(~0);
  32. //    setWFlags(WType_TopLevel);
  33.     setSizeGripEnabled(true);
  34.     this->p_intf = p_intf;
  35.     this->p_msg = p_msg;
  36.     QFrame *page = plainPage();
  37.     QVBoxLayout *toplayout = new QVBoxLayout( page);
  38. //    QScrollView *sv = new QScrollView(page);
  39. //    sv->setResizePolicy(QScrollView::AutoOneFit);
  40. //    sv->setFrameStyle(QScrollView::NoFrame);
  41. //    toplayout->addWidget(sv);
  42. //    QVBox *category_table = new QVBox(sv->viewport());
  43. //    sv->addChild(category_table);
  44. //    toplayout->addStretch(10);
  45.     QVBox *category_table = new QVBox(page);
  46.     toplayout->addWidget(category_table);
  47.     toplayout->setResizeMode(QLayout::FreeResize);
  48.     category_table->setSpacing(spacingHint());
  49.     resize(300,400);
  50.     new QLabel( _("Messages:"), category_table );
  51.     text = new QTextView( category_table );
  52.     text->setPaper( QBrush( black ) );
  53. //    clearWFlags(WStyle_DialogBorder|WStyle_NoBorder);
  54. //    setWFlags(WStyle_NormalBorder|WStyle_Customize);
  55. //    connect(this, SIGNAL(okClicked()), this, SLOT(accept()));
  56. }
  57. KMessagesWindow::~KMessagesWindow()
  58. {
  59.     ;
  60. }
  61. void KMessagesWindow::update()
  62. {
  63.     int i_stop, i_start;
  64.     /* Update the log window */
  65.     vlc_mutex_lock( p_msg->p_lock );
  66.     i_stop = *p_msg->pi_stop;
  67.     vlc_mutex_unlock( p_msg->p_lock );
  68.     if( p_msg->i_start != i_stop )
  69.     {
  70.         static const char * ppsz_type[4] = { ": ", " error: ", " warning: ",
  71.                                              " debug: " };
  72.         static const char * ppsz_color[4] = {
  73.             "<font color=white>",
  74.             "<font color=red>",
  75.             "<font color=yellow>",
  76.             "<font color=gray>"
  77.         };
  78.         for( i_start = p_msg->i_start;
  79.              i_start != i_stop;
  80.              i_start = (i_start+1) % VLC_MSG_QSIZE )
  81.         {
  82.             text->append( QString("<font color=white>") +
  83.                           p_msg->p_msg[i_start].psz_module +
  84.                           ppsz_type[p_msg->p_msg[i_start].i_type] +
  85.                           "</font>" +
  86.                           ppsz_color[p_msg->p_msg[i_start].i_type] +
  87.                           p_msg->p_msg[i_start].psz_msg + "</font>" );
  88.         }
  89.         vlc_mutex_lock( p_msg->p_lock );
  90.         p_msg->i_start = i_start;
  91.         vlc_mutex_unlock( p_msg->p_lock );
  92.     }
  93. }