00001 /***************************************************************************** 00002 * macosx_window.cpp 00003 ***************************************************************************** 00004 * Copyright (C) 2003 the VideoLAN team 00005 * $Id: macosx_window.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_window.hpp" 00027 00028 00029 MacOSXWindow::MacOSXWindow( intf_thread_t *pIntf, GenericWindow &rWindow, 00030 bool dragDrop, bool playOnDrop, 00031 MacOSXWindow *pParentWindow ): 00032 OSWindow( pIntf ), m_pParent( pParentWindow ), m_dragDrop( dragDrop ) 00033 { 00034 // TODO 00035 } 00036 00037 00038 MacOSXWindow::~MacOSXWindow() 00039 { 00040 // TODO 00041 } 00042 00043 00044 void MacOSXWindow::show( int left, int top ) const 00045 { 00046 // TODO 00047 } 00048 00049 00050 void MacOSXWindow::hide() const 00051 { 00052 // TODO 00053 } 00054 00055 00056 void MacOSXWindow::moveResize( int left, int top, int width, int height ) const 00057 { 00058 // TODO 00059 } 00060 00061 00062 void MacOSXWindow::raise() const 00063 { 00064 // TODO 00065 } 00066 00067 00068 void MacOSXWindow::setOpacity( uint8_t value ) const 00069 { 00070 // TODO 00071 } 00072 00073 00074 void MacOSXWindow::toggleOnTop( bool onTop ) const 00075 { 00076 // TODO 00077 } 00078 00079 #endif