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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * top_window.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: top_window.hpp 7259 2004-04-03 11:30:26Z 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 TOP_WINDOW_HPP
  25. #define TOP_WINDOW_HPP
  26. #include "generic_window.hpp"
  27. #include "../utils/pointer.hpp"
  28. #include <list>
  29. class OSWindow;
  30. class OSGraphics;
  31. class GenericLayout;
  32. class CtrlGeneric;
  33. class WindowManager;
  34. /// Class to handle top-level windows
  35. class TopWindow: public GenericWindow
  36. {
  37.     private:
  38.         friend class WindowManager;
  39.     public:
  40.         TopWindow( intf_thread_t *pIntf, int xPos, int yPos,
  41.                    WindowManager &rWindowManager,
  42.                    bool dragDrop, bool playOnDrop );
  43.         virtual ~TopWindow();
  44.         /// Methods to process OS events.
  45.         virtual void processEvent( EvtFocus &rEvtFocus );
  46.         virtual void processEvent( EvtMotion &rEvtMotion );
  47.         virtual void processEvent( EvtMouse &rEvtMouse );
  48.         virtual void processEvent( EvtLeave &rEvtLeave );
  49.         virtual void processEvent( EvtKey &rEvtKey );
  50.         virtual void processEvent( EvtScroll &rEvtScroll );
  51.         /// Forward an event to a control
  52.         virtual void forwardEvent( EvtGeneric &rEvt, CtrlGeneric &rCtrl );
  53.         // Refresh an area of the window
  54.         virtual void refresh( int left, int top, int width, int height );
  55.         /// Get the active layout
  56.         virtual const GenericLayout& getActiveLayout() const;
  57.         /// Update the shape of the window from the active layout
  58.         virtual void updateShape();
  59.         /// Called by a control that wants to capture the mouse
  60.         virtual void onControlCapture( const CtrlGeneric &rCtrl );
  61.         /// Called by a control that wants to release the mouse
  62.         virtual void onControlRelease( const CtrlGeneric &rCtrl );
  63.         /// Called by a control when its tooltip changed
  64.         virtual void onTooltipChange( const CtrlGeneric &rCtrl );
  65.     protected:
  66.         /// Actually show the window
  67.         virtual void innerShow();
  68.     private:
  69.         /// Change the active layout
  70.         virtual void setActiveLayout( GenericLayout *pLayout );
  71.         /// Window manager
  72.         WindowManager &m_rWindowManager;
  73.         /// Current active layout of the window
  74.         GenericLayout *m_pActiveLayout;
  75.         /// Last control on which the mouse was over
  76.         CtrlGeneric *m_pLastHitControl;
  77.         /// Control that has captured the mouse
  78.         CtrlGeneric *m_pCapturingControl;
  79.         /// Control that has the focus
  80.         CtrlGeneric *m_pFocusControl;
  81.         /// Current key modifier (also used for mouse)
  82.         int m_currModifier;
  83.         /// Find the uppest control in the layout hit by the mouse, and send
  84.         /// it an enter event if needed
  85.         CtrlGeneric *findHitControl( int xPos, int yPos );
  86.         /// Update the lastHitControl pointer and send a leave event to the
  87.         /// right control
  88.         void setLastHit( CtrlGeneric *pNewHitControl );
  89. };
  90. typedef CountedPtr<TopWindow> TopWindowPtr;
  91. #endif