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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * selector.cpp : Playlist source selector
  3.  ****************************************************************************
  4.  * Copyright (C) 2000-2005 the VideoLAN team
  5.  * $Id: 22cad94f6be000d629566cb1e2c59c47c34246f9 $
  6.  *
  7.  * Authors: Clément Stenac <zorglub@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. #ifdef HAVE_CONFIG_H
  24. # include "config.h"
  25. #endif
  26. #include "components/playlist/selector.hpp"
  27. #include "qt4.hpp"
  28. #include <QVBoxLayout>
  29. #include <QHeaderView>
  30. #include <QTreeView>
  31. PLSelector::PLSelector( QWidget *p, intf_thread_t *_p_intf ) : QWidget( p ), p_intf(_p_intf)
  32. {
  33.     model = new PLModel( THEPL, p_intf, THEPL->p_root_category, 1, this );
  34.     view = new QTreeView( 0 );
  35.     view->setIconSize( QSize( 24,24 ) );
  36.     view->setAlternatingRowColors( true );
  37.     view->setIndentation( 0 );
  38.     view->header()->hide();
  39.     view->setModel( model );
  40.     view->setAcceptDrops(true);
  41.     view->setDropIndicatorShown(true);
  42.     CONNECT( view, activated( const QModelIndex& ),
  43.              this, setSource( const QModelIndex& ) );
  44.     CONNECT( view, clicked( const QModelIndex& ),
  45.              this, setSource( const QModelIndex& ) );
  46.     QVBoxLayout *layout = new QVBoxLayout();
  47.     layout->setSpacing( 0 ); layout->setMargin( 0 );
  48.     layout->addWidget( view );
  49.     setLayout( layout );
  50.     /* select the first item */
  51.     view->setCurrentIndex( model->index( 0, 0, QModelIndex() ) );
  52. }
  53. void PLSelector::setSource( const QModelIndex &index )
  54. {
  55.     if( model )
  56.         emit activated( model->itemId( index ) );
  57. }
  58. PLSelector::~PLSelector()
  59. {
  60. }