Lines Matching full:widgets
67 This class provides method to create link that connects widgets.
69 widgets.
79 # Maps pair of widgets to widget link of different type.
142 """Creates a widget link for two audio widgets.
214 This class provides methods to create widgets and binder of widgets.
215 User can use binder to setup audio paths. User can use widgets to control
224 _link_factory: An AudioLinkFactory that creates link for widgets.
362 def create_binder(self, *widgets):
365 @param widgets: A list of widgets that should be linked in a chain.
367 @returns: A WidgetBinder for two widgets. A WidgetBinderChain object
368 for three or more widgets.
371 if len(widgets) == 2:
372 return self._create_widget_binder(widgets[0], widgets[1])
374 for index in xrange(len(widgets) - 1):
377 widgets[index], widgets[index + 1]))
409 Connects widgets in the beginning. Disconnects widgets and releases binder