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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * popup.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 073b97352941bb50615e9bf39ab29a22fea3add4 $
  6.  *
  7.  * Authors: Olivier Teulière <ipkiss@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #include "popup.hpp"
  24. #include "os_factory.hpp"
  25. #include "os_popup.hpp"
  26. #include "window_manager.hpp"
  27. #include "../commands/cmd_generic.hpp"
  28. #include "../events/evt_menu.hpp"
  29. Popup::Popup( intf_thread_t *pIntf, WindowManager &rWindowManager )
  30.     : SkinObject( pIntf ), m_rWindowManager( rWindowManager )
  31. {
  32.     // Get the OSFactory
  33.     OSFactory *pOsFactory = OSFactory::instance( getIntf() );
  34.     // Create an OSPopup to handle OS specific processing
  35.     m_pOsPopup = pOsFactory->createOSPopup();
  36. }
  37. void Popup::show( int xPos, int yPos )
  38. {
  39.     // Notify that we are the active popup menu, so that the window which
  40.     // receives our menu events knows whom to forward them
  41.     m_rWindowManager.setActivePopup( *this );
  42.     m_pOsPopup->show( xPos, yPos );
  43. }
  44. void Popup::hide()
  45. {
  46.     m_pOsPopup->hide();
  47. }
  48. void Popup::addItem( const string &rLabel, CmdGeneric &rCmd, int pos )
  49. {
  50.     m_pOsPopup->addItem( rLabel, pos );
  51.     m_actions[pos] = &rCmd;
  52. }
  53. void Popup::addSeparator( int pos )
  54. {
  55.     m_pOsPopup->addSeparator( pos );
  56.     m_actions[pos] = NULL;
  57. }
  58. void Popup::handleEvent( const EvtMenu &rEvent )
  59. {
  60.     unsigned int n = m_pOsPopup->getPosFromId( rEvent.getItemId() );
  61.     if( (n < m_actions.size()) && m_actions[n] )
  62.     {
  63.         m_actions[n]->execute();
  64.     }
  65.     else
  66.     {
  67.         // Should never happen
  68.         msg_Warn( getIntf(), "problem in the popup implementation" );
  69.     }
  70. }