]> git.sesse.net Git - vlc/blob - modules/gui/skins2/macosx/macosx_graphics.cpp
Merge branch 'master' into lpcm_encoder
[vlc] / modules / gui / skins2 / macosx / macosx_graphics.cpp
1 /*****************************************************************************
2  * macosx_graphics.cpp
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifdef MACOSX_SKINS
25
26 #include "macosx_graphics.hpp"
27 #include "macosx_window.hpp"
28
29
30 MacOSXGraphics::MacOSXGraphics( intf_thread_t *pIntf, int width, int height ):
31     OSGraphics( pIntf ), m_width( width ), m_height( height )
32 {
33     // TODO
34 }
35
36
37 MacOSXGraphics::~MacOSXGraphics()
38 {
39     // TODO
40 }
41
42
43 void MacOSXGraphics::clear()
44 {
45     // TODO
46 }
47
48
49 void MacOSXGraphics::drawGraphics( const OSGraphics &rGraphics, int xSrc,
50                                    int ySrc, int xDest, int yDest, int width,
51                                    int height )
52 {
53     // TODO
54 }
55
56
57 void MacOSXGraphics::drawBitmap( const GenericBitmap &rBitmap, int xSrc,
58                                  int ySrc, int xDest, int yDest, int width,
59                                  int height, bool blend )
60 {
61     // TODO
62 }
63
64
65 void MacOSXGraphics::fillRect( int left, int top, int width, int height,
66                                uint32_t color )
67 {
68     // TODO
69 }
70
71
72 void MacOSXGraphics::drawRect( int left, int top, int width, int height,
73                             uint32_t color )
74 {
75     // TODO
76 }
77
78
79 void MacOSXGraphics::applyMaskToWindow( OSWindow &rWindow )
80 {
81     // TODO
82 }
83
84
85 void MacOSXGraphics::copyToWindow( OSWindow &rWindow, int xSrc,  int ySrc,
86                                 int width, int height, int xDest, int yDest )
87 {
88     // Get the graphics context
89     WindowRef win = ((MacOSXWindow&)rWindow).getWindowRef();
90     SetPortWindowPort( win );
91     GrafPtr port = GetWindowPort( win );
92     CGContextRef gc;
93     QDBeginCGContext( port, &gc );
94
95 //    CGContextSetRGBFillColor( gc, 1, 0, 0, 1 );
96 //    CGContextFillRect( gc, CGRectMake( 0, 0, 50, 50 ));
97
98     // Release the graphics context
99     QDEndCGContext( port, &gc );
100 }
101
102
103 bool MacOSXGraphics::hit( int x, int y ) const
104 {
105     // TODO
106     return false;
107 }
108
109 #endif