]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/src/os_window.hpp
Removed unused defined.
[vlc] / modules / gui / skins2 / src / os_window.hpp
index eef00c4d62e7532214222c2ef315c8d0ecf7574a..f756afb300715dcabd3452711f37a134cd7f4e43 100644 (file)
@@ -1,11 +1,11 @@
 /*****************************************************************************
  * os_window.hpp
  *****************************************************************************
- * Copyright (C) 2003 VideoLAN
- * $Id: os_window.hpp,v 1.1 2004/01/03 23:31:33 asmax Exp $
+ * Copyright (C) 2003 the VideoLAN team
+ * $Id$
  *
  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
- *          Olivier Teulière <ipkiss@via.ecp.fr>
+ *          Olivier Teulière <ipkiss@via.ecp.fr>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -19,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 #ifndef OS_WINDOW_HPP
@@ -38,22 +38,29 @@ class OSWindow: public SkinObject
         virtual ~OSWindow() {}
 
         // Show the window
-        virtual void show( int left, int top ) = 0;
+        virtual void show( int left, int top ) const = 0;
 
         // Hide the window
-        virtual void hide() = 0;
+        virtual void hide() const = 0;
 
         /// Move and resize the window
-        virtual void moveResize( int left, int top, int width, int height ) = 0;
+        virtual void moveResize( int left, int top,
+                                 int width, int height ) const = 0;
 
         /// Bring the window on top
-        virtual void raise() = 0;
+        virtual void raise() const = 0;
 
         /// Set the opacity of the window (0 = transparent, 255 = opaque)
-        virtual void setOpacity( uint8_t value ) = 0;
+        virtual void setOpacity( uint8_t value ) const = 0;
 
         /// Toggle the window on top
-        virtual void toggleOnTop( bool onTop ) = 0;
+        virtual void toggleOnTop( bool onTop ) const = 0;
+
+        /// getter for handler
+        virtual void* getOSHandle( ) const = 0;
+
+        /// reparent the window
+        virtual void reparent( void* OSHandle, int x, int y, int w, int h ) = 0;
 
     protected:
         OSWindow( intf_thread_t *pIntf ): SkinObject( pIntf ) {}