00001 /***************************************************************************** 00002 * os_window.hpp 00003 ***************************************************************************** 00004 * Copyright (C) 2003 the VideoLAN team 00005 * $Id: f8af4b1bf26da76edc5405bc35fcde28840de51c $ 00006 * 00007 * Authors: Cyril Deguet <asmax@via.ecp.fr> 00008 * Olivier Teulière <ipkiss@via.ecp.fr> 00009 * 00010 * This program is free software; you can redistribute it and/or modify 00011 * it under the terms of the GNU General Public License as published by 00012 * the Free Software Foundation; either version 2 of the License, or 00013 * (at your option) any later version. 00014 * 00015 * This program is distributed in the hope that it will be useful, 00016 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00018 * GNU General Public License for more details. 00019 * 00020 * You should have received a copy of the GNU General Public License along 00021 * with this program; if not, write to the Free Software Foundation, Inc., 00022 * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 00023 *****************************************************************************/ 00024 00025 #ifndef OS_WINDOW_HPP 00026 #define OS_WINDOW_HPP 00027 00028 #include "skin_common.hpp" 00029 00030 class GenericWindow; 00031 class OSGraphics; 00032 00033 00034 /// OS specific delegate class for GenericWindow 00035 class OSWindow: public SkinObject 00036 { 00037 public: 00038 virtual ~OSWindow() { } 00039 00040 // Show the window 00041 virtual void show() const = 0; 00042 00043 // Hide the window 00044 virtual void hide() const = 0; 00045 00046 /// Move and resize the window 00047 virtual void moveResize( int left, int top, 00048 int width, int height ) const = 0; 00049 00050 /// Bring the window on top 00051 virtual void raise() const = 0; 00052 00053 /// Set the opacity of the window (0 = transparent, 255 = opaque) 00054 virtual void setOpacity( uint8_t value ) const = 0; 00055 00056 /// Toggle the window on top 00057 virtual void toggleOnTop( bool onTop ) const = 0; 00058 00059 /// getter for handler 00060 virtual void* getOSHandle( ) const = 0; 00061 00062 /// reparent the window 00063 virtual void reparent( void* OSHandle, int x, int y, int w, int h ) = 0; 00064 00065 protected: 00066 OSWindow( intf_thread_t *pIntf ): SkinObject( pIntf ) { } 00067 }; 00068 00069 00070 #endif
1.5.6