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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * window_manager.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 4cdca61d166533b005f73f803b3e429b55e7fd5c $
  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 WINDOW_MANAGER_HPP
  25. #define WINDOW_MANAGER_HPP
  26. #include "skin_common.hpp"
  27. #include "top_window.hpp"
  28. #include "../utils/position.hpp"
  29. #include <list>
  30. #include <map>
  31. #include <set>
  32. #include <utility>
  33. class GenericFont;
  34. class GenericLayout;
  35. class Anchor;
  36. class Tooltip;
  37. class Popup;
  38. /// Window manager for skin windows
  39. class WindowManager: public SkinObject
  40. {
  41.     public:
  42.         /// Direction of the resizing
  43.         enum Direction_t
  44.         {
  45.             kResizeE,   // East
  46.             kResizeSE,  // South-East
  47.             kResizeS,   // South
  48.             kNone       // Reserved for internal use
  49.         };
  50.         /// Constructor
  51.         WindowManager( intf_thread_t *pIntf);
  52.         /// Destructor
  53.         virtual ~WindowManager();
  54.         /**
  55.          * Add a window to the list of known windows. Necessary if you want
  56.          * your window to be movable...
  57.          */
  58.         void registerWindow( TopWindow &rWindow );
  59.         /// Remove a previously registered window
  60.         void unregisterWindow( TopWindow &rWindow );
  61.         /// Tell the window manager that a move is initiated for rWindow
  62.         void startMove( TopWindow &rWindow );
  63.         /// Tell the window manager that the current move ended
  64.         void stopMove();
  65.         /**
  66.          * Move the rWindow window to (left, top), and move all its
  67.          * anchored windows.
  68.          * If a new anchoring is detected, the windows will move accordingly.
  69.          */
  70.         void move( TopWindow &rWindow, int left, int top ) const;
  71.         /// Tell the window manager that a resize is initiated for rLayout
  72.         void startResize( GenericLayout &rLayout, Direction_t direction );
  73.         /// Tell the window manager that the current resizing ended
  74.         void stopResize();
  75.         /**
  76.          * Resize the rLayout layout to (width, height), and move all its
  77.          * anchored windows, if some anchors are moved during the resizing.
  78.          * If a new anchoring is detected, the windows will move (or resize)
  79.          * accordingly.
  80.          */
  81.         void resize( GenericLayout &rLayout, int width, int height ) const;
  82.         /// Maximize the given window
  83.         void maximize( TopWindow &rWindow );
  84.         /// Unmaximize the given window
  85.         void unmaximize( TopWindow &rWindow );
  86.         /// Raise all the registered windows
  87.         void raiseAll() const;
  88.         /// Show all the registered windows
  89.         void showAll( bool firstTime = false ) const;
  90.         /// Hide all the registered windows
  91.         void hideAll() const;
  92.         /// Synchronize the windows with their visibility variable
  93.         void synchVisibility() const;
  94.         /// Save the current visibility of the windows
  95.         void saveVisibility();
  96.         /// Restore the saved visibility of the windows
  97.         void restoreVisibility() const;
  98.         /// Raise the given window
  99.         void raise( TopWindow &rWindow ) const { rWindow.raise(); }
  100.         /// Show the given window
  101.         void show( TopWindow &rWindow ) const { rWindow.show(); }
  102.         /// Hide the given window
  103.         void hide( TopWindow &rWindow ) const { rWindow.hide(); }
  104.         /// Toggle all the windows on top
  105.         void toggleOnTop();
  106.         /// Set the magnetism of screen edges
  107.         void setMagnetValue( int magnet ) { m_magnet = magnet; }
  108.         /// Set the alpha value of the static windows
  109.         void setAlphaValue( int alpha ) { m_alpha = alpha; }
  110.         /// Set the alpha value of the moving windows
  111.         void setMoveAlphaValue( int moveAlpha ) { m_moveAlpha = moveAlpha; }
  112.         /// Create the tooltip window
  113.         void createTooltip( const GenericFont &rTipFont );
  114.         /// Show the tooltip window
  115.         void showTooltip();
  116.         /// Hide the tooltip window
  117.         void hideTooltip();
  118.         /// Add a layout of the given window. This new layout will be the
  119.         /// active one.
  120.         void addLayout( TopWindow &rWindow, GenericLayout &rLayout );
  121.         /// Change the active layout of the given window
  122.         void setActiveLayout( TopWindow &rWindow, GenericLayout &rLayout );
  123.         /// Mark the given popup as active
  124.         void setActivePopup( Popup &rPopup ) { m_pPopup = &rPopup; }
  125.         /// Return the active popup, or NULL if none is active
  126.         Popup * getActivePopup() const { return m_pPopup; }
  127.     private:
  128.         /// Some useful typedefs for lazy people like me
  129.         typedef set<TopWindow*> WinSet_t;
  130.         typedef list<Anchor*> AncList_t;
  131.         /// Dependencies map
  132.         /**
  133.          * This map represents the graph of anchored windows: it associates
  134.          * to a given window all the windows that are directly anchored by it.
  135.          * This is not transitive, i.e. if a is in m_dep[b] and if b is in
  136.          * m_dep[c], it doesn't mean that a is in m_dep[c] (in fact, it
  137.          * would be extremely rare...)
  138.          */
  139.         map<TopWindow*, WinSet_t> m_dependencies;
  140.         /// Store all the windows
  141.         WinSet_t m_allWindows;
  142.         /**
  143.          * Store the windows that were visible when saveVisibility() was
  144.          * last called.
  145.          */
  146.         WinSet_t m_savedWindows;
  147.         /// Store the moving windows
  148.         /**
  149.          * This set is updated at every start of move.
  150.          */
  151.         WinSet_t m_movingWindows;
  152.         /**
  153.          * Store the moving windows in the context of resizing
  154.          * These sets are updated at every start of move
  155.          */
  156.         //@{
  157.         WinSet_t m_resizeMovingE;
  158.         WinSet_t m_resizeMovingS;
  159.         WinSet_t m_resizeMovingSE;
  160.         //@}
  161.         /// Indicate whether the windows are currently on top
  162.         VariablePtr m_cVarOnTop;
  163.         /// Magnetism of the screen edges (= scope of action)
  164.         int m_magnet;
  165.         /// Alpha value of the static windows
  166.         int m_alpha;
  167.         /// Alpha value of the moving windows
  168.         int m_moveAlpha;
  169.         /// Direction of the current resizing
  170.         Direction_t m_direction;
  171.         /// Rect of the last maximized window
  172.         SkinsRect m_maximizeRect;
  173.         /// Tooltip
  174.         Tooltip *m_pTooltip;
  175.         /// Active popup, if any
  176.         Popup *m_pPopup;
  177.         /// Recursively build a set of windows anchored to the one given.
  178.         void buildDependSet( WinSet_t &rWinSet, TopWindow *pWindow );
  179.         /// Check anchoring
  180.         /**
  181.          * This function updates xOffset and yOffset, to take care of a new
  182.          * anchoring (if any)
  183.          */
  184.         void checkAnchors( TopWindow *pWindow,
  185.                            int &xOffset, int &yOffset ) const;
  186. };
  187. #endif