]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/utils/position.cpp
* all: added an attribute "autoresize" to the Video control.
[vlc] / modules / gui / skins2 / utils / position.cpp
index f72a0de906335faa3877c83b441ceee31bf315b6..39474b990eed9dbf436eedd5bdb2df5b9fb37c54 100644 (file)
@@ -25,6 +25,9 @@
 #include "position.hpp"
 
 
+const string VarBox::m_type = "box";
+
+
 Rect::Rect( int left, int top, int right, int bottom ):
     m_left( left ), m_top( top ), m_right( right ), m_bottom( bottom )
 {
@@ -123,3 +126,29 @@ int Position::getHeight() const
     return getBottom() - getTop() + 1;
 }
 
+
+VarBox::VarBox( intf_thread_t *pIntf, int width, int height ):
+    Variable( pIntf ), m_width( width ), m_height( height )
+{
+}
+
+
+int VarBox::getWidth() const
+{
+    return m_width;
+}
+
+
+int VarBox::getHeight() const
+{
+    return m_height;
+}
+
+
+void VarBox::setSize( int width, int height )
+{
+    m_width = width;
+    m_height = height;
+    notify();
+}
+