Coverage for lino/core/frames.py : 76%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# Copyright 2009-2014 Luc Saffre # License: BSD (see file COPYING for details) Defines classes :class:`Frame` and :class:`FrameHandle` """
# from lino.core.utils import Handle
#~ assert issubclass(frame,Frame) self.actor = frame # Handle.__init__(self)
return self.actor.get_actions(*args, **kw)
return "%s on %s" % (self.__class__.__name__, self.actor)
"""Base clase for actors which open a window but, but this window is neither a database table nor a detail form.
Example subclass is :class:`lino_xl.lib.extensible.CalendarPanel`.
"""
def get_actor_label(self): return self._label or self.default_action.action.label |