ctrl_move.cpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:4k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * ctrl_move.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: ctrl_move.cpp 7073 2004-03-14 14:33:12Z asmax $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #include "ctrl_move.hpp"
  25. #include "../events/evt_generic.hpp"
  26. #include "../events/evt_mouse.hpp"
  27. #include "../events/evt_motion.hpp"
  28. #include "../src/top_window.hpp"
  29. #include "../src/window_manager.hpp"
  30. #include "../utils/position.hpp"
  31. CtrlMove::CtrlMove( intf_thread_t *pIntf, WindowManager &rWindowManager,
  32.                     CtrlFlat &rCtrl, TopWindow &rWindow,
  33.                     const UString &rHelp, VarBool *pVisible ):
  34.     CtrlFlat( pIntf, rHelp, pVisible ), m_fsm( pIntf ),
  35.     m_rWindowManager( rWindowManager ),
  36.     m_rCtrl( rCtrl ), m_rWindow( rWindow ),
  37.     m_cmdMovingMoving( this, &transMovingMoving ),
  38.     m_cmdStillMoving( this, &transStillMoving ),
  39.     m_cmdMovingStill( this, &transMovingStill )
  40. {
  41.     m_pEvt = NULL;
  42.     m_xPos = 0;
  43.     m_yPos = 0;
  44.     // States
  45.     m_fsm.addState( "moving" );
  46.     m_fsm.addState( "still" );
  47.     // Transitions
  48.     m_fsm.addTransition( "moving", "mouse:left:up:none", "still",
  49.                          &m_cmdMovingStill );
  50.     m_fsm.addTransition( "still", "mouse:left:down:none", "moving",
  51.                          &m_cmdStillMoving );
  52.     m_fsm.addTransition( "moving", "motion", "moving", &m_cmdMovingMoving );
  53.     m_fsm.setState( "still" );
  54. }
  55. bool CtrlMove::mouseOver( int x, int y ) const
  56. {
  57.     return m_rCtrl.mouseOver( x, y );
  58. }
  59. void CtrlMove::draw( OSGraphics &rImage, int xDest, int yDest )
  60. {
  61.     m_rCtrl.draw( rImage, xDest, yDest );
  62. }
  63. void CtrlMove::setLayout( GenericLayout *pLayout, const Position &rPosition )
  64. {
  65.     CtrlGeneric::setLayout( pLayout, rPosition );
  66.     // Set the layout of the decorated control as well
  67.     m_rCtrl.setLayout( pLayout, rPosition );
  68. }
  69. const Position *CtrlMove::getPosition() const
  70. {
  71.     return m_rCtrl.getPosition();
  72. }
  73. void CtrlMove::handleEvent( EvtGeneric &rEvent )
  74. {
  75.     m_pEvt = &rEvent;
  76.     m_fsm.handleTransition( rEvent.getAsString() );
  77.     // Transmit the event to the decorated control
  78.     // XXX: Is it really a good idea?
  79.     m_rCtrl.handleEvent( rEvent );
  80. }
  81. void CtrlMove::transStillMoving( SkinObject *pCtrl )
  82. {
  83.     CtrlMove *pThis = (CtrlMove*)pCtrl;
  84.     EvtMouse *pEvtMouse = (EvtMouse*)pThis->m_pEvt;
  85.     pThis->m_xPos = pEvtMouse->getXPos();
  86.     pThis->m_yPos = pEvtMouse->getYPos();
  87.     pThis->captureMouse();
  88.     pThis->m_rWindowManager.startMove( pThis->m_rWindow );
  89. }
  90. void CtrlMove::transMovingMoving( SkinObject *pCtrl )
  91. {
  92.     CtrlMove *pThis = (CtrlMove*)pCtrl;
  93.     EvtMotion *pEvtMotion = (EvtMotion*)pThis->m_pEvt;
  94.     int xNewLeft = pEvtMotion->getXPos() - pThis->m_xPos +
  95.                    pThis->m_rWindow.getLeft();
  96.     int yNewTop = pEvtMotion->getYPos() - pThis->m_yPos +
  97.                   pThis->m_rWindow.getTop();
  98.     pThis->m_rWindowManager.move( pThis->m_rWindow, xNewLeft, yNewTop );
  99. }
  100. void CtrlMove::transMovingStill( SkinObject *pCtrl )
  101. {
  102.     CtrlMove *pThis = (CtrlMove*)pCtrl;
  103.     pThis->releaseMouse();
  104.     pThis->m_rWindowManager.stopMove();
  105. }