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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * ctrl_move.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: e890d16e47a5cea427fce8a805807d687d3776d9 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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 ),
  38.     m_cmdStillMoving( this ),
  39.     m_cmdMovingStill( this )
  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::onResize()
  74. {
  75.     m_rCtrl.onResize();
  76. }
  77. void CtrlMove::handleEvent( EvtGeneric &rEvent )
  78. {
  79.     m_pEvt = &rEvent;
  80.     m_fsm.handleTransition( rEvent.getAsString() );
  81.     // Transmit the event to the decorated control
  82.     // XXX: Is it really a good idea?
  83.     m_rCtrl.handleEvent( rEvent );
  84. }
  85. void CtrlMove::CmdStillMoving::execute()
  86. {
  87.     EvtMouse *pEvtMouse = (EvtMouse*)m_pParent->m_pEvt;
  88.     m_pParent->m_xPos = pEvtMouse->getXPos();
  89.     m_pParent->m_yPos = pEvtMouse->getYPos();
  90.     m_pParent->captureMouse();
  91.     m_pParent->m_rWindowManager.startMove( m_pParent->m_rWindow );
  92. }
  93. void CtrlMove::CmdMovingMoving::execute()
  94. {
  95.     EvtMotion *pEvtMotion = (EvtMotion*)m_pParent->m_pEvt;
  96.     int xNewLeft = pEvtMotion->getXPos() - m_pParent->m_xPos +
  97.                    m_pParent->m_rWindow.getLeft();
  98.     int yNewTop = pEvtMotion->getYPos() - m_pParent->m_yPos +
  99.                   m_pParent->m_rWindow.getTop();
  100.     m_pParent->m_rWindowManager.move( m_pParent->m_rWindow, xNewLeft, yNewTop );
  101. }
  102. void CtrlMove::CmdMovingStill::execute()
  103. {
  104.     m_pParent->releaseMouse();
  105.     m_pParent->m_rWindowManager.stopMove();
  106. }