]> git.sesse.net Git - vlc/blob - modules/gui/skins2/macosx/macosx_graphics.cpp
Copyright fixes
[vlc] / modules / gui / skins2 / macosx / macosx_graphics.cpp
1 /*****************************************************************************
2  * macosx_graphics.cpp
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN (Centrale Réseaux) and its contributors
5  * $Id$
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifdef MACOSX_SKINS
25
26 #include "macosx_graphics.hpp"
27
28
29 MacOSXGraphics::MacOSXGraphics( intf_thread_t *pIntf, int width, int height ):
30     OSGraphics( pIntf ), m_width( width ), m_height( height )
31 {
32     // TODO
33 }
34
35
36 MacOSXGraphics::~MacOSXGraphics()
37 {
38     // TODO
39 }
40
41
42 void MacOSXGraphics::clear()
43 {
44     // TODO
45 }
46
47
48 void MacOSXGraphics::drawGraphics( const OSGraphics &rGraphics, int xSrc,
49                                    int ySrc, int xDest, int yDest, int width,
50                                    int height )
51 {
52     // TODO
53 }
54
55
56 void MacOSXGraphics::drawBitmap( const GenericBitmap &rBitmap, int xSrc,
57                                  int ySrc, int xDest, int yDest, int width,
58                                  int height )
59 {
60     // TODO
61 }
62
63
64 void MacOSXGraphics::fillRect( int left, int top, int width, int height,
65                                uint32_t color )
66 {
67     // TODO
68 }
69
70
71 void MacOSXGraphics::drawRect( int left, int top, int width, int height,
72                             uint32_t color )
73 {
74     // TODO
75 }
76
77
78 void MacOSXGraphics::applyMaskToWindow( OSWindow &rWindow )
79 {
80     // TODO
81 }
82
83
84 void MacOSXGraphics::copyToWindow( OSWindow &rWindow, int xSrc,  int ySrc,
85                                 int width, int height, int xDest, int yDest )
86 {
87     // TODO
88 }
89
90
91 bool MacOSXGraphics::hit( int x, int y ) const
92 {
93     // TODO
94     return false;
95 }
96
97 #endif