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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * info.cpp: the KInfoWindow class
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2003 VideoLAN
  5.  * $Id: info.cpp 7227 2004-04-01 19:20:21Z gbazin $
  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 "info.h"
  24. #include "common.h"
  25. #include <qtextview.h>
  26. #include <qlayout.h>
  27. #include <qlabel.h>
  28. #include <qvbox.h>
  29. KInfoWindow::KInfoWindow( intf_thread_t * p_intf,  input_thread_t *p_input ) :
  30.     KDialogBase( Tabbed, _( "Messages" ), Ok, Ok, 0, 0, false)
  31. {
  32. //    clearWFlags(~0);
  33. //    setWFlags(WType_TopLevel);
  34.     setSizeGripEnabled(true);
  35.     int i, j;
  36.     vlc_mutex_lock( &p_input->p_item->lock );
  37.     for ( i = 0; i < p_input->p_item->i_categories; i++ )
  38.     {
  39.         info_category_t *p_category =
  40.            p_input->p_item->pp_categories[i];
  41.         QFrame *page = addPage( QString(p_category->psz_name) );
  42.         QVBoxLayout *toplayout = new QVBoxLayout( page);
  43.         QVBox *category_table = new QVBox(page);
  44.         toplayout->addWidget(category_table);
  45.         toplayout->setResizeMode(QLayout::FreeResize);
  46.         toplayout->addStretch(10);
  47.         category_table->setSpacing(spacingHint());
  48.         for ( j = 0; j < p_category->i_infos; j++ )
  49.         {
  50.             info_t *p_info = p_category->pp_infos[j];
  51.             QHBox *hb = new QHBox( category_table );
  52.             new QLabel( QString(p_info->psz_name) + ":", hb );
  53.             new QLabel( p_info->psz_value, hb );
  54.         }
  55.     }
  56.     vlc_mutex_unlock( &p_input->p_item->lock );
  57.     resize(300,400);
  58.     show();
  59. }
  60. KInfoWindow::~KInfoWindow()
  61. {
  62.     ;
  63. }