cmd_resize.hpp

来自「VLC Player Source Code」· HPP 代码 · 共 78 行

HPP
78
字号
/***************************************************************************** * cmd_resize.hpp ***************************************************************************** * Copyright (C) 2003 the VideoLAN team * $Id$ * * Authors: Cyril Deguet     <asmax@via.ecp.fr> *          Olivier Teulière <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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/#ifndef CMD_RESIZE_HPP#define CMD_RESIZE_HPP#include "cmd_generic.hpp"class WindowManager;class GenericLayout;/// Command to resize a layoutclass CmdResize: public CmdGeneric{    public:        /// Resize the given layout        CmdResize( intf_thread_t *pIntf, const WindowManager &rWindowManager,                   GenericLayout &rLayout, int width, int height );        virtual ~CmdResize() {}        /// This method does the real job of the command        virtual void execute();        /// Return the type of the command        virtual string getType() const { return "resize"; }    private:        const WindowManager &m_rWindowManager;        GenericLayout &m_rLayout;        int m_width, m_height;};/// Command to resize the vout windowclass CmdResizeVout: public CmdGeneric{    public:        /// Resize the given layout        CmdResizeVout( intf_thread_t *pIntf, void *pWindow, int width,                       int height );        virtual ~CmdResizeVout() {}        /// This method does the real job of the command        virtual void execute();        /// Return the type of the command        virtual string getType() const { return "resize vout"; }    private:        void *m_pWindow;        int m_width, m_height;};#endif

⌨️ 快捷键说明

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