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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * win32_popup.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: e2ac6a89f740103f3c38373fead67a9f2ab23f08 $
  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. #ifdef WIN32_SKINS
  24. #include "win32_popup.hpp"
  25. #include "win32_factory.hpp"
  26. #ifndef TPM_NOANIMATION
  27. const UINT TPM_NOANIMATION = 0x4000L;
  28. #endif
  29. Win32Popup::Win32Popup( intf_thread_t *pIntf, HWND hAssociatedWindow )
  30.     : OSPopup( pIntf ), m_hWnd( hAssociatedWindow )
  31. {
  32.     // Create the popup menu
  33.     m_hMenu = CreatePopupMenu();
  34.     if( !m_hMenu )
  35.     {
  36.         msg_Err( getIntf(), "CreatePopupMenu failed" );
  37.         return;
  38.     }
  39. }
  40. Win32Popup::~Win32Popup()
  41. {
  42.     if( m_hMenu )
  43.         DestroyMenu( m_hMenu );
  44. }
  45. void Win32Popup::show( int xPos, int yPos )
  46. {
  47.     TrackPopupMenuEx( m_hMenu, TPM_LEFTALIGN | TPM_TOPALIGN | TPM_RIGHTBUTTON
  48.                                | TPM_HORIZONTAL | TPM_NOANIMATION,
  49.                       xPos, yPos, m_hWnd, NULL );
  50. }
  51. void Win32Popup::hide()
  52. {
  53.     SendMessage( m_hWnd, WM_CANCELMODE, 0, 0 );
  54. }
  55. void Win32Popup::addItem( const string &rLabel, int pos )
  56. {
  57.     MENUITEMINFO menuItem;
  58.     menuItem.cbSize = sizeof( MENUITEMINFO );
  59. //     menuItem.fMask = MIIM_FTYPE | MIIM_ID | MIIM_TYPE | MIIM_STRING;
  60. //     menuItem.fType = MFT_STRING;
  61.     menuItem.fMask = MIIM_ID | MIIM_STRING;
  62.     menuItem.wID = pos;
  63.     menuItem.dwTypeData = (char*)rLabel.c_str();
  64.     menuItem.cch = rLabel.size();
  65.     InsertMenuItem( m_hMenu, findInsertionPoint( pos ), TRUE, &menuItem );
  66. }
  67. void Win32Popup::addSeparator( int pos )
  68. {
  69.     MENUITEMINFO sepItem;
  70.     sepItem.cbSize = sizeof( MENUITEMINFO );
  71.     sepItem.fMask = MIIM_FTYPE;
  72.     sepItem.fType = MFT_SEPARATOR;
  73.     InsertMenuItem( m_hMenu, findInsertionPoint( pos ), TRUE, &sepItem );
  74. }
  75. unsigned int Win32Popup::findInsertionPoint( unsigned int pos ) const
  76. {
  77.     // For this simple algorithm, we rely on the fact that in the final state
  78.     // of the menu, the ID of each item is equal to its position in the menu
  79.     int i = 0;
  80.     while( i < GetMenuItemCount( m_hMenu ) &&
  81.            GetMenuItemID( m_hMenu, i ) < pos )
  82.     {
  83.         i++;
  84.     }
  85.     return i;
  86. }
  87. #endif