00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifdef MACOSX_SKINS
00025
00026 #include "macosx_graphics.hpp"
00027
00028
00029 MacOSXGraphics::MacOSXGraphics( intf_thread_t *pIntf, int width, int height ):
00030 OSGraphics( pIntf ), m_width( width ), m_height( height )
00031 {
00032
00033 }
00034
00035
00036 MacOSXGraphics::~MacOSXGraphics()
00037 {
00038
00039 }
00040
00041
00042 void MacOSXGraphics::clear()
00043 {
00044
00045 }
00046
00047
00048 void MacOSXGraphics::drawGraphics( const OSGraphics &rGraphics, int xSrc,
00049 int ySrc, int xDest, int yDest, int width,
00050 int height )
00051 {
00052
00053 }
00054
00055
00056 void MacOSXGraphics::drawBitmap( const GenericBitmap &rBitmap, int xSrc,
00057 int ySrc, int xDest, int yDest, int width,
00058 int height )
00059 {
00060
00061 }
00062
00063
00064 void MacOSXGraphics::fillRect( int left, int top, int width, int height,
00065 uint32_t color )
00066 {
00067
00068 }
00069
00070
00071 void MacOSXGraphics::drawRect( int left, int top, int width, int height,
00072 uint32_t color )
00073 {
00074
00075 }
00076
00077
00078 void MacOSXGraphics::applyMaskToWindow( OSWindow &rWindow )
00079 {
00080
00081 }
00082
00083
00084 void MacOSXGraphics::copyToWindow( OSWindow &rWindow, int xSrc, int ySrc,
00085 int width, int height, int xDest, int yDest )
00086 {
00087
00088 }
00089
00090
00091 bool MacOSXGraphics::hit( int x, int y ) const
00092 {
00093
00094 return false;
00095 }
00096
00097 #endif