window_manager.hpp

来自「VLC媒体播放程序」· HPP 代码 · 共 128 行

HPP
128
字号
/***************************************************************************** * window_manager.hpp ***************************************************************************** * Copyright (C) 2003 VideoLAN * $Id: window_manager.hpp,v 1.1 2004/01/03 23:31:34 asmax Exp $ * * Authors: Cyril Deguet     <asmax@via.ecp.fr> *          Olivier Teuli鑢e <ipkiss@via.ecp.fr> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA. *****************************************************************************/#ifndef WINDOW_MANAGER_HPP#define WINDOW_MANAGER_HPP#include "skin_common.hpp"#include <list>#include <map>#include <set>#include <utility>class GenericWindow;class Anchor;/// Window manager for skin windowsclass WindowManager: public SkinObject{    public:        WindowManager( intf_thread_t *pIntf ):            SkinObject( pIntf ), m_isOnTop( false ), m_magnet( 0 ) {}        virtual ~WindowManager() {}        /// Add a window to the list of known windows. Necessary if you want        /// your window to be movable...        void registerWindow( GenericWindow *pWindow );        /// Remove a previously registered window        void unregisterWindow( GenericWindow *pWindow );        /// Tell the window manager that a move is initiated for pWindow.        void startMove( GenericWindow *pWindow );        /// Tell the window manager that the current move ended.        void stopMove();        /// Move the pWindow window to (left, top), and move all its        /// anchored windows.        /// If a new anchoring is detected, the windows will move accordingly.        void move( GenericWindow *pWindow, int left, int top ) const;        /// Raise a window and its anchored windows        void raise( GenericWindow *pWindow );        /// Show all the registered windows        void showAll() const;        /// Hide all the registered windows        void hideAll() const;        /// Toggle all the windows on top        void toggleOnTop();        /// Set the magnetism of screen edges        void setMagnetValue( int magnet ) { m_magnet = magnet; }        /// Set the alpha value of the static windows        void setAlphaValue( int alpha ) { m_alpha = alpha; }        /// Set the alpha value of the moving windows        void setMoveAlphaValue( int moveAlpha ) { m_moveAlpha = moveAlpha; }    private:        /// Some useful typedefs for lazy people like me        typedef set<GenericWindow*> WinSet_t;        typedef list<Anchor*> AncList_t;        /// This map represents the graph of anchored windows: it associates        /// to a given window all the windows that are directly anchored by it.        /// This is not transitive, i.e. if a is in m_dep[b] and if b is in        /// m_dep[c], it doesn't mean that a is in m_dep[c] (in fact, it        /// would be extremely rare...)        map<GenericWindow*, WinSet_t> m_dependencies;        /// Store all the windows        WinSet_t m_allWindows;        /// Store the moving windows; this set is updated at every start of        /// move.        WinSet_t m_movingWindows;        /// Indicate whether the windows are currently on top        bool m_isOnTop;        /// Magnetism of the screen edges (= scope of action)        int m_magnet;        /// Alpha value of the static windows        int m_alpha;        /// Alpha value of the moving windows        int m_moveAlpha;        /// Recursively build a set of windows anchored to the one given.        void buildDependSet( WinSet_t &rWinSet, GenericWindow *pWindow );        /// Check anchoring: this function updates xOffset and yOffset,        /// to take care of a new anchoring (if any)        void checkAnchors( GenericWindow *pWindow,                           int &xOffset, int &yOffset ) const;};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?