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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * macosx_window.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 8c58d447510a59186c2c3e6e454fb432b4c670b7 $
  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. #ifndef MACOSX_WINDOW_HPP
  24. #define MACOSX_WINDOW_HPP
  25. #include "../src/os_window.hpp"
  26. #include <Carbon/Carbon.h>
  27. class MacOSXDisplay;
  28. class MacOSXDragDrop;
  29. /// MacOSX implementation of OSWindow
  30. class MacOSXWindow: public OSWindow
  31. {
  32.     public:
  33.         MacOSXWindow( intf_thread_t *pIntf, GenericWindow &rWindow,
  34.                       bool dragDrop, bool playOnDrop,
  35.                       MacOSXWindow *pParentWindow );
  36.         virtual ~MacOSXWindow();
  37.         // Show the window
  38.         virtual void show( int left, int top ) const;
  39.         // Hide the window
  40.         virtual void hide() const;
  41.         /// Move the window
  42.         virtual void moveResize( int left, int top,
  43.                                  int width, int height ) const;
  44.         /// Bring the window on top
  45.         virtual void raise() const;
  46.         /// Set the opacity of the window (0 = transparent, 255 = opaque)
  47.         virtual void setOpacity( uint8_t value ) const;
  48.         /// Toggle the window on top
  49.         virtual void toggleOnTop( bool onTop ) const;
  50.         /// Get the Carbon window handle
  51.         WindowRef getWindowRef() const { return m_win; };
  52.     private:
  53.         /// Parent window
  54.         MacOSXWindow *m_pParent;
  55.         /// Indicates whether the window handles drag&drop events
  56.         bool m_dragDrop;
  57.         /// Carbon Window object
  58.         WindowRef m_win;
  59. };
  60. #endif