class documentation

class PrintTaskListWindowExtension(TaskListWindowExtension): (source)

View In Hierarchy

Undocumented

Method print_tasklist Undocumented

Inherited from TaskListWindowExtension:

Method __init__ Constructor @param plugin: the plugin object to which this extension belongs @param obj: the object being extended
Method add_action Undocumented
Method on_destroy Undocumented
Instance Variable window Undocumented

Inherited from ExtensionBase (via TaskListWindowExtension):

Method destroy Called when the plugin is being destroyed Calls teardown() followed by the teardown() methods of parent base classes.
Method teardown No summary
Class Variable __signals__ Undocumented
Instance Variable obj the extendable object
Instance Variable plugin the plugin object to which this extension belongs

Inherited from SignalEmitter (via TaskListWindowExtension, ExtensionBase):

Method __new__ Undocumented
Method block_signals Returns a context manager for blocking one or more signals
Method connect Register a handler for a specific object.
Method connect_after Like connect() but handler will be called after default handler
Method disconnect Undocumented
Method emit Undocumented
Method emit_return_first Emits a signal and stops emission on the first handler that returns a not-None value.
Method emit_return_iter Returns an generator that calls one handler on each iteration and yields the return values. This allows aggregating return values.
Method _connect Undocumented
Method _setup_signal Undocumented
Method _teardown_signal Undocumented

Inherited from ConnectorMixin (via TaskListWindowExtension, ExtensionBase):

Method connectto Connect to signals of another object E.g.:
Method connectto_all Convenience method to combine multiple calls to connectto().
Method disconnect_all Disconnect all signals that have been connected with connectto and friends. Typically called when you want to destroy this object.
Method disconnect_from Disc all signals that have been connected with connectto and friends to a specific object.
Method _disconnect_from Undocumented
Instance Variable _connected_signals Undocumented
@action(_('_Print'), menuhints='headerstart', tooltip=_('Print tasklist to browser'))
def print_tasklist(self): (source)

Undocumented