Package glitter :: Package utils :: Module objects :: Class BindReleaseObject
[hide private]
[frames] | no frames]

Class BindReleaseObject

source code

object --+    
         |    
  GLObject --+
             |
object --+   |
         |   |
StateMixin --+
             |
            BindReleaseObject
Known Subclasses:

Base class for objects that can be bound and released.

BindReleaseObject should be used instead of BindableObject when binding and releasing are not performed by setting a property on a context, but by custom bind and release methods.

Subclasses are responsible for restoring any objects previously bound to the same target.

Instance Methods [hide private]
 
__init__(self, context=None)
Create a new BindReleaseObject.
source code
 
__enter__(self)
Called when a with statement is entered.
source code
 
__exit__(self, type, value, traceback)
Called when a with statement is exited.
source code

Inherited from StateMixin: __call__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  bind = NotImplemented
Method for binding self to _context.
  release = NotImplemented
Method for releasing self from _context.
Instance Variables [hide private]

Inherited from GLObject (private): _context

Properties [hide private]

Inherited from GLObject: context

Inherited from object: __class__

Method Details [hide private]

__init__(self, context=None)
(Constructor)

source code 

Create a new BindReleaseObject.

Parameters:
  • context (Context) - The parent context.
Overrides: object.__init__

__enter__(self)

source code 

Called when a with statement is entered.

Activates the parent Context and calls bind.

__exit__(self, type, value, traceback)

source code 

Called when a with statement is exited.

Calls release and deactivates the parent Context.


Class Variable Details [hide private]

bind

Method for binding self to _context.

bind takes no arguments.

Value:
NotImplemented

release

Method for releasing self from _context.

release is responsible for restoring any previous binding.

release takes no arguments.

Value:
NotImplemented