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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * playlist_item.hpp : Item for a playlist tree
  3.  ****************************************************************************
  4.  * Copyright (C) 2006 the VideoLAN team
  5.  * $Id: 26ce13c5896f43ed103757b7caf31b1befe809df $
  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. #ifndef _PLAYLIST_ITEM_H_
  24. #define _PLAYLIST_ITEM_H_
  25. #ifdef HAVE_CONFIG_H
  26. # include "config.h"
  27. #endif
  28. #include "components/playlist/playlist_model.hpp"
  29. #include <QString>
  30. #include <QList>
  31. class QSettings;
  32. class PLModel;
  33. class PLItem
  34. {
  35.     friend class PLModel;
  36. public:
  37.     PLItem( int, int, PLItem *parent , PLModel * );
  38.     PLItem( playlist_item_t *, PLItem *parent, PLModel * );
  39.     PLItem( playlist_item_t *, QSettings *, PLModel * );
  40.     ~PLItem();
  41.     int row() const;
  42.     void insertChild( PLItem *, int p, bool signal = true );
  43.     void appendChild( PLItem *item, bool signal = true )
  44.     {
  45.         insertChild( item, children.count(), signal );
  46.     };
  47.     void remove( PLItem *removed );
  48.     PLItem *child( int row ) { return children.value( row ); };
  49.     int childCount() const { return children.count(); };
  50.     PLItem *parent() { return parentItem; };
  51.     QString columnString( int col ) { return item_col_strings.value( col ); };
  52.     void update( playlist_item_t *, bool );
  53. protected:
  54.     QList<PLItem*> children;
  55.     QList<QString> item_col_strings;
  56.     bool b_current;
  57.     int i_type;
  58.     int i_id;
  59.     int i_input_id;
  60.     int i_showflags;
  61. private:
  62.     void init( int, int, PLItem *, PLModel *, QSettings * );
  63.     void updateColumnHeaders();
  64.     PLItem *parentItem;
  65.     PLModel *model;
  66. };
  67. #endif