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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * Controller_widget.cpp : Controller Widget for the controllers
  3.  ****************************************************************************
  4.  * Copyright (C) 2006-2008 the VideoLAN team
  5.  * $Id: 44e5deefa2bba5688cff69c65096f53e8767f0a0 $
  6.  *
  7.  * Authors: Jean-Baptiste Kempf <jb@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 _CONTROLLER_WIDGET_H_
  24. #define _CONTROLLER_WIDGET_H_
  25. #ifdef HAVE_CONFIG_H
  26. # include "config.h"
  27. #endif
  28. #include "qt4.hpp"
  29. #include <QWidget>
  30. #include <QFrame>
  31. #include <QToolButton>
  32. class QLabel;
  33. class QSpinBox;
  34. class QAbstractSlider;
  35. /**
  36.  * SPECIAL Widgets that are a bit more than just a ToolButton
  37.  * and have an icon/behaviour that changes depending on the context:
  38.  * - playButton
  39.  * - A->B Button
  40.  * - Teletext group buttons
  41.  * - Sound Widget group
  42.  **/
  43. class PlayButton : public QToolButton
  44. {
  45.     Q_OBJECT
  46. private slots:
  47.     void updateButton( bool );
  48. };
  49. class AtoB_Button : public QToolButton
  50. {
  51.     Q_OBJECT
  52. private slots:
  53.     void setIcons( bool, bool );
  54. };
  55. #define VOLUME_MAX 200
  56. class SoundWidget : public QWidget
  57. {
  58.     Q_OBJECT
  59. public:
  60.     SoundWidget( QWidget *parent, intf_thread_t  *_p_i, bool,
  61.                  bool b_special = false );
  62.     virtual ~SoundWidget();
  63. private:
  64.     intf_thread_t       *p_intf;
  65.     QLabel              *volMuteLabel;
  66.     QAbstractSlider     *volumeSlider;
  67.     QFrame              *volumeControlWidget;
  68.     bool                 b_my_volume;
  69.     QMenu               *volumeMenu;
  70.     virtual bool eventFilter( QObject *obj, QEvent *e );
  71. protected slots:
  72.     void updateVolume( int );
  73.     void updateVolume( void );
  74.     void showVolumeMenu( QPoint pos );
  75. };
  76. #endif