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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * interface_widgets.hpp : Playlist Widgets
  3.  ****************************************************************************
  4.  * Copyright (C) 2006 the VideoLAN team
  5.  * $Id: ee3dad65dd4771193ae8fb8523c3508fda47cb5d $
  6.  *
  7.  * Authors: Clément Stenac <zorglub@videolan.org>
  8.  *          Jean-Baptiste Kempf <jb@videolan.org>
  9.  *          Rafaël Carré <funman@videolanorg>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24.  *****************************************************************************/
  25. #ifndef _PLAYLISTWIDGET_H_
  26. #define _PLAYLISTWIDGET_H_
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include "qt4.hpp"
  31. #include "dialogs_provider.hpp" /* Media Info from ArtLabel */
  32. #include "components/interface_widgets.hpp"
  33. #include <QSplitter>
  34. #include <QLabel>
  35. class PLSelector;
  36. class PLPanel;
  37. class QPushButton;
  38. class CoverArtLabel;
  39. class ArtLabel;
  40. class PlaylistWidget : public QSplitter
  41. {
  42.     Q_OBJECT;
  43. public:
  44.     PlaylistWidget( intf_thread_t *_p_i );
  45.     virtual ~PlaylistWidget();
  46. private:
  47.     PLSelector *selector;
  48.     PLPanel *rightPanel;
  49.     QPushButton *addButton;
  50.     ArtLabel *art;
  51. protected:
  52.     intf_thread_t *p_intf;
  53.     virtual void dropEvent( QDropEvent *);
  54.     virtual void dragEnterEvent( QDragEnterEvent * );
  55.     virtual void closeEvent( QCloseEvent * );
  56. signals:
  57.     void rootChanged( int );
  58. };
  59. class ArtLabel : public CoverArtLabel
  60. {
  61.     Q_OBJECT
  62. public:
  63.     ArtLabel( QWidget *parent, intf_thread_t *intf )
  64.             : CoverArtLabel( parent, intf ) {};
  65.     virtual void mouseDoubleClickEvent( QMouseEvent *event )
  66.     {
  67.         THEDP->mediaInfoDialog();
  68.         event->accept();
  69.     }
  70. };
  71. #endif