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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * macosx_graphics.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 639e867e075e0a67cbd849e7b596811a06bd458d $
  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_GRAPHICS_HPP
  24. #define MACOSX_GRAPHICS_HPP
  25. #include "../src/os_graphics.hpp"
  26. #include <Carbon/Carbon.h>
  27. class GenericWindow;
  28. class GenericBitmap;
  29. /// MacOSX implementation of OSGraphics
  30. class MacOSXGraphics: public OSGraphics
  31. {
  32.     public:
  33.         MacOSXGraphics( intf_thread_t *pIntf, int width, int height);
  34.         virtual ~MacOSXGraphics();
  35.         /// Clear the graphics
  36.         virtual void clear();
  37.         /// Draw another graphics on this one
  38.         virtual void drawGraphics( const OSGraphics &rGraphics, int xSrc = 0,
  39.                                    int ySrc = 0, int xDest = 0, int yDest = 0,
  40.                                    int width = -1, int height = -1 );
  41.         /// Render a bitmap on this graphics
  42.         virtual void drawBitmap( const GenericBitmap &rBitmap, int xSrc = 0,
  43.                                  int ySrc = 0, int xDest = 0, int yDest = 0,
  44.                                  int width = -1, int height = -1,
  45.                                  bool blend = false );
  46.         /// Draw a filled rectangle on the grahics (color is #RRGGBB)
  47.         virtual void fillRect( int left, int top, int width, int height,
  48.                                uint32_t color );
  49.         /// Draw an empty rectangle on the grahics (color is #RRGGBB)
  50.         virtual void drawRect( int left, int top, int width, int height,
  51.                                uint32_t color );
  52.         /// Set the shape of a window with the mask of this graphics.
  53.         virtual void applyMaskToWindow( OSWindow &rWindow );
  54.         /// Copy the graphics on a window
  55.         virtual void copyToWindow( OSWindow &rWindow, int xSrc,
  56.                                    int ySrc, int width, int height,
  57.                                    int xDest, int yDest );
  58.         /// Tell whether the pixel at the given position is visible
  59.         virtual bool hit( int x, int y ) const;
  60.         /// Getters
  61.         virtual int getWidth() const { return m_width; }
  62.         virtual int getHeight() const { return m_height; }
  63.     private:
  64.         /// Size of the image
  65.         int m_width, m_height;
  66. };
  67. #endif