| Internal class representing the viewport of the scrollview. 
        
            | Methods |  |  
        | __init__ getChild
 getWidget
 getWidgetSize
 setScrollOffset
 setScrollOffsetP
 
 |  
            |  | __init__ |  
        | 
__init__ (
        self,
        parent=None,
        name=None,
        )
Constructor        Arguments
            parentparent widget (QWidget)            namename of this widget (string or QString) |  
            |  | getChild |  
        | 
getChild ( self )
 |  
            |  | getWidget |  
        | 
getWidget ( self )
 Public method returning the child widget.        Returns            child widget |  
            |  | getWidgetSize |  
        | 
getWidgetSize ( self )
 Public method to get the size of the child widget.        Returns            the size of the child widget (QSize) |  
            |  | setScrollOffset |  
        | 
setScrollOffset (
        self,
        x,
        y,
        )
Sets the scrolling offset for the child widget.        Arguments
            xx-offset (int)            yy-offset (int) |  
            |  | setScrollOffsetP |  
        | 
setScrollOffsetP ( self,  point )
 Sets the scrolling offset for the child widget.        Arguments
            pointscrolling offset (QPoint) |  |