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

midi

开发平台:

Unix_Linux

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