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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * macosx_window.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 2e035df47a5ee5aa9b86d7c1ca77c97cf84f39f1 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@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 MACOSX_SKINS
  24. #include "macosx_window.hpp"
  25. #include "macosx_loop.hpp"
  26. #include "../src/os_factory.hpp"
  27. MacOSXWindow::MacOSXWindow( intf_thread_t *pIntf, GenericWindow &rWindow,
  28.                             bool dragDrop, bool playOnDrop,
  29.                             MacOSXWindow *pParentWindow ):
  30.     OSWindow( pIntf ), m_pParent( pParentWindow ), m_dragDrop( dragDrop )
  31. {
  32.     // Create the window
  33.     Rect rect;
  34.     SetRect( &rect, 0, 0, 0, 0 );
  35.     CreateNewWindow( kDocumentWindowClass, kWindowNoShadowAttribute |
  36.                      kWindowNoTitleBarAttribute, &rect, &m_win );
  37.     // Create the event handler for this window
  38.     OSFactory *pOSFactory = OSFactory::instance( getIntf() );
  39.     ((MacOSXLoop*)pOSFactory->getOSLoop())->registerWindow( rWindow, m_win );
  40. }
  41. MacOSXWindow::~MacOSXWindow()
  42. {
  43.     DisposeWindow( m_win );
  44. }
  45. void MacOSXWindow::show( int left, int top ) const
  46. {
  47.     ShowWindow( m_win );
  48. }
  49. void MacOSXWindow::hide() const
  50. {
  51.     HideWindow( m_win );
  52. }
  53. void MacOSXWindow::moveResize( int left, int top, int width, int height ) const
  54. {
  55.     MoveWindow( m_win, left, top, false );
  56.     SizeWindow( m_win, width, height, true );
  57. }
  58. void MacOSXWindow::raise() const
  59. {
  60.     SelectWindow( m_win );
  61. }
  62. void MacOSXWindow::setOpacity( uint8_t value ) const
  63. {
  64.     SetWindowAlpha( m_win, (float)value / 255.0 );
  65. }
  66. void MacOSXWindow::toggleOnTop( bool onTop ) const
  67. {
  68.     // TODO
  69. }
  70. #endif