]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/src/vout_window.hpp
Qt4 - Open: Capture Tab added. Still almost empty, but well, this is coming after. :D
[vlc] / modules / gui / skins2 / src / vout_window.hpp
index 8f0507ea1cc063f630d808356826ffa42c76160c..df03c2b7a7f20d4f0f0bb9ec6c79b055f9a07abe 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * vout_window.hpp
  *****************************************************************************
- * Copyright (C) 2003 VideoLAN
+ * Copyright (C) 2003 the VideoLAN team
  * $Id$
  *
  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
@@ -18,7 +18,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 VOUT_WINDOW_HPP
 
 #include "generic_window.hpp"
 
+class OSGraphics;
+
 
 /// Class to handle a video output window
-class VoutWindow: public GenericWindow
+class VoutWindow: private GenericWindow
 {
     public:
         VoutWindow( intf_thread_t *pIntf, int xPos, int yPos,
                     bool dragDrop, bool playOnDrop, GenericWindow &rParent );
         virtual ~VoutWindow();
+
+        /// Make some functions public
+        //@{
+        using GenericWindow::show;
+        using GenericWindow::hide;
+        using GenericWindow::move;
+        //@}
+
+        /// Resize the window
+        virtual void resize( int width, int height );
+
+        /// Refresh an area of the window
+        virtual void refresh( int left, int top, int width, int height );
+
+        virtual string getType() const { return "Vout"; }
+
+    private:
+        /// Image when there is no video
+        OSGraphics *m_pImage;
 };
 
 typedef CountedPtr<VoutWindow> VoutWindowPtr;