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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * cmd_show_window.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: cmd_show_window.hpp 8966 2004-10-10 10:08:44Z 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 CMD_SHOW_WINDOW_HPP
  25. #define CMD_SHOW_WINDOW_HPP
  26. #include "cmd_generic.hpp"
  27. #include "../src/top_window.hpp"
  28. #include "../src/window_manager.hpp"
  29. /// Command to show a window
  30. class CmdShowWindow: public CmdGeneric
  31. {
  32.     public:
  33.         CmdShowWindow( intf_thread_t *pIntf, WindowManager &rWinManager,
  34.                        TopWindow &rWin ):
  35.             CmdGeneric( pIntf ), m_rWinManager( rWinManager ), m_rWin( rWin ) {}
  36.         virtual ~CmdShowWindow() {}
  37.         /// This method does the real job of the command
  38.         virtual void execute() { m_rWinManager.show( m_rWin ); }
  39.         /// Return the type of the command
  40.         virtual string getType() const { return "show window"; }
  41.     private:
  42.         /// Reference to the window manager
  43.         WindowManager &m_rWinManager;
  44.         /// Reference to the window
  45.         TopWindow &m_rWin;
  46. };
  47. /// Command to hide a window
  48. class CmdHideWindow: public CmdGeneric
  49. {
  50.     public:
  51.         CmdHideWindow( intf_thread_t *pIntf, WindowManager &rWinManager,
  52.                        TopWindow &rWin ):
  53.             CmdGeneric( pIntf ), m_rWinManager( rWinManager ), m_rWin( rWin ) {}
  54.         virtual ~CmdHideWindow() {}
  55.         /// This method does the real job of the command
  56.         virtual void execute() { m_rWinManager.hide( m_rWin ); }
  57.         /// Return the type of the command
  58.         virtual string getType() const { return "hide window"; }
  59.     private:
  60.         /// Reference to the window manager
  61.         WindowManager &m_rWinManager;
  62.         /// Reference to the window
  63.         TopWindow &m_rWin;
  64. };
  65. /// Command to raise all windows
  66. class CmdRaiseAll: public CmdGeneric
  67. {
  68.     public:
  69.         CmdRaiseAll( intf_thread_t *pIntf, WindowManager &rWinManager ):
  70.             CmdGeneric( pIntf ), m_rWinManager( rWinManager ) {}
  71.         virtual ~CmdRaiseAll() {}
  72.         /// This method does the real job of the command
  73.         virtual void execute() { m_rWinManager.raiseAll(); }
  74.         /// Return the type of the command
  75.         virtual string getType() const { return "raise all windows"; }
  76.     private:
  77.         /// Reference to the window manager
  78.         WindowManager &m_rWinManager;
  79. };
  80. #endif