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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * cmd_show_window.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 18edc42e17a3e50c76cf86869d2b349da2fa5325 $
  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 CMD_SHOW_WINDOW_HPP
  25. #define CMD_SHOW_WINDOW_HPP
  26. #include "cmd_generic.hpp"
  27. #include "../src/os_factory.hpp"
  28. #include "../src/top_window.hpp"
  29. #include "../src/window_manager.hpp"
  30. #include "../src/popup.hpp"
  31. /// Command to show a window
  32. class CmdShowWindow: public CmdGeneric
  33. {
  34.     public:
  35.         CmdShowWindow( intf_thread_t *pIntf, WindowManager &rWinManager,
  36.                        TopWindow &rWin ):
  37.             CmdGeneric( pIntf ), m_rWinManager( rWinManager ), m_rWin( rWin ) {}
  38.         virtual ~CmdShowWindow() {}
  39.         /// This method does the real job of the command
  40.         virtual void execute() { m_rWinManager.show( m_rWin ); }
  41.         /// Return the type of the command
  42.         virtual string getType() const { return "show window"; }
  43.     private:
  44.         /// Reference to the window manager
  45.         WindowManager &m_rWinManager;
  46.         /// Reference to the window
  47.         TopWindow &m_rWin;
  48. };
  49. /// Command to hide a window
  50. class CmdHideWindow: public CmdGeneric
  51. {
  52.     public:
  53.         CmdHideWindow( intf_thread_t *pIntf, WindowManager &rWinManager,
  54.                        TopWindow &rWin ):
  55.             CmdGeneric( pIntf ), m_rWinManager( rWinManager ), m_rWin( rWin ) {}
  56.         virtual ~CmdHideWindow() {}
  57.         /// This method does the real job of the command
  58.         virtual void execute() { m_rWinManager.hide( m_rWin ); }
  59.         /// Return the type of the command
  60.         virtual string getType() const { return "hide window"; }
  61.     private:
  62.         /// Reference to the window manager
  63.         WindowManager &m_rWinManager;
  64.         /// Reference to the window
  65.         TopWindow &m_rWin;
  66. };
  67. /// Command to raise all windows
  68. class CmdRaiseAll: public CmdGeneric
  69. {
  70.     public:
  71.         CmdRaiseAll( intf_thread_t *pIntf, WindowManager &rWinManager ):
  72.             CmdGeneric( pIntf ), m_rWinManager( rWinManager ) {}
  73.         virtual ~CmdRaiseAll() {}
  74.         /// This method does the real job of the command
  75.         virtual void execute() { m_rWinManager.raiseAll(); }
  76.         /// Return the type of the command
  77.         virtual string getType() const { return "raise all windows"; }
  78.     private:
  79.         /// Reference to the window manager
  80.         WindowManager &m_rWinManager;
  81. };
  82. /// Command to show a popup menu
  83. class CmdShowPopup: public CmdGeneric
  84. {
  85.     public:
  86.         CmdShowPopup( intf_thread_t *pIntf, Popup &rPopup ):
  87.             CmdGeneric( pIntf ), m_rPopup( rPopup ) {}
  88.         virtual ~CmdShowPopup() {}
  89.         /// This method does the real job of the command
  90.         virtual void execute()
  91.         {
  92.             int x, y;
  93.             OSFactory::instance( getIntf() )->getMousePos( x, y );
  94.             m_rPopup.show( x, y );
  95.         }
  96.         /// Return the type of the command
  97.         virtual string getType() const { return "show popup"; }
  98.     private:
  99.         /// Reference to the popup
  100.         Popup &m_rPopup;
  101. };
  102. #endif