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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * win32_graphics.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 06b3bd3b8ef2e2a87998e45e045435f6ced81058 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifndef WIN32_GRAPHICS_HPP
  25. #define WIN32_GRAPHICS_HPP
  26. #include "../src/os_graphics.hpp"
  27. #include <windows.h>
  28. class GenericBitmap;
  29. /// Win32 implementation of OSGraphics
  30. class Win32Graphics: public OSGraphics
  31. {
  32.     public:
  33.         Win32Graphics( intf_thread_t *pIntf, int width, int height );
  34.         virtual ~Win32Graphics();
  35.         /// Clear the graphics
  36.         virtual void clear();
  37.         /// Render a bitmap on this graphics
  38.         virtual void drawBitmap( const GenericBitmap &rBitmap, int xSrc = 0,
  39.                                  int ySrc = 0, int xDest = 0, int yDest = 0,
  40.                                  int width = -1, int height = -1,
  41.                                  bool blend = false );
  42.         /// Draw another graphics on this one
  43.         virtual void drawGraphics( const OSGraphics &rGraphics, int xSrc = 0,
  44.                                    int ySrc = 0, int xDest = 0, int yDest = 0,
  45.                                    int width = -1, int height = -1 );
  46.         /// Draw an empty rectangle on the grahics (color is #RRGGBB)
  47.         virtual void drawRect( int left, int top, int width, int height,
  48.                                uint32_t color );
  49.         /// Draw a filled rectangle on the grahics (color is #RRGGBB)
  50.         virtual void fillRect( 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 for the size
  61.         virtual int getWidth() const { return m_width; }
  62.         virtual int getHeight() const { return m_height; }
  63.         /// Get the device context handler
  64.         virtual HDC getDC() const { return m_hDC; }
  65.         /// Get the mask
  66.         virtual HRGN getMask() const { return m_mask; }
  67.     private:
  68.         /// Size of the image
  69.         int m_width, m_height;
  70.         /// Device context
  71.         HDC m_hDC;
  72.         /// Transparency mask
  73.         HRGN m_mask;
  74.         /// Add a segment in a region
  75.         void addSegmentInRegion( HRGN &rMask, int start, int end, int line );
  76. };
  77. #endif