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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * ctrl_resize.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 7e5965563e603d08eebbf92f930d661068b99d44 $
  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_resize.hpp"
  25. #include "../events/evt_generic.hpp"
  26. #include "../events/evt_mouse.hpp"
  27. #include "../events/evt_motion.hpp"
  28. #include "../src/generic_layout.hpp"
  29. #include "../src/os_factory.hpp"
  30. #include "../utils/position.hpp"
  31. #include "../commands/async_queue.hpp"
  32. #include "../commands/cmd_resize.hpp"
  33. CtrlResize::CtrlResize( intf_thread_t *pIntf, WindowManager &rWindowManager,
  34.                         CtrlFlat &rCtrl, GenericLayout &rLayout,
  35.                         const UString &rHelp, VarBool *pVisible,
  36.                         WindowManager::Direction_t direction ):
  37.     CtrlFlat( pIntf, rHelp, pVisible ), m_fsm( pIntf ),
  38.     m_rWindowManager( rWindowManager ), m_rCtrl( rCtrl ),
  39.     m_rLayout( rLayout ), m_direction( direction ),  m_cmdOutStill( this ),
  40.     m_cmdStillOut( this ),
  41.     m_cmdStillStill( this ),
  42.     m_cmdStillResize( this ),
  43.     m_cmdResizeStill( this ),
  44.     m_cmdResizeResize( this )
  45. {
  46.     m_pEvt = NULL;
  47.     m_xPos = 0;
  48.     m_yPos = 0;
  49.     // States
  50.     m_fsm.addState( "out" );
  51.     m_fsm.addState( "still" );
  52.     m_fsm.addState( "resize" );
  53.     // Transitions
  54.     m_fsm.addTransition( "out", "enter", "still", &m_cmdOutStill );
  55.     m_fsm.addTransition( "still", "leave", "out", &m_cmdStillOut );
  56.     m_fsm.addTransition( "still", "motion", "still", &m_cmdStillStill );
  57.     m_fsm.addTransition( "resize", "mouse:left:up:none", "still",
  58.                          &m_cmdResizeStill );
  59.     m_fsm.addTransition( "still", "mouse:left:down:none", "resize",
  60.                          &m_cmdStillResize );
  61.     m_fsm.addTransition( "resize", "motion", "resize", &m_cmdResizeResize );
  62.     m_fsm.setState( "still" );
  63. }
  64. bool CtrlResize::mouseOver( int x, int y ) const
  65. {
  66.     return m_rCtrl.mouseOver( x, y );
  67. }
  68. void CtrlResize::draw( OSGraphics &rImage, int xDest, int yDest )
  69. {
  70.     m_rCtrl.draw( rImage, xDest, yDest );
  71. }
  72. void CtrlResize::setLayout( GenericLayout *pLayout, const Position &rPosition )
  73. {
  74.     CtrlGeneric::setLayout( pLayout, rPosition );
  75.     // Set the layout of the decorated control as well
  76.     m_rCtrl.setLayout( pLayout, rPosition );
  77. }
  78. const Position *CtrlResize::getPosition() const
  79. {
  80.     return m_rCtrl.getPosition();
  81. }
  82. void CtrlResize::onResize()
  83. {
  84.     m_rCtrl.onResize();
  85. }
  86. void CtrlResize::handleEvent( EvtGeneric &rEvent )
  87. {
  88.     m_pEvt = &rEvent;
  89.     m_fsm.handleTransition( rEvent.getAsString() );
  90.     // Transmit the event to the decorated control
  91.     // XXX: Is it really a good idea?
  92.     m_rCtrl.handleEvent( rEvent );
  93. }
  94. void CtrlResize::changeCursor( WindowManager::Direction_t direction ) const
  95. {
  96.     OSFactory *pOsFactory = OSFactory::instance( getIntf() );
  97.     if( direction == WindowManager::kResizeSE )
  98.         pOsFactory->changeCursor( OSFactory::kResizeNWSE );
  99.     else if( direction == WindowManager::kResizeS )
  100.         pOsFactory->changeCursor( OSFactory::kResizeNS );
  101.     else if( direction == WindowManager::kResizeE )
  102.         pOsFactory->changeCursor( OSFactory::kResizeWE );
  103.     else if( direction == WindowManager::kNone )
  104.         pOsFactory->changeCursor( OSFactory::kDefaultArrow );
  105. }
  106. void CtrlResize::CmdOutStill::execute()
  107. {
  108.     m_pParent->changeCursor( m_pParent->m_direction );
  109. }
  110. void CtrlResize::CmdStillOut::execute()
  111. {
  112.     m_pParent->changeCursor( WindowManager::kNone );
  113. }
  114. void CtrlResize::CmdStillStill::execute()
  115. {
  116.     m_pParent->changeCursor( m_pParent->m_direction );
  117. }
  118. void CtrlResize::CmdStillResize::execute()
  119. {
  120.     EvtMouse *pEvtMouse = (EvtMouse*)m_pParent->m_pEvt;
  121.     // Set the cursor
  122.     m_pParent->changeCursor( m_pParent->m_direction );
  123.     m_pParent->m_xPos = pEvtMouse->getXPos();
  124.     m_pParent->m_yPos = pEvtMouse->getYPos();
  125.     m_pParent->captureMouse();
  126.     m_pParent->m_width = m_pParent->m_rLayout.getWidth();
  127.     m_pParent->m_height = m_pParent->m_rLayout.getHeight();
  128.     m_pParent->m_rWindowManager.startResize( m_pParent->m_rLayout,
  129.                                              m_pParent->m_direction);
  130. }
  131. void CtrlResize::CmdResizeStill::execute()
  132. {
  133.     // Set the cursor
  134.     m_pParent->changeCursor( m_pParent->m_direction );
  135.     m_pParent->releaseMouse();
  136.     m_pParent->m_rWindowManager.stopResize();
  137. }
  138. void CtrlResize::CmdResizeResize::execute()
  139. {
  140.     EvtMotion *pEvtMotion = (EvtMotion*)m_pParent->m_pEvt;
  141.     // Set the cursor
  142.     m_pParent->changeCursor( m_pParent->m_direction );
  143.     int newWidth = m_pParent->m_width;
  144.     newWidth += pEvtMotion->getXPos() - m_pParent->m_xPos;
  145.     int newHeight = m_pParent->m_height;
  146.     newHeight += pEvtMotion->getYPos() - m_pParent->m_yPos;
  147.     // Create a resize command, instead of calling the window manager directly.
  148.     // Thanks to this trick, the duplicate resizing commands will be trashed
  149.     // in the asynchronous queue, thus making resizing faster
  150.     CmdGeneric *pCmd = new CmdResize( m_pParent->getIntf(),
  151.                                       m_pParent->m_rWindowManager,
  152.                                       m_pParent->m_rLayout,
  153.                                       newWidth, newHeight );
  154.     // Push the command in the asynchronous command queue
  155.     AsyncQueue *pQueue = AsyncQueue::instance( getIntf() );
  156.     pQueue->push( CmdGenericPtr( pCmd ) );
  157. }