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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * ctrl_resize.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: ctrl_resize.hpp 6964 2004-03-05 20:56:39Z ipkiss $
  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. #ifndef CTRL_RESIZE_HPP
  25. #define CTRL_RESIZE_HPP
  26. #include "ctrl_flat.hpp"
  27. #include "../commands/cmd_generic.hpp"
  28. #include "../utils/fsm.hpp"
  29. class GenericLayout;
  30. /// Control decorator for resizing windows
  31. class CtrlResize: public CtrlFlat
  32. {
  33.     public:
  34.         CtrlResize( intf_thread_t *pIntf, CtrlFlat &rCtrl,
  35.                     GenericLayout &rLayout, const UString &rHelp,
  36.                     VarBool *pVisible );
  37.         virtual ~CtrlResize() {}
  38.         /// Handle an event
  39.         virtual void handleEvent( EvtGeneric &rEvent );
  40.         /// Check whether coordinates are inside the decorated control
  41.         virtual bool mouseOver( int x, int y ) const;
  42.         /// Draw the control on the given graphics
  43.         virtual void draw( OSGraphics &rImage, int xDest, int yDest );
  44.         /// Set the position and the associated layout of the decorated control
  45.         virtual void setLayout( GenericLayout *pLayout,
  46.                                 const Position &rPosition );
  47.         /// Get the position of the decorated control in the layout, if any
  48.         virtual const Position *getPosition() const;
  49.         static void transOutStill( SkinObject *pCtrl );
  50.         static void transStillOut( SkinObject *pCtrl );
  51.         static void transStillStill( SkinObject *pCtrl );
  52.         static void transStillResize( SkinObject *pCtrl );
  53.         static void transResizeStill( SkinObject *pCtrl );
  54.         static void transResizeResize( SkinObject *pCtrl );
  55.     private:
  56.         FSM m_fsm;
  57.         /// Decorated CtrlFlat
  58.         CtrlFlat &m_rCtrl;
  59.         /// The layout resized by this control
  60.         GenericLayout &m_rLayout;
  61.         /// The last received event
  62.         EvtGeneric *m_pEvt;
  63.         /// Position of the click that started the resizing
  64.         int m_xPos, m_yPos;
  65.         /// Callbacks
  66.         Callback m_cmdOutStill;
  67.         Callback m_cmdStillOut;
  68.         Callback m_cmdStillStill;
  69.         Callback m_cmdStillResize;
  70.         Callback m_cmdResizeStill;
  71.         Callback m_cmdResizeResize;
  72.         // Size of the layout, before resizing
  73.         int m_width, m_height;
  74. };
  75. #endif