Package mrv :: Package maya :: Package ui :: Module panel
[hide private]
[frames] | no frames]

Source Code for Module mrv.maya.ui.panel

 1  # -*- coding: utf-8 -*- 
 2  """ 
 3  Contains implementations of maya editors 
 4  """ 
 5  __docformat__ = "restructuredtext" 
 6  import base as uibase 
 7  import util as uiutil 
 8   
 9   
10 -class Panel( uibase.NamedUI, uiutil.UIContainerBase ):
11 """ Structural base for all Layouts allowing general queries and name handling 12 Layouts may track their children """
13