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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * macosx_graphics.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 23aea45431919ae0c5f3a4c991646ab8048705f4 $
  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_graphics.hpp"
  25. #include "macosx_window.hpp"
  26. MacOSXGraphics::MacOSXGraphics( intf_thread_t *pIntf, int width, int height ):
  27.     OSGraphics( pIntf ), m_width( width ), m_height( height )
  28. {
  29.     // TODO
  30. }
  31. MacOSXGraphics::~MacOSXGraphics()
  32. {
  33.     // TODO
  34. }
  35. void MacOSXGraphics::clear()
  36. {
  37.     // TODO
  38. }
  39. void MacOSXGraphics::drawGraphics( const OSGraphics &rGraphics, int xSrc,
  40.                                    int ySrc, int xDest, int yDest, int width,
  41.                                    int height )
  42. {
  43.     // TODO
  44. }
  45. void MacOSXGraphics::drawBitmap( const GenericBitmap &rBitmap, int xSrc,
  46.                                  int ySrc, int xDest, int yDest, int width,
  47.                                  int height, bool blend )
  48. {
  49.     // TODO
  50. }
  51. void MacOSXGraphics::fillRect( int left, int top, int width, int height,
  52.                                uint32_t color )
  53. {
  54.     // TODO
  55. }
  56. void MacOSXGraphics::drawRect( int left, int top, int width, int height,
  57.                             uint32_t color )
  58. {
  59.     // TODO
  60. }
  61. void MacOSXGraphics::applyMaskToWindow( OSWindow &rWindow )
  62. {
  63.     // TODO
  64. }
  65. void MacOSXGraphics::copyToWindow( OSWindow &rWindow, int xSrc,  int ySrc,
  66.                                 int width, int height, int xDest, int yDest )
  67. {
  68.     // Get the graphics context
  69.     WindowRef win = ((MacOSXWindow&)rWindow).getWindowRef();
  70.     SetPortWindowPort( win );
  71.     GrafPtr port = GetWindowPort( win );
  72.     CGContextRef gc;
  73.     QDBeginCGContext( port, &gc );
  74. //    CGContextSetRGBFillColor( gc, 1, 0, 0, 1 );
  75. //    CGContextFillRect( gc, CGRectMake( 0, 0, 50, 50 ));
  76.     // Release the graphics context
  77.     QDEndCGContext( port, &gc );
  78. }
  79. bool MacOSXGraphics::hit( int x, int y ) const
  80. {
  81.     // TODO
  82.     return false;
  83. }
  84. #endif