Module _curveknob :: Class CurveWidget
[hide private]
[frames] | no frames]

Class CurveWidget

object --+    
         |    
   Element --+
             |
            CurveWidget

The Curve Widget displayed in the Roto panel.
This should only be used for test harness functionality.

IMPORTANT:
   1) may be `None` as it is not guaranteed that the widget is accessible
   2) the lifetime of the underlying object is undefined, DO NOT STORE!

Instance Methods [hide private]
 
__delattr__(...)
x.__delattr__('name') <==> del x.name
 
__getattribute__(...)
x.__getattribute__('name') <==> x.name
a new object with type S, a subtype of T
__new__(T, S, ...)
 
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
None
add(self)
Add a new group layer under the selected item's parent
List of strings of selected item namesGets a list of the selected items in the CurveTreeWidget
getSelectedItems(self)
None
remove(self)
Remove the selected items in the CurveTreeList

Inherited from Element: clone, getVisible, serialise, setVisible

Inherited from object: __format__, __hash__, __init__, __reduce__, __reduce_ex__, __repr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from Element: locked, name

Inherited from object: __class__

Method Details [hide private]

__delattr__(...)

 

x.__delattr__('name') <==> del x.name

Overrides: object.__delattr__

__getattribute__(...)

 

x.__getattribute__('name') <==> x.name

Overrides: object.__getattribute__

__new__(T, S, ...)

 
Returns: a new object with type S, a subtype of T
Overrides: object.__new__

__setattr__(...)

 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__