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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * ctrl_video.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 the VideoLAN team
  5.  * $Id: c152664e2a8b261f95d51fe9a64eae1d2531058f $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  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 CTRL_VIDEO_HPP
  24. #define CTRL_VIDEO_HPP
  25. #include "ctrl_generic.hpp"
  26. #include "../utils/position.hpp"
  27. #include "../src/vout_window.hpp"
  28. #include <vlc_vout.h>
  29. /// Control video
  30. class CtrlVideo: public CtrlGeneric, public Observer<VarBox>
  31. {
  32.     public:
  33.         CtrlVideo( intf_thread_t *pIntf, GenericLayout &rLayout,
  34.                    bool autoResize, const UString &rHelp, VarBool *pVisible );
  35.         virtual ~CtrlVideo();
  36.         /// Handle an event on the control
  37.         virtual void handleEvent( EvtGeneric &rEvent );
  38.         /// Check whether coordinates are inside the control
  39.         virtual bool mouseOver( int x, int y ) const;
  40.         /// Callback for layout resize
  41.         virtual void onResize();
  42.         /// Called when the Position is set
  43.         virtual void onPositionChange();
  44.         /// Draw the control on the given graphics
  45.         virtual void draw( OSGraphics &rImage, int xDest, int yDest );
  46.         /// Get the type of control (custom RTTI)
  47.         virtual string getType() const { return "video"; }
  48.         /// Method called when the vout size is updated
  49.         virtual void onUpdate( Subject<VarBox> &rVoutSize, void* );
  50.         /// Method called when visibility or ActiveLayout is updated
  51.         virtual void onUpdate( Subject<VarBool> &rVariable , void* );
  52.         // Attach a voutWindow to a Video Control
  53.         void attachVoutWindow( VoutWindow* pVoutWindow,
  54.                                int width = -1, int height = -1 );
  55.         // Detach a voutWindow from a Video Control
  56.         void detachVoutWindow( );
  57.         // Update the inner part of the Video Control
  58.         void resizeInnerVout( );
  59.         // Get TopWindow associated with the video control
  60.         virtual TopWindow* getWindow() { return CtrlGeneric::getWindow(); }
  61.         // Get the VoutWindow associated with the video control
  62.         virtual VoutWindow* getVoutWindow() { return m_pVoutWindow; }
  63.         /// Set the position and the associated layout of the control
  64.         virtual void setLayout( GenericLayout *pLayout,
  65.                                 const Position &rPosition );
  66.         // resize the video Control
  67.         virtual void resizeControl( int width, int height );
  68.         // Is this control useable (visibility requirements)
  69.         virtual bool isUseable() { return m_bIsUseable; }
  70.         // Is this control used
  71.         virtual bool isUsed() { return m_pVoutWindow ? true : false; }
  72.     private:
  73.         /// Associated layout
  74.         GenericLayout &m_rLayout;
  75.         /// Autoresize parameter
  76.         bool m_bAutoResize;
  77.         /// Difference between layout size and video size
  78.         int m_xShift, m_yShift;
  79.         /// Is the video Control useable
  80.         bool m_bIsUseable;
  81.         /// Vout window
  82.         VoutWindow *m_pVoutWindow;
  83. };
  84. #endif