Main Page | Modules | Class Hierarchy | Class List | Directories | File List | Class Members | File Members | Related Pages

macosx_graphics.cpp

00001 /*****************************************************************************
00002  * macosx_graphics.cpp
00003  *****************************************************************************
00004  * Copyright (C) 2003 the VideoLAN team
00005  * $Id: macosx_graphics.cpp 11664 2005-07-09 06:17:09Z courmisch $
00006  *
00007  * Authors: Cyril Deguet     <[email protected]>
00008  *
00009  * This program is free software; you can redistribute it and/or modify
00010  * it under the terms of the GNU General Public License as published by
00011  * the Free Software Foundation; either version 2 of the License, or
00012  * (at your option) any later version.
00013  *
00014  * This program is distributed in the hope that it will be useful,
00015  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00016  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00017  * GNU General Public License for more details.
00018  *
00019  * You should have received a copy of the GNU General Public License
00020  * along with this program; if not, write to the Free Software
00021  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
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     // TODO
00033 }
00034 
00035 
00036 MacOSXGraphics::~MacOSXGraphics()
00037 {
00038     // TODO
00039 }
00040 
00041 
00042 void MacOSXGraphics::clear()
00043 {
00044     // TODO
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     // TODO
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     // TODO
00061 }
00062 
00063 
00064 void MacOSXGraphics::fillRect( int left, int top, int width, int height,
00065                                uint32_t color )
00066 {
00067     // TODO
00068 }
00069 
00070 
00071 void MacOSXGraphics::drawRect( int left, int top, int width, int height,
00072                             uint32_t color )
00073 {
00074     // TODO
00075 }
00076 
00077 
00078 void MacOSXGraphics::applyMaskToWindow( OSWindow &rWindow )
00079 {
00080     // TODO
00081 }
00082 
00083 
00084 void MacOSXGraphics::copyToWindow( OSWindow &rWindow, int xSrc,  int ySrc,
00085                                 int width, int height, int xDest, int yDest )
00086 {
00087     // TODO
00088 }
00089 
00090 
00091 bool MacOSXGraphics::hit( int x, int y ) const
00092 {
00093     // TODO
00094     return false;
00095 }
00096 
00097 #endif

Generated on Tue Dec 20 10:14:42 2005 for vlc-0.8.4a by  doxygen 1.4.2