]> git.sesse.net Git - vlc/blob - modules/gui/skins2/macosx/macosx_window.cpp
Sort-by-album patch by Pierre Marc Dumuid
[vlc] / modules / gui / skins2 / macosx / macosx_window.cpp
1 /*****************************************************************************
2  * macosx_window.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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifdef MACOSX_SKINS
25
26 #include "macosx_window.hpp"
27
28
29 MacOSXWindow::MacOSXWindow( intf_thread_t *pIntf, GenericWindow &rWindow,
30                             bool dragDrop, bool playOnDrop,
31                             MacOSXWindow *pParentWindow ):
32     OSWindow( pIntf ), m_pParent( pParentWindow ), m_dragDrop( dragDrop )
33 {
34     // TODO
35 }
36
37
38 MacOSXWindow::~MacOSXWindow()
39 {
40     // TODO
41 }
42
43
44 void MacOSXWindow::show( int left, int top ) const
45 {
46     // TODO
47 }
48
49
50 void MacOSXWindow::hide() const
51 {
52     // TODO
53 }
54
55
56 void MacOSXWindow::moveResize( int left, int top, int width, int height ) const
57 {
58     // TODO
59 }
60
61
62 void MacOSXWindow::raise() const
63 {
64     // TODO
65 }
66
67
68 void MacOSXWindow::setOpacity( uint8_t value ) const
69 {
70     // TODO
71 }
72
73
74 void MacOSXWindow::toggleOnTop( bool onTop ) const
75 {
76     // TODO
77 }
78
79 #endif