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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * generic_window.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: generic_window.hpp 9320 2004-11-14 17:32:25Z 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 GENERIC_WINDOW_HPP
  25. #define GENERIC_WINDOW_HPP
  26. #include "skin_common.hpp"
  27. #include "../utils/var_bool.hpp"
  28. class OSWindow;
  29. class EvtGeneric;
  30. class EvtFocus;
  31. class EvtLeave;
  32. class EvtMotion;
  33. class EvtMouse;
  34. class EvtKey;
  35. class EvtRefresh;
  36. class EvtScroll;
  37. class WindowManager;
  38. /// Generic window class
  39. class GenericWindow: public SkinObject, public Observer<VarBool>
  40. {
  41.     private:
  42.         friend class WindowManager;
  43.     public:
  44.         GenericWindow( intf_thread_t *pIntf, int xPos, int yPos,
  45.                        bool dragDrop, bool playOnDrop,
  46.                        GenericWindow *pParent = NULL );
  47.         virtual ~GenericWindow();
  48.         /// Methods to process OS events.
  49.         virtual void processEvent( EvtFocus &rEvtFocus ) {}
  50.         virtual void processEvent( EvtMotion &rEvtMotion ) {}
  51.         virtual void processEvent( EvtMouse &rEvtMouse ) {}
  52.         virtual void processEvent( EvtLeave &rEvtLeave ) {}
  53.         virtual void processEvent( EvtKey &rEvtKey ) {}
  54.         virtual void processEvent( EvtScroll &rEvtScroll ) {}
  55.         virtual void processEvent( EvtRefresh &rEvtRefresh );
  56.         /// Resize the window
  57.         virtual void resize( int width, int height );
  58.         /// Refresh an area of the window
  59.         virtual void refresh( int left, int top, int width, int height ) {}
  60.         /// Get the coordinates of the window
  61.         int getLeft() const { return m_left; }
  62.         int getTop() const { return m_top; }
  63.         int getWidth() const { return m_width; }
  64.         int getHeight() const { return m_height; }
  65.         /// Give access to the visibility variable
  66.         VarBool &getVisibleVar() { return m_varVisible; }
  67.         /// Window type, mainly useful when overloaded (for VoutWindow)
  68.         virtual string getType() const { return "Generic"; }
  69.     protected:
  70.         /// Get the OS window
  71.         OSWindow *getOSWindow() const { return m_pOsWindow; }
  72.         /// These methods do not need to be public since they are accessed
  73.         /// only by the window manager or by inheritant classes.
  74.         //@{
  75.         /// Show the window
  76.         virtual void show() const;
  77.         /// Hide the window
  78.         virtual void hide() const;
  79.         /// Move the window
  80.         virtual void move( int left, int top );
  81.         /// Bring the window on top
  82.         virtual void raise() const;
  83.         /// Set the opacity of the window (0 = transparent, 255 = opaque)
  84.         virtual void setOpacity( uint8_t value );
  85.         /// Toggle the window on top
  86.         virtual void toggleOnTop( bool onTop ) const;
  87.         //@}
  88.         /// Actually show the window
  89.         virtual void innerShow();
  90.         /// Actually hide the window
  91.         virtual void innerHide();
  92.     private:
  93.         /// Window position and size
  94.         int m_left, m_top, m_width, m_height;
  95.         /// OS specific implementation
  96.         OSWindow *m_pOsWindow;
  97.         /// Variable for the visibility of the window
  98.         mutable VarBoolImpl m_varVisible;
  99.         /// Method called when the observed variable is modified
  100.         virtual void onUpdate( Subject<VarBool> &rVariable );
  101. };
  102. #endif