Last page update: November 23, 2011
Classes:
- BaseComponent
- BaseResource
- BaseProxy
- BaseWebtool
- TableScriptToHtml
- TableScriptToHtml - webpage variables
Complete reference:
there is no public method
there is no public method
there is no public method
there is no public method
TODO
TODO
These methods don’t belong to any class.
The base class for the components
Base class for a webpage proxy
Base class for a webpage resource
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
| Parameters: |
|
|---|
TODO
| Parameters: | ext – TODO |
|---|
TODO
| Parameters: | func – TODO |
|---|
A decorator. Allow to register a new method (in a page or in a component) that will be available in the web structs:
@struct_method
def includedViewBox(self, bc, ...):
pass
def somewhereElse(self, bc):
bc.includedViewBox(...)
If the method name includes an underscore, only the part that follows the first underscore will be the struct method’s name:
@struct_method
def iv_foo(self, bc, ...):
pass
def somewhereElse(self, bc):
bc.foo(...)
You can also pass a name explicitly:
@struct_method('bar')
def foo(self, bc, ...):
pass
def somewhereElse(self, bc):
bc.bar(...)